/* 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/woman-wearing-suit-leads-visionary-business-pitch.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;
    }
    
  }
  
  .solucoes {
  background: #f7f3f3;
  padding: 80px 20px;
}

.solucoes-container {
  max-width: 1200px;
  margin: auto;
}

.solucoes h2 {
  text-align: center;
  color: #bb0206;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.solucao-card {
  background: linear-gradient(135deg, #0b30d8, #081f8f);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 45px 25px;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.solucao-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.solucao-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.solucao-card:hover {
  transform: translateY(-10px);
}

/* Tablet */
@media (max-width: 992px) {
  .solucoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .solucoes-grid {
    grid-template-columns: 1fr;
  }

  .solucoes h2 {
    font-size: 2rem;
  }
}

.video-cta {
  position: relative;
  height: 60vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vídeo */
.video-cta video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Textura azul */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 48, 216, 0.75),
    rgba(11, 48, 216, 0.45)
  );
  z-index: 2;
}

/* Conteúdo */
.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.video-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.video-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  color: #f1f1f1;
}

/* Botão */
.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #0b30d8;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #e6e9ff;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .video-content h2 {
    font-size: 2.2rem;
  }

  .video-content p {
    font-size: 1.1rem;
  }
}

.faq {
  background: #f4f6ff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  color: #0b30d8;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Pergunta */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: #0b30d8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ícone */
.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding: 15px 0 25px;
  color: #444;
  line-height: 1.6;
}

/* Ativo */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 600px) {
  .faq h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}