
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      margin: 0;
      padding: 0;
    }

    .carousel-item img {
      width: 100%;
      height: 120vh;
      object-fit: fill;
      margin-top: 60px;
    }
    .carousel-item::before {
      content: "";
      position: absolute;
      top: 0; 
      left: 0;
      bottom: 0; 
      right: 0;
      background: rgba(0, 0, 0, 0.0); /* Escurece a imagem */
      z-index: 1;
    }
  
    .carousel-caption {
      z-index: 2;
    }
  
    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: 500;
      color: #fff;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
      margin-top: 0px;
      padding-top: 90px;
      line-height: 1.3;
    }


    /* Responsivo para tablets */
@media (max-width: 1130px) {
  .carousel-item img {
    height: 40vh;
    margin-top: 45px
  }

  .carousel-caption h1 {
    font-size: 2rem;
    margin-top: 60px;
    padding-top: 60px;
  }
}

/* Responsivo para celulares */
@media (max-width: 999px) {
  .carousel-item img {
    height: 40vh;
    width: 100%;
    margin-bottom: -80px;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
    margin-top: 40px;
    padding-top: 40px;
    text-align: center;
  }
}


    /* Responsivo */
    @media (max-width: 768px) {
      .container-cards {
        flex-direction: row;
        justify-content: center;
        padding: 20px 10px;
      }
      .card-item {
        width: 100px;
      }
      .card-item .icon {
        font-size: 28px;
      }
      .card-item p {
        font-size: 12px;
      }
    }

    .parceria-etugeste {
      padding: 60px 20px;
      background-color: #f5f5f5;
    }
    
    .conteudo-parceria {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 80px;
      margin-top: 80px;
    }
    
    .imagem-parceria img {
      width: 510px;
      height: 300px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-right: 0; 
       object-fit:cover;
      
    }
    
    .imagem-parceria {
      flex: 1 1 45%;
      display: flex;
      justify-content: flex-end; /* Alinha a imagem à direita para aproximar do texto */

    }
    
    .texto-parceria {
      flex: 1 1 45%;
      min-width: 300px;
    }
    
    .texto-parceria h2 {
      font-size: 2rem;
      color: #0B3C7D;
      margin-bottom: 20px;
    }
    
    .texto-parceria p {
      font-size: 1.2rem;
      color: #333;
      line-height: 1.8;
      text-align: justify;
    }
    
    /* Responsivo para telas menores */
    @media (max-width: 768px) {
      .parceria-etugeste {
      padding: 60px 20px;
      background-color: #f5f5f5;
    }
    
      .conteudo-parceria {
        flex-direction: column;
        text-align: center;
      }
    
      .texto-parceria p {
        text-align: center;
      }
      .imagem-parceria img {
      width: 300px;
      height: 300px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-right: 0; 
       object-fit:cover;
      
    }
    
    }

/* Responsivo para telas menores */
    @media (max-width: 1330px) {
      .parceria-etugeste {
     margin-top: -100px;
    }
    
      
      .imagem-parceria img {
      display: none;
      
    }
    
    }

.areas-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
 
}

.areas-container h2 {
  font-size: 2.1em;
  margin-bottom: 50px;
  color: #0B3C7D;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.area-card {
  background-color: #0B3C7D;
 
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.area-card.show {
  opacity: 1;
  transform: translateY(0);
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 183, 77, 0.2);
}

.area-icon {
  font-size: 35px;
  color: #f8f8f8;
  margin-bottom: 15px;
  align-items: center;
}

.area-title {
  font-size: 1.2em;
  color: #f8f4f4;
  margin-bottom: 10px;
  font-weight: bold;
}

.area-description {
  font-size: 0.95em;
  color: #ddd;
  line-height: 1.5;
  text-align: justify;
}

/* Listas dentro dos cards */
.area-description ul {
  padding-left: 18px;
  margin: 0;
  text-align: left;
}

.area-description ul li {
  list-style: none;
  position: relative;
  margin-bottom: 6px;
  padding-left: 18px;
  font-size: 0.95rem;
  
}

.area-description ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f8f4f4;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .areas-container h2 {
    font-size: 1.8em;
  }
}

/* =========================
   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: 40vh;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 1338px) {
  .hero-banner {
    min-height: 20vh;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* =========================
   TEAM SECTION
========================= */
.team-section {
  background: #f5f8fc;
  padding: 5rem 1.5rem;
}

.team-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Título */
.team-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #0B3C7D;
  margin-bottom: 0.5rem;
}

.team-subtitle {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: #555;
  font-size: 1rem;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* FOTO */
.team-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #0772ee;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.team-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.3rem;
}

.team-card span {
  display: block;
  font-size: 0.9rem;
  color: #0772ee;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-title {
    font-size: 2rem;
  }
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 35vh;
  background: url("../imag/group-friends-gathering-together.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 36, 88, 0.85);
  backdrop-filter: blur(2px);
}

.testimonials-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.testimonials-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* SLIDER */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  width: 100%;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* CARD */
.testimonial-slide h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.testimonial-slide p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e9eef6;
  margin-bottom: 2.5rem;
}

/* AUTOR */
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1da1ff;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #cfd8e6;
}

/* DOTS */
.testimonial-dots {
  margin-top: 2.5rem;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 26px;
  height: 4px;
  background: #9aa9c4;
  margin: 0 6px;
  border-radius: 4px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #1da1ff;
  opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-slide h3 {
    font-size: 1.4rem;
  }

  .testimonial-slide p {
    font-size: 0.95rem;
  }
}

/* =========================
   FORMULÁRIO
========================= */
.contact-form-section {
  background: linear-gradient(135deg, #fff, #eff2f8);
  padding: 5rem 1.5rem;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Títulos */
.contact-form-container h2 {
  font-size: 2.2rem;
  color: #0B3C7D;
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: #555;
  margin-bottom: 3rem;
}

/* Estrutura */
.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.form-row.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

/* Campos */
.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0a2540;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ccd6e0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0772ee;
  box-shadow: 0 0 0 3px rgba(7, 114, 238, 0.15);
}

/* Botão */
.btn-submit {
  margin-top: 1.5rem;
  padding: 14px 40px;
  background: linear-gradient(135deg, #0772ee, #0B3C7D);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(7, 114, 238, 0.4);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(7, 114, 238, 0.55);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
  .form-row.three-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 2.5rem 1.5rem;
  }

  .form-row.three-cols {
    grid-template-columns: 1fr;
  }

  .contact-form-container h2 {
    font-size: 1.9rem;
  }
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
}

/* Remove qualquer margem antiga do botão */
.captcha-row .btn-submit {
  margin-top: 0;
  white-space: nowrap;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .captcha-row {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-row .btn-submit {
    width: 100%;
    text-align: center;
  }
}