:root {
  --azul-profundo: #066689;
  --azul-claro: #00AEEF;
  --cinza-neutro: #f2f2eb;
  --amarelo-solar: #FFD700;
  --branco: #FFFFFF;
  --preto: #000000;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

h1,
h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.texo-laranja {
  color: #df732f;
}

body {
  line-height: 1.6;
  color: #333;
  background: var(--branco);
  padding-top: 80px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header-simples {
  background-color: var(--azul-profundo);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-simples .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 5%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-bloco {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: transparent;
}

.logo-bloco img {
  height: 40px;
  width: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-list li a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: var(--amarelo-solar);
}


/* BANNER PRINCIPAL */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 37, 49, 0.151);
  z-index: 0;
}


.banner-principal {
  background-image: url('banner.webp');
  background-size: cover;
  /* mantém a imagem cobrindo o espaço */
  background-position: center;
  /* ajusta foco da imagem */
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  /* mantém conteúdo à esquerda */
  align-items: center;
  padding: 0 5%;
  position: relative;
  color: var(--branco);

}


/* Conteúdo do banner */
.conteudo-banner {
  max-width: 1000px;
  text-align: center;
  z-index: 1;
  transform: translateY(-100px);
}

.logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-banner img {
  height: 180px;
}

.banner-principal h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.863);
}

.banner-principal p.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.863);

}

/* Botões principais */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn i {
  margin-right: 8px;
  vertical-align: middle;
}

.centralizados {
  justify-content: center;
  flex-wrap: wrap;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  background-color: #05a1b6;
  color: var(--branco);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(77, 74, 74, 0.521);
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-alt {
  background-color: #df732f;
}

.btn:hover {
  background-color: #19789b;
}

.btn-alt:hover {
  background-color: #df732fce;
}

/* ===========================
   🔹 Responsividade (mobile)
   =========================== */
@media (max-width: 768px) {

  .banner-principal .overlay {
    background-color: rgba(3, 37, 49, 0.596);
  }

  .banner-principal {
    background-image: url('bannerMob.webp');
    background-repeat: no-repeat;
    min-height: 100vh;
    text-align: center;
    background-position: center top;
    padding-top: 80px;
    /* altura do cabeçalho */
    position: relative;
    margin-top: -80px;
    /* sobe o banner para ocupar o topo */
    padding-top: 160px;
    /* compensa o espaço do cabeçalho + conteúdo */
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;

    flex-direction: column;
    justify-content: center;
    /* centraliza verticalmente */
    align-items: center;
    /* centraliza horizontalmente */
    min-height: 100vh;
    /* ocupa toda a altura da tela */
    padding-top: 80px;

  }

  .logo-bloco img {
    height: 30px;
    /* ou até menos, tipo 60px */
  }


  .conteudo-banner {
    transform: none;
    max-width: 100%;
    z-index: 1;
  }

  .logo-banner {
    justify-content: center;
  }

  .logo-banner img {
    height: 120px;
  }

  .banner-principal h2 {

    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 8px;

  }

  .banner-principal p.hero-subtext {

    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 20px;


  }

  .topico {
    padding: 20px 20px;
    max-height: 320px;
    max-width: 250px;
    overflow: hidden;
  }


  .topico img {
    width: 130px !important;
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
  }



.hero-buttons {
  display: flex;
  flex-wrap: nowrap;         /* impede quebra de linha */
  justify-content: center;
  gap: 12px;
  padding: 0 16px;           /* espaçamento lateral controlado */
  overflow-x: auto;          /* permite rolagem horizontal se necessário */
  scroll-snap-type: x mandatory; /* rolagem suave */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.btn,
.btn-alt {
  flex: 0 0 auto;            /* impede que o botão encolha demais */
  padding: 10px 16px;
  font-size: 0.75rem;
  white-space: wrap;       /* impede quebra de texto */
  overflow-wrap: break-word; /* quebra palavras longas se necessário */
  border-radius: 12px;
  text-align: center;
  box-sizing: border-box;
  min-width: 140px;
  max-width: 100%;
  width: calc(50% - 6px); /* dois botões com gap de 12px */
}


}

/* Seções */
.section {
  padding: 80px 0;
}

.section:nth-of-type(even) {
  background: var(--cinza-neutro);
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* COMO FUNCIONA */
.como-funciona .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.linha-decorativa {
  width: 120px;
  height: 4px;
  background: var(--azul-profundo);
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.topicos-funcionamento {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.topico {
  flex: 0 1 300px;
  background: var(--branco);
  padding: 30px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.topico:hover {
  transform: translateY(-5px);
}

.topico img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.topico h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.topico p {
  font-size: 1rem;
  color: #555;
}

.tagline {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
}

/* Benefícios */
.beneficios .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.beneficios .linha-decorativa {
  width: 120px;
  height: 4px;
  background: var(--amarelo-solar);
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.topicos-beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio {
  flex: 0 1 240px;
  background: var(--branco);
  padding: 25px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
}

.beneficio i {
  font-size: 40px;
  color: var(--azul-profundo);
  margin-bottom: 15px;
}

.beneficio h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.beneficio p {
  font-size: 0.95rem;
  color: #555;
}

.beneficio-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  background: var(--amarelo-solar);
  color: var(--preto);
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 40px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #e6c200;
  transform: scale(1.05);
}

/* Call to Action */
.call-to-action {
  background: var(--cinza-neutro);
  color: var(--preto);
  text-align: center;
  padding: 80px 20px;
}

.call-to-action .section-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* Botão Call to Action */
.botao-tecnologia {
  display: inline-block;
  background-color: #0056b3;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 16px 28px;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(128, 126, 126, 0.15);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.botao-tecnologia i {
  margin-left: 10px;
  color: #FFA500;
  font-size: 1.2rem;
}

.botao-tecnologia:hover {
  background-color: #002752;
  transform: scale(1.05);
}

/* Footer */
.footer-personalizado {
  background-color: #066689;
  color: var(--branco);
  padding: 30px 20px;
}

.footer-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer-frase {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
}

.footer-redes {
  position: absolute;
  right: 0;
  display: flex;
  gap: 15px;
}

.footer-redes a {
  color: var(--branco);
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-redes a:hover {
  color: var(--amarelo-solar);
}

/* Responsivo Footer */
@media (max-width: 768px) {
  .footer-conteudo {
    flex-direction: column;
    gap: 15px;
  }

  .footer-redes {
    position: static;
    justify-content: center;
  }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

/* FAQ */
.faq-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.faq-section .container {
  width: 100%;
  padding: 0;
  display: block;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  width: 100%;
  background: #f2f2eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 5%;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--azul-profundo);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 5%;
  font-size: 1rem;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 5%;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Menu Responsivo */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  /* COMO FUNCIONA */
  .como-funciona .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .linha-decorativa {
    width: 120px;
    height: 4px;
    background: var(--azul-profundo);
    margin: 0 auto 40px auto;
    border-radius: 2px;
  }

  .topicos-funcionamento {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }

  .topico {
    flex: 0 1 300px;
    background: var(--branco);
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .topico:hover {
    transform: translateY(-5px);
  }

  .topico img {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
  }

  .topico h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .topico p {
    font-size: 1rem;
    color: #555;
  }

  .tagline {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
  }

  /* Benefícios */
  .beneficios .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .beneficios .linha-decorativa {
    width: 120px;
    height: 4px;
    background: var(--amarelo-solar);
    margin: 0 auto 40px auto;
    border-radius: 2px;
  }

  .topicos-beneficios {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }

  .beneficio {
    flex: 0 1 240px;
    background: var(--branco);
    padding: 25px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .beneficio:hover {
    transform: translateY(-5px);
  }

  .beneficio i {
    font-size: 40px;
    color: var(--azul-profundo);
    margin-bottom: 15px;
  }

  .beneficio h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .beneficio p {
    font-size: 0.95rem;
    color: #555;
  }

  .beneficio-cta {
    text-align: center;
    margin-top: 40px;
  }

  .cta-button {
    background: var(--amarelo-solar);
    color: var(--preto);
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
  }

  .cta-button:hover {
    background: #e6c200;
    transform: scale(1.05);
  }

  /* Call to Action */
  .call-to-action {
    background: var(--cinza-neutro);
    color: var(--preto);
    text-align: center;
    padding: 80px 20px;
  }

  .call-to-action .section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  /* Botão Call to Action */
  .botao-tecnologia {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 16px 28px;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(128, 126, 126, 0.15);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .botao-tecnologia i {
    margin-left: 10px;
    color: #FFA500;
    font-size: 1.2rem;
  }

  .botao-tecnologia:hover {
    background-color: #002752;
    transform: scale(1.05);
  }

  /* Footer */
  .footer-personalizado {
    background-color: #066689;
    color: var(--branco);
    padding: 30px 20px;
  }

  .footer-conteudo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .footer-frase {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
  }

  .footer-redes {
    position: absolute;
    right: 0;
    display: flex;
    gap: 15px;
  }

  .footer-redes a {
    color: var(--branco);
    font-size: 20px;
    transition: color 0.3s ease;
  }

  .footer-redes a:hover {
    color: var(--amarelo-solar);
  }

  /* Responsivo Footer */
  @media (max-width: 768px) {
    .footer-conteudo {
      flex-direction: column;
      gap: 15px;
    }

    .footer-redes {
      position: static;
      justify-content: center;
    }
  }

  /* Botão Flutuante do WhatsApp */
  .whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .whatsapp-float:hover {
    background-color: #1ebe5d;
  }

  /* FAQ */
  .faq-section {
    background-color: #ffffff;
    padding: 80px 0;
  }

  .faq-section .container {
    width: 100%;
    padding: 0;
    display: block;
  }

  .faq-section .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-item {
    width: 100%;
    background: #f2f2eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 5%;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--azul-profundo);
  }

  .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 5%;
    font-size: 1rem;
    color: #555;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 5%;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }


  @media (max-width: 768px) {
    .header-simples {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 15px 0;
      background-color: #0028524b;
      ;
      /* sem cor de fundo */
      backdrop-filter: none;
      /* sem desfoque */
      box-shadow: none;
      /* sem sombra */
    }

    .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 24px;
      color: var(--branco);
      /* ou outra cor visível sobre o fundo */
      z-index: 1001;
      /* acima do cabeçalho */
    }


    .nav-list {

      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 20px 0;
      background-color: #0028524b;
      backdrop-filter: blur(6px);
      text-align: center;
      border-radius: 0;
      z-index: 999;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li a {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      padding: 10px 0;
      display: block;
      transition: color 0.3s ease;
    }

    .nav-list li a:hover {
      color: #ffd700;
    }
  }


  .nav-list {

    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    backdrop-filter: blur(6px);
    text-align: center;
    border-radius: 0;
    z-index: 999;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
  }

  .nav-list li a:hover {
    color: #ffd700;
  }
}

.secao-parceiros {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.secao-parceiros h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.secao-parceiros p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Grid com 3 logos por linha */
.logos-parceiros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.logos-parceiros img {
  width: calc(33.333% - 20px);
  /* 3 logos por linha com gap compensado */
  max-width: 120px;
  height: auto;
  flex-grow: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logos-parceiros img:hover {
  transform: scale(1.05);
}

/* Botão de orçamento */
.btn-orcamento {
  background-color: #ff6b00;
  color: white;
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.btn-orcamento:hover {
  background-color: #e65c00;
}

/* Responsividade */
@media (max-width: 768px) {
  .logos-parceiros img {
    width: calc(50% - 20px);
    /* 2 por linha no tablet */
  }
}

@media (max-width: 480px) {
  .logos-parceiros img {
    width: 100%;
    /* 1 por linha no celular */
    max-width: 120px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .logos-parceiros {
    grid-template-columns: 1fr;
  }
}