*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#ffffff;
  color:#fff;
}

.hero{
  position:relative;
  padding-top:120px;
  padding-bottom:60px;

  /* IMAGEM DE FUNDO */
  background: url("../imag/cheerful-data-center-experts-working.webp") center/cover no-repeat;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(
    135deg,
    rgba(57, 71, 126, 0.92),
    rgba(11, 18, 38, 0.92)
  );

  z-index:1;
}

.hero-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  z-index:2;
}

/* TEXTO */
.hero-text{
  max-width:550px;
  z-index:4;
}

.badge-banner{
  display:inline-block;
  background:#0e2a5c;
  color:#4da3ff;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  margin-bottom:20px;
}

.hero-text h1{
  font-size:42px;
  line-height:1.3;
  margin-bottom:20px;
}

.hero-text h1 span{
  color:#F73739;
}

.hero-text p{
  color:#cbd5e1;
  margin-bottom:25px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.btn-service{
  border:1px solid #F73739;
  padding:10px 18px;
  border-radius:8px;
  color:#F73739;
  text-decoration:none;
}

.btn-secondary{
  border:1px solid #4da3ff;
  padding:10px 18px;
  border-radius:8px;
  color:#4da3ff;
  text-decoration:none;
}

.features{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  font-size:13px;
  color:#9fb3ff;
}

/* IMAGEM */
.hero-image{
  position: absolute;
  bottom: 0;        /* 👈 encosta na borda inferior do hero */
  z-index:5;
  right: 20%;  
}
.hero-image img{
  width:100%;
  max-width:500px;
  height: 450px;
  
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.clients {
  background: #f8f8f8;
  padding: 40px 0;
  overflow: hidden;
}

.clients-slider {
  width: 100%;
  overflow: hidden;
}

.logos {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll 25s linear infinite;
}

.logos img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.logos img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVO */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

.services{
  background:#f8fafc;
  font-family:"Poppins", sans-serif;
  justify-content: center;
  padding: 100px 0;
  display: flex;
}

.services .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* TOPO */
.services-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  margin-bottom:40px;
}

.tag{
  color:#F73739;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
}

.services-left h2{
  font-size:28px;
  color:#0f172a;
  margin-top:10px;
}

.services-right{
  max-width:400px;
}

.services-right p{
  font-size:14px;
  color:#64748b;
  margin-bottom:15px;
}

.btn-services{
  display:inline-block;
  border:1px solid #2563eb;
  padding:10px 18px;
  border-radius:8px;
  color:#2563eb;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.btn-services:hover{
  background:#2563eb;
  color:#fff;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
  justify-content: center;   /* 👈 centraliza no meio da página */
  align-items: center;
}

/* CARD */
.card{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card i{
  display: flex;
  font-size:24px;
  color:#2563eb;
  margin-bottom:15px;
  margin: 0 auto 15px;
  justify-content: center;
  align-items: center;

}

.card h3{
  font-size:16px;
  color:#0f172a;
  margin-bottom:10px;
  text-align: center;
}

.card p{
  font-size:13px;
  color:#64748b;
  margin-bottom:15px;
}

.card a{
  font-size:13px;
  color:#2563eb;
  text-decoration:none;
  font-weight:500;
}

/* CONTAINER */
.container-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}
/* IMAGENS */
.about-images {
  position: relative;
  flex: 1;
  animation: fadeInLeft 1s ease;
}

.img-main img {
  width: 100%;
  border-radius: 15px;
}

.img-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
}

.img-small img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* BADGE */
.badge {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  animation: fadeUp 1.2s ease;
}

.badge h2 {
  color: #2563eb;
  font-size: 28px;
}

.badge p {
  font-size: 14px;
  color: #2563eb;
}

/* TEXTO */
.about-content {
  flex: 1;
  animation: fadeInRight 1s ease;
}

.tag-nos {
  color: #F73739;
  font-weight: 600;
  font-size: 14px;
}

.about-content h1 {
  font-size: 32px;
  margin: 15px 0;
  color: #0a0a0a;
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.about-content ul li {
  margin-bottom: 10px;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.about-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* BOTÃO */
.btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

/* STATS */
.stats {
  background: #0f172a;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  border-radius: 15px;
  max-width: 1100px;
  margin: 40px auto;
  color: white;
  animation: fadeUp 1.5s ease;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  color: #F73739;
}

/* ANIMAÇÕES */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .img-small {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    width: 80%;
  }

  .badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

.sm-portfolio {
  background: linear-gradient(135deg, #020c1b, #0a1f44);
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

.sm-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.sm-header {
  text-align: center;
  margin-bottom: 50px;
}

.sm-tag {
  color: #4ea1ff;
  font-size: 13px;
  letter-spacing: 2px;
}

.sm-title {
  font-size: 32px;
  margin: 15px 0;
}

.sm-desc {
  opacity: 0.8;
  max-width: 500px;
  margin: auto;
}

/* SLIDER */
.sm-slider {
  position: relative;
}

.sm-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.sm-card {
  min-width: 33.33%;
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: 0.4s;
}

.sm-card img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s;
}

.sm-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.sm-card-title {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* BOTÕES */
.sm-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.sm-nav:hover {
  background: #4ea1ff;
}

.sm-prev {
  left: -10px;
}

.sm-next {
  right: -10px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .sm-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .sm-card {
    min-width: 100%;
  }

  .sm-title {
    font-size: 24px;
  }
}
/* RESPONSIVO */
@media(max-width:1100px){
  .services-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px){

  .services-top{
    flex-direction:column;
  }

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px){

  .services-grid{
    grid-template-columns: 1fr;
  }

  .services-left h2{
    font-size:22px;
  }
}
@media (max-width: 992px){

  .hero{
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-content{
    flex-direction: column;
    text-align: center;
  }

  /* TEXTO SEMPRE EM CIMA */
  .hero-text{
    position: relative;
    z-index: 3;
  }

  /* ESCONDE A IMAGEM FLUTUANTE NO MOBILE */
  .hero-image{
    display: none;
  }

  .hero-text h1{
    font-size: 32px;
  }
  .hero-text p{
    display: none;
  }
  .features{
    justify-content: center;
  }
}
/* SECTION */
.pricing-section-softmar{
  padding:80px 20px;
  background:#ffffff; /* 👈 fundo branco */
}

/* CONTAINER */
.pricing-container-softmar{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
}

/* CARD */
.pricing-card-softmar{
  background: linear-gradient(135deg, #1a2b6d, #0b1226);
  border:1px solid rgba(228, 12, 12, 0.1);
  backdrop-filter: blur(10px);
  border-radius:18px;
  padding:25px;
  color:#fff;
  transition: all 0.5s ease;
  transform: translateY(30px);
  opacity:0;
}

/* HOVER PREMIUM */
.pricing-card-softmar:hover{
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 25px 50px rgba(11,18,38,0.5);
}
/* TÍTULO */
.pricing-card-softmar h3{
  font-size:18px;
  margin-bottom:12px;
  font-weight:600;
}

/* PREÇO */
.price{
  font-size:30px;
  font-weight:700;
  color:#F73739;
  margin-bottom:18px;
}

.price span{
  font-size:14px;
  color:#cbd5e1;
}

/* LISTA */
.pricing-card-softmar ul{
  list-style:none;
  margin-bottom:22px;
}

.pricing-card-softmar ul li{
  font-size:13px;
  margin-bottom:8px;
  color:#e2e8f0;
}

/* BOTÃO */
.btn-softmar{
  display:inline-block;
  padding:11px 20px;
  background:#4da3ff;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.btn-softmar:hover{
  background:#ffffff;
  color:#0b1226;
  transform:scale(1.05);
}

/* 🎬 ANIMAÇÃO POWERPOINT */
.fade-up{
  animation: fadeUp 0.8s ease forwards;
}

.delay-1{ animation-delay:0.2s; }
.delay-2{ animation-delay:0.4s; }
.delay-3{ animation-delay:0.6s; }

@keyframes fadeUp{
  to{
    transform: translateY(0);
    opacity:1;
  }
}

/* RESPONSIVO */
@media(max-width:1100px){
  .pricing-container-softmar{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .pricing-container-softmar{
    grid-template-columns:1fr;
  }
}

/* SECTION */
.section-feedback,
.section-blog {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
.section-tag {
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
}

h2 {
  margin-top: 10px;
  font-size: 28px;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ARROWS */
.nav-arrows {
  display: flex;
  gap: 10px;
}

.arrow {
  border: none;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CARDS */
.feedback-cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.feedback-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.quote {
  font-size: 40px;
  color: #2563eb;
}

.text {
  margin: 10px 0 20px;
  color: #555;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 40px;
  border-radius: 50%;
}

/* DOTS */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 5px;
}

.dots .active {
  background: #2563eb;
}

/* BLOG */
.blog-header {
  margin-top: 60px;
}

.btn-outline {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border: 1px solid #2563eb;
  color: #2563eb;
  border-radius: 8px;
  text-decoration: none;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-info {
  padding: 15px;
}

.blog-info span {
  font-size: 12px;
  color: #888;
}

.blog-info h4 {
  margin-top: 8px;
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .feedback-cards {
    flex-direction: column;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }
}