/* Fonte padrão */
body {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Banner Quem Somos */
  .banner-quemsomos {
    position: relative;
    margin-top:130px;
    width: 100%;
    height: 45vh;
    background: url('../imag/coworkers-office-crosschecking-datasets.webp') center 20% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  z-index: 1;
  margin-bottom: 100px;
  }
  
  .banner-quemsomos .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(3, 4, 71, 0.4); /* Escurecimento */
    display: flex;
     flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .banner-quemsomos h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    z-index: 1;
  }
  
  .banner-quemsomos p {
    font-size: 20px;
    color:#f7f3f3;
    width: 600px;
    text-align: center;
    z-index: 1;
  }
  /* Responsividade do Banner */
  @media (max-width: 768px) {
    .banner-quemsomos {
      height: 40vh;
     margin-top: 65px;
    }
  
    .banner-quemsomos h1 {
      font-size: 1.7rem;
    }
     .banner-quemsomos p {
      display: none;

  }
  }
  
  @media (max-width: 480px) {
    .banner-quemsomos {
      height: 30vh;
    }
  
    .banner-quemsomos h1 {
      font-size: 1.5rem;
    }
    
  }
  

/* SECTION */
.servicos-section {
  padding: 80px 120px;
  background-color: #f5f7fb;
}

/* TÍTULO */
.servicos-titulo {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: #222;
  font-weight: 700;
}

/* GRID – garante alinhamento perfeito */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* BLOCO PRINCIPAL (não é card 😉) */
.servico-item {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-height: 300px;

  opacity: 0;
  transform-style: preserve-3d;
  transition: opacity 0.9s ease, transform 0.9s ease;
  margin-bottom: 30px;
}

/* IMAGEM */
.servico-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

/* TEXTO */
.servico-item h3 {
  margin: 20px 20px 10px;
  font-size: 1.3rem;
  color: #222;
}

.servico-item p {
  margin: 0 20px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ANIMAÇÃO ATIVA */
.servico-item.mostrar {
  opacity: 1;
  transform: none;
}

/* ANIMAÇÕES INDIVIDUAIS (SEGURAS) */
.animacao-1 { transform: translateY(60px); }
.animacao-2 { transform: translateX(-60px); }
.animacao-3 { transform: translateX(60px); }
.animacao-4 { transform: scale(0.85); }
.animacao-5 { transform: rotateY(35deg); }
.animacao-6 { transform: translateY(-60px); }

/* RESPONSIVO */
@media (max-width: 992px) {
  /* SECTION */
.servicos-section {
  padding: 80px 25px;
  background-color: #f5f7fb;
}
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }
}

@media (max-width: 600px) {
  .servicos-section {
  padding: 80px 25px;
  background-color: #f5f7fb;
}
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servicos-titulo {
    font-size: 2rem;
  }
}


/* =========================
   HERO BANNER
========================= */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 40vh;
  background: url("../imag/data-center-engineers-maintaining-company-network-infrastructure.webp") center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Overlay azul profissional */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 34, 92, 0.92) 0%,
    rgba(4, 34, 92, 0.85) 45%,
    rgba(4, 34, 92, 0.6) 65%,
    rgba(4, 34, 92, 0.3) 100%
  );
  backdrop-filter: blur(1.5px);
}

/* Conteúdo */
.hero-content {
  position: relative;
  max-width: 1300px;
  padding: 0 2.5rem;
  color: #fff;
  z-index: 2;
}

/* Título */
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Subtítulo */
.hero-content p {
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #e6ecf5;
}

/* Botão */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e00206, #ff3b3b);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(224, 2, 6, 0.4);
  transition: all 0.3s ease;
}

.hero-btn span {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(224, 2, 6, 0.55);
}

.hero-btn:hover span {
  transform: translateX(6px);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 80vh;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
