/* ================= RESET ================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --green-main: #166534;
  --green-light: #22c55e;
  --green-hover-soft: #bbf7d0;

  --footer-bg: #111827;
  --footer-bottom-bg: #020617;
}

/* ================= BASE ================= */
body{
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f0fdf4;
  color: #222;
}

.container{
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}


/* ================= HEADER ================= */
.site-header{
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--green-main);
  z-index: 1000;
}

.header-space{ height: 80px; }

.header-container{
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}

.header-logo img{ height: 40px; }

.header-logo span span{ color: var(--green-hover-soft); }

.header-nav{
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-nav a{
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  height: 40px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.header-nav a:hover{ opacity: 0.85; }

.header-atendimento{
  background: var(--green-light);
  color: #022c22;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}




/* ================= MOBILE HEADER ================= */
.mobile-toggle{
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .2s ease;
}

/* hover desktop (quando simula mobile) */
.mobile-toggle:hover{
  background: rgba(187, 247, 208, 0.25); /* verde bem claro */
}

/* feedback ao clicar */
.mobile-toggle:active{
  background: rgba(187, 247, 208, 0.35);
}

.mobile-toggle:hover{
  background: color-mix(in srgb, var(--green-hover-soft) 25%, transparent);
}


.mobile-menu{
  display: none;
  flex-direction: column;
  background: #14532d;
}

.mobile-menu a:not(.mobile-atendimento){
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s ease;
}

.mobile-menu a:not(.mobile-atendimento):hover{
  background: rgba(255,255,255,0.08);
}

.mobile-atendimento{
  margin: 18px auto;
  display: block;
  width: fit-content;
  background: var(--green-light);
  color: #022c22;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}


@media (max-width: 900px){
  .header-nav{ display: none; }
  .mobile-toggle{ display: block; }
  .mobile-menu.active{ display: flex; }
}

/* ================= HERO / BUSCA ================= */


.hero{ padding: 60px 0; }

.search-container{
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  max-width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
}

.hero-text{
  text-align: center;
  margin-bottom: 30px;
}

.hero-text h1{
  font-size: 2.2rem;
  color: var(--green-main);
  margin-bottom: 15px;
  font-weight: 900;
}

.hero-text p{
  font-size: 1rem;
  color: var(--green-main);
  max-width: 700px;
  margin: 0 auto;
}

/* Radio buttons */
.radio-group{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.radio-btn{
  padding: 10px 20px;
  background: #e6f4ea;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .15s ease;
}

.radio-btn.active{
  background: var(--green-light);
  color: #fff;
}

/* ================= GRID (DESKTOP) ================= */
.search-grid{
  display: grid;
  grid-template-columns:
    1fr
    44px
    1fr
    0.75fr
    0.75fr
    100px;
  grid-template-rows: auto auto;
  gap: 10px 12px;
  align-items: end;
  width: 100%;
}

  /* força todos os campos da busca a ficarem na primeira linha */
    @media (min-width: 901px){
    .search-grid > div:not(.submit-btn-wrapper){
        grid-row: 1;
    }
    }

    @media (min-width: 901px){
  .swap-col{
    display: flex;
    align-items: center;
    justify-content: center;
  }
    }

@media (min-width: 901px){
  .submit-btn-wrapper{
    grid-row: 2;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-consultar-final{
    margin: 0 auto;   /* ESSENCIAL */
  }
}

/* ================= HOVER PADRÃO (BOTÕES) ================= */
.btn-hover{
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-hover:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.22);
}

.btn-hover:active{
  transform: translateY(0);
  box-shadow: none;
}



/* cada coluna vira "stack" label + input alinhado */
@media (min-width: 901px){
  /* todos viram coluna... MENOS o swap e o wrapper do botão */
  .search-grid > div:not(.swap-col):not(.submit-btn-wrapper){
    display: flex;
    flex-direction: column;
  }

  /* swap centralizado na altura do input */
  .swap-col{
    display: flex;
    align-items: flex-end;     /* alinha com a base do input */
    justify-content: center;
    padding-bottom: 0;         /* garante que não sobe */
  }

  /* se quiser ainda mais perfeito: igualar a “altura do label” */
  .swap-btn{
    margin-bottom: 0;
  }
}


/* labels desktop com mais respiro */
@media (min-width: 901px){
  .search-grid .field-label,
  .search-grid label{
    display: block;
    margin-bottom: 11px; /* mais espaço */
    font-size: .95rem;
    font-weight: 800;
  }
}

/* Inputs gerais */
.search-grid input,
.search-grid select{
  width: 100%;
  padding: 10px 12px;
  font-size: .92rem;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}

/* Campos de data menores (visualmente) no desktop */
@media (min-width: 901px){
  .search-grid input[type="datetime-local"]{
    height: 42px;
    padding: 10px 12px;
    font-size: .92rem;
  }
}

/* Passageiros centralizado */
#passageiros{
  text-align: center;
  text-align-last: center;
}
#passageiros option{ text-align: center; }

/* Swap */
.swap-btn{
  width: 44px;
  height: 42px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--green-light);
  color: #fff;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.swap-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.22);
}

.swap-btn:active{
  transform: translateY(0);
  box-shadow: none;
}

/* Volta desativada */
.is-disabled{
  opacity: .55;
  pointer-events: none;
}
.is-disabled input,
.is-disabled select{
  background: #f3f4f6;
}

/* Botão na linha de baixo centralizado */
@media (min-width: 901px){
  .submit-btn-wrapper{
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
}

/* BOTÃO CONSULTAR (DOBRO +25% ALTURA) */
.btn-consultar-final{
  border: none;
  border-radius: 999px;
  background: var(--green-light);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}

@media (min-width: 901px){
  .btn-consultar-final{
    width: 420px;   /* mais largo */
    height: 56px;   /* +25% (aprox) */
    font-size: 1.05rem;
  }
}

.btn-consultar-final:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.22);
}
.btn-consultar-final:active{
  transform: translateY(0);
  box-shadow: none;
}

/* ================= AUTOCOMPLETE ================= */
.field-wrap{ position: relative; }

.suggestions{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  max-height: 260px;
  overflow-y: auto;
  z-index: 9999;
}

.hidden{ display: none; }

/* ================= DESTAQUES ================= */
.destaques{
  background: #ffffff;
  padding: 60px 0;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.destaques h2{
  text-align: center;
  margin-bottom: 40px;
  color: var(--green-main);
  font-size: 2rem;
}

.destaques-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.destaque-card{
  background: #f1f5f1;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.destaque-card img{
  height: 80px;
  margin-bottom: 15px;
}

.destaque-card h3{
  color: var(--green-main);
  margin-bottom: 10px;
}

.destaque-card p{
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ================= FOOTER ================= */
.footer{
  background: var(--footer-bg);
  color: #fff;
  margin-top: 60px;
}

.footer-container{
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.footer-logo img{ height: 45px; }

.footer-logo span span{ color: var(--green-hover-soft); }

.footer-col{
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 10px;
}

.footer-toggle{
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 18px 0;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.footer-toggle .arrow{
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-col.active .arrow{ transform: rotate(180deg); }

.footer-content{
  display: none;
  padding-bottom: 20px;
  line-height: 1.6;
}

.footer-col.active .footer-content{ display: block; }

.footer-content a{
  display: block;
  color: var(--green-hover-soft);
  text-decoration: none;
  margin-top: 10px;
}

.footer-whatsapp{
  display: inline-block;
  margin-top: 18px;
  background: var(--green-light);
  color: #022c22;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}


.footer-bottom{
  text-align: center;
  padding: 20px;
  background: var(--footer-bottom-bg);
  font-size: 0.9rem;
}

/* Footer desktop */
@media (min-width: 900px){
  .footer-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
  }

  .footer-logo img{ height: 90px; }
  .footer-col{ border-top: none; padding-top: 0; }
  .footer-toggle{ pointer-events: none; padding: 0 0 10px; gap: 0; }
  .footer-toggle .arrow{ display: none; }
  .footer-content{ display: block !important; padding-bottom: 0; }
}

/* ================= MOBILE (BUSCA) ================= */
@media (max-width: 900px){

  .container{ width: 92%; }

  .hero{ padding: 30px 0; }

  .hero-text{ margin-bottom: 18px; }

  .hero-text h1{
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .hero-text p{
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: 320px;
  }

  .search-container{
    padding: 18px;
    border-radius: 14px;
  }

  .radio-group{ margin-bottom: 14px; }

  .radio-btn{
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .95rem;
  }

  .search-grid{
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .search-grid .field-label,
  .search-grid label{
    margin-bottom: 7px;
    font-size: .95rem;
    font-weight: 800;
    display: block;
  }

  .search-grid input,
  .search-grid select{
    height: 44px;
    font-size: 1rem;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .swap-btn{
    width: 54px;
    height: 44px;
    justify-self: center;
    border-radius: 12px;
  }

  .submit-btn-wrapper{
    display: flex;
    justify-content: center;
  }

  .btn-consultar-final{
    width: 100%;
    height: 50px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  .suggestions{
    max-height: 220px;
    border-radius: 12px;
  }
}














/* =========================================
   PÁGINA: COMO FUNCIONA (SEM TAILWIND)
   ========================================= */

.seo-como-funciona.hero{
  padding: 18px 0 30px; /* reduz espaço topo/base só nessa página */
}

@media (max-width: 900px){
  .seo-como-funciona.hero{
    padding: 12px 0 12px;
  }
}

/* Tipografia e espaçamento */
.cf-title{
  color: #111;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}

@media (max-width: 900px){
  .cf-title{
    font-size: 1.6rem;
  }
}

.cf-h2{
  color: #111;
  font-size: 1.35rem;
  font-weight: 900;
  margin-top: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cf-h3{
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
  margin: 14px 0 6px;
  line-height: 1.25;
}

.cf-text{
  color: #111;
  font-size: 1rem;
  line-height: 1.65;
  margin: 10px 0 14px;
}

.cf-list{
  margin: 10px 0 16px;
  padding-left: 22px;
  color: #111;
}

.cf-list li{
  margin: 6px 0;
  line-height: 1.6;
}

.cf-sep{
  margin: 18px 0 8px;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.cf-faq-title{
  margin-top: 18px; /* evita “grudar” no separador */
}

.cf-faq-item{
  margin-bottom: 6px;
}

/* =========================================
   CTA FINAL – COMO FUNCIONA
   ========================================= */

.cf-cta{
  margin-top: 24px;
  display: flex;
  justify-content: center; /* agora centraliza no desktop também */
}

/* botão em si */
.cf-cta .header-atendimento{
  font-size: 1.15rem;          /* + tamanho do texto */
  padding: 16px 34px;          /* + área clicável (~30%) */
  color: #fff !important;      /* texto branco garantido */
  font-weight: 900;
}

/* CTA FINAL – corrigir centralização no mobile */
@media (max-width: 900px){
  .cf-cta{
    justify-content: center;
  }

  .cf-cta .header-atendimento{
    width: 100%;
    max-width: 360px;
    display: flex;              /* sobrescreve o inline-flex */
    justify-content: center;    /* centraliza horizontal */
    align-items: center;        /* centraliza vertical */
    text-align: center;         /* reforço */
  }
}











/* =========================================
   PÁGINA: INFORMAÇÕES IMPORTANTES
   ========================================= */

.seo-info-importantes.hero{
  padding: 18px 0 30px;
}

@media (max-width: 900px){
  .seo-info-importantes.hero{
    padding: 12px 0 22px;
  }
}














/* =========================================
   PÁGINA: INFORMAÇÕES IMPORTANTES
   ========================================= */
.seo-info-importantes.hero{
  padding: 18px 0 30px;
}
@media (max-width: 900px){
  .seo-info-importantes.hero{
    padding: 22px 0 22px;
  }
}

/* Accordion */
.cf-accordion{
  margin-top: 10px;
}

.cf-acc-item{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  overflow: hidden;
  margin: 12px 0;
  background: #fff;
}

.cf-acc-header{
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 16px 18px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cf-acc-title{
  font-size: 1.05rem;
  font-weight: 900;
  color: #111;
  text-align: left;
}

.cf-acc-icon{
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #111;
  flex: 0 0 auto;
}

.cf-acc-content{
  padding: 16px 18px;
}

.cf-acc-text{
  font-size: 1rem;
  line-height: 1.65;
  color: #111;
}

/* lista dentro do accordion */
.cf-acc-text .cf-list{
  margin: 10px 0 0;
}

/* Mobile */
@media (max-width: 900px){
  .cf-acc-header{
    padding: 14px 14px;
  }
  .cf-acc-title{
    font-size: 1rem;
  }
  .cf-acc-content{
    padding: 14px 14px;
  }
}

/* Centralizar título e descrição inicial – Informações Importantes */
.seo-info-importantes .cf-title,
.seo-info-importantes .cf-text:first-of-type{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px; /* leitura confortável */
}










/* =========================================
   ESPAÇAMENTO TOPO – PÁGINAS INSTITUCIONAIS
   ========================================= */

/* Como Funciona */
.seo-como-funciona.hero{
  padding-top: 42px;   /* aumenta respiro superior */
  padding-bottom: 36px;
}

/* Informações Importantes */
.seo-info-importantes.hero{
  padding-top: 42px;
  padding-bottom: 36px;
}

/* Mobile */
@media (max-width: 900px){
  .seo-como-funciona.hero,
  .seo-info-importantes.hero{
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.seo-sobre-nos .cf-title{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}







/* =========================================
   PÁGINA: SOBRE NÓS
   ========================================= */
.seo-sobre-nos.hero{
  padding: 42px 0 36px;
}

@media (max-width: 900px){
  .seo-sobre-nos.hero{
    padding: 28px 0 28px;
  }
}

/* subtítulo (lead) centralizado */
.seo-sobre-nos .cf-lead{
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* grid */
.cf-about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 10px;
}

.cf-about-item{
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
}

@media (max-width: 700px){
  .cf-about-grid{
    grid-template-columns: 1fr;
  }
}

/* Centraliza apenas o título da página Sobre Nós */
.seo-sobre-nos .cf-title{
  text-align: center;
}











/* =========================================
   PÁGINA: TERMOS DE USO
   ========================================= */
.seo-termos.hero{
  padding: 42px 0 36px;
}

@media (max-width: 900px){
  .seo-termos.hero{
    padding: 28px 0 28px;
  }
}

/* Centraliza o topo (título + lead) */
.seo-termos .cf-title,
.seo-termos .cf-lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

/* Grid legal */
.cf-legal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 10px;
}

.cf-legal-item{
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
}

@media (max-width: 700px){
  .cf-legal-grid{
    grid-template-columns: 1fr;
  }
}










/* =========================================
   PÁGINA: POLÍTICA DE PRIVACIDADE
   ========================================= */
.seo-politica.hero{
  padding: 42px 0 36px;
}

@media (max-width: 900px){
  .seo-politica.hero{
    padding: 28px 0 28px;
  }
}

.seo-politica .cf-title,
.seo-politica .cf-lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.cf-policy-section{
  margin-top: 18px;
}











/* =========================================
   PÁGINA: COOKIES
   ========================================= */
.seo-cookies.hero{
  padding: 42px 0 36px;
}

@media (max-width: 900px){
  .seo-cookies.hero{
    padding: 28px 0 28px;
  }
}

.seo-cookies .cf-title,
.seo-cookies .cf-lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

















/* =========================================
   CARROSSEL DESTINOS (reutilizável)
   ========================================= */

.cf-carousel-box{
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.cf-carousel-header{
  text-align: center;
  margin-bottom: 24px;
}

.cf-carousel-title{
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
}

.cf-carousel-subtitle{
  font-size: .9rem;
  color: #64748b;
  margin-top: 6px;
}

/* wrapper */
.cf-carousel-wrapper{
  position: relative;
  display: flex;
  justify-content: center;
}

.cf-carousel-viewport{
  overflow: hidden;
  width: 100%;
}

.cf-carousel-track{
  display: flex;
  gap: 32px;
  transition: transform .45s ease;
  will-change: transform;
}

/* card */
.cf-destino-card{
  flex: 0 0 calc((100% - 64px) / 3);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}

.cf-destino-card:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.cf-destino-img{
  height: 220px;
  position: relative;
}

.cf-destino-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cf-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
}

.cf-destino-body{
  padding: 14px 16px;
}

.cf-rota{
  font-size: .75rem;
  color: #64748b;
}

.cf-destino-nome{
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
}

.cf-destino-extra{
  font-size: .8rem;
  color: #475569;
  margin-top: 3px;
}

/* setas */
.cf-carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

.cf-carousel-btn.cf-left{ left: -18px; }
.cf-carousel-btn.cf-right{ right: -18px; }

/* indicadores */
.cf-carousel-indicators{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.cf-carousel-indicators span{
  width: 22px;
  height: 4px;
  background: #c7c7d1;
  border-radius: 999px;
  transition: all .3s ease;
}

.cf-carousel-indicators span.active{
  background: #7c3aed;
  width: 34px;
}

/* mobile */
@media (max-width: 900px){
  .cf-carousel-box{ padding: 22px 16px; }
  .cf-destino-card{ flex: 0 0 100%; margin: 0 auto; }
  .cf-carousel-btn.cf-left{ left: -8px; }
  .cf-carousel-btn.cf-right{ right: -8px; }
}







/* =========================================
   PÁGINA: DESTINOS
   ========================================= */
.seo-destinos.hero{
  padding: 42px 0 18px;
}

.seo-destinos-bottom.hero{
  padding: 22px 0 36px;
}

@media (max-width: 900px){
  .seo-destinos.hero{
    padding: 28px 0 14px;
  }
  .seo-destinos-bottom.hero{
    padding: 18px 0 28px;
  }
}

/* centraliza topo */
.seo-destinos .cf-title,
.seo-destinos .cf-lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.seo-destinos .cf-cta-top{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* seção final */
.seo-destinos-bottom .cf-h2{
  margin-bottom: 10px;
}

/* Centraliza texto da seção "Como funciona a cotação" */
.seo-destinos-bottom .cf-h2,
.seo-destinos-bottom .cf-text{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.seo-destinos-bottom .cf-cta{
  display: flex;
  justify-content: center;
}











/* CARROSSEL – espaçamento certo na HOME e em /destinos */
.seo-carousel-destinos{
  padding: 48px 0;
}

@media (max-width: 900px){
  .seo-carousel-destinos{
    padding: 8px 0;
  }
}



/* HOME: reduz o padding inferior da hero da busca,
   porque logo abaixo já vem o carrossel */
.hero-home{
  padding-bottom: 10px; /* era 60px */
}


@media (max-width: 900px){
  .seo-carousel-destinos{
    padding: 8px 0 20px; /* top | left-right | bottom */
  }
}


/* =========================
   DESTINOS – SULPASSAGENS
   ========================= */

.sp-page {
  padding: 26px 14px 60px;
}

.sp-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(0,0,0,.10);
  padding: 26px 22px;
}

@media (min-width: 768px) {
  .sp-card { padding: 40px 44px; }
}

.sp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #5b6470;
  margin-bottom: 18px;
}

.sp-breadcrumb a {
  color: #1a5d1a;
  text-decoration: none;
  font-weight: 700;
}

.sp-breadcrumb a:hover { text-decoration: underline; }

.sp-header h1 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 900;
  color: #123d12;
  text-align: center;
}

.sp-subtitle {
  text-align: center;
  margin: 0 auto 22px;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.55;
  color: #2f3a2f;
  font-weight: 600;
}

.sp-hero-img {
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}

.sp-hero-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .sp-hero-img img { height: 360px; }
}

.sp-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #1f2937;
  margin: 0 0 14px;
}

.sp-divider {
  border: none;
  border-top: 1px solid rgba(15, 23, 42, .12);
  margin: 30px 0;
}

.sp-section h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
}

/* FAQ */
.sp-faq {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.sp-faq-item {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.sp-faq-item summary {
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 900;
  color: #0f172a;
  list-style: none;
}

.sp-faq-item summary::-webkit-details-marker { display: none; }

.sp-faq-item summary:after {
  content: "▾";
  float: right;
  font-weight: 900;
  opacity: .7;
  transition: transform .18s ease;
}

.sp-faq-item[open] summary:after {
  transform: rotate(180deg);
}

.sp-faq-body {
  padding: 0 16px 16px;
}

.sp-faq-body p {
  margin: 0;
  color: #1f2937;
  line-height: 1.7;
  font-size: 16.5px;
}

/* MAP */
.sp-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
}

.sp-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* CTA */
.sp-cta {
  display: grid;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  padding: 18px 18px;
  border: 1px solid rgba(26, 93, 26, .20);
  background: linear-gradient(135deg, rgba(26, 93, 26, .08), rgba(255,255,255,1));
}

@media (min-width: 768px) {
  .sp-cta {
    grid-template-columns: 1fr auto;
    padding: 22px 22px;
  }
}

.sp-cta-text strong {
  display: block;
  font-size: 18px;
  color: #123d12;
  margin-bottom: 6px;
}

.sp-cta-text p {
  margin: 0;
  color: #1f2937;
  line-height: 1.6;
  font-size: 16.5px;
}

.sp-cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1a5d1a;
  color: #fff;
  box-shadow: 0 10px 18px rgba(26, 93, 26, .18);
  white-space: nowrap;
}

.sp-cta-btn:hover { filter: brightness(1.05); }


/* =========================
   LISTA DE DESTINOS
   ========================= */

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.destino-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}

.destino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.destino-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.destino-info {
  padding: 14px;
}

.destino-info strong {
  display: block;
  font-size: 16px;
  color: #123d12;
  font-weight: 900;
  margin-bottom: 6px;
}

.destino-info span {
  font-size: 14px;
  color: #1a5d1a;
  font-weight: 700;
}

/* =========================
   FIX MOBILE – DESTINOS (CTA quebrando)
   ========================= */

/* garante que padding/border não estoure largura */
*, *::before, *::after {
  box-sizing: border-box;
}

/* evita qualquer overflow horizontal */
.sp-card,
.sp-cta,
.sp-cta-text {
  max-width: 100%;
}

/* no mobile o botão precisa poder "quebrar" e ocupar a largura */
.sp-cta-btn {
  width: 100%;
  max-width: 100%;
  white-space: normal;      /* <-- remove o "não quebra" no mobile */
  text-align: center;
  line-height: 1.2;
}

/* no desktop volta o comportamento compacto */
@media (min-width: 768px) {
  .sp-cta-btn {
    width: auto;
    white-space: nowrap;
  }
}





