/* =============================================================
   TZ Viagens
   Folha de estilos principal
   Estrutura:
     1. Reset & Variáveis
     2. Base & Tipografia
     3. Navbar
     4. Hero
     5. Destinos
     6. Destinos: Grid e Botão Ver Todos
     7. Por que TZ
     8. WhatsApp CTA
     9. Depoimentos
    10. Footer
    11. Modal de Cotação
    12. Scroll-to-Top
    13. Gradientes de Destinos
    14. Animações
    15. Responsivo
    16. Como Funciona
    17. Promoções
    18. FAQ
    19. CTA Final
============================================================= */


/* ─────────────────────────────────────────
   1. RESET & VARIÁVEIS
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores da ID Visual TZ Viagens */
  --navy:          #0E2A59;
  --navy-mid:      #163A72;
  --navy-card:     #1C477F;
  --orange:        #F31B2F;
  --orange-light:  #FF6B78;
  --orange-dim:    rgba(243, 27, 47, 0.15);
  --green-wa:      #25D366;
  --green-dark:    #128C4A;
  --white:         #FFFFFF;
  --text-muted:    #8A9BBF;
  --text-light:    #BFC9DC;
  --bg-light:      #F5F6FA;
  --radius:        16px;
  --shadow-card:   0 8px 32px rgba(14, 42, 89, 0.13);
  --font:          'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display:  'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-accent:   'Instrument Sans', 'Helvetica Neue', sans-serif;
}


/* ─────────────────────────────────────────
   2. BASE & TIPOGRAFIA
───────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

section { width: 100%; }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}
.section-header .section-sub { margin: 0 auto; }


/* ─────────────────────────────────────────
   3. NAVBAR
───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 42, 89, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 70px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo .nav-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-block;
  color: #C5CFE0;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--orange-light); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(243, 27, 47, 0.3);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(243, 27, 47, 0.4); filter: brightness(1.05); }


/* ─────────────────────────────────────────
   4. HERO
───────────────────────────────────────── */
#hero {
  background: var(--navy) url('../img/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px 80px;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 620px;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.16s forwards;
}
.hero-title .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--orange);
}

.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Botões hero */
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(243, 27, 47, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243, 27, 47, 0.45);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(243, 27, 47, 0.08);
  transform: translateY(-2px);
}

/* Visual do hero: card flutuante sobre a imagem de fundo (janela de avião já vem na imagem) */
.hero-visual {
  flex-shrink: 0;
  width: 460px;
  height: 460px;
  position: relative;
  opacity: 0;
  animation: heroRevealScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-float-card {
  position: absolute;
  right: 10px;
  bottom: 60px;
  width: 240px;
  background: rgba(14, 42, 89, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  z-index: 3;
}
.hero-float-card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 8px;
}
.hero-float-card-dest {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.hero-float-card-price {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.btn-card {
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s;
}
.btn-card:hover { transform: translateY(-1px); filter: brightness(1.05); }


/* ─────────────────────────────────────────
   5. DESTINOS
───────────────────────────────────────── */
#destinos {
  background: var(--bg-light);
  padding: 88px 80px;
}

/* Cards */
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}
.dest-card:hover::before { transform: scaleX(1); }
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(14, 42, 89, 0.18);
}

.dest-img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.dest-img-emoji { display: none; }

.dest-tag {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.dest-info { padding: 20px; }
.dest-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.dest-location {
  font-size: 13px;
  color: #7A88AA;
  margin-bottom: 16px;
}
.dest-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dest-price-from { font-size: 11px; color: #9AA5BE; }
.dest-price-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 2px;
}

.btn-cotar {
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s;
}
.btn-cotar:hover { transform: translateY(-1px); filter: brightness(1.05); }


/* ─────────────────────────────────────────
   6. DESTINOS: GRID E BOTÃO VER TODOS
───────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.dest-grid-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid #d5dae8;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  background: var(--orange-dim);
  transform: translateY(-2px);
}


/* ─────────────────────────────────────────
   7. POR QUE TZ VIAGENS
───────────────────────────────────────── */
#porque {
  background: var(--navy);
  padding: 88px 80px;
  position: relative;
  overflow: hidden;
}
#porque::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 92% 8%, rgba(243, 27, 47, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 4% 95%, rgba(16, 90, 200, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
#porque .section-header,
#porque .features-grid { position: relative; }

.porque-header { margin-bottom: 40px; }
.porque-title {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.feat-card:hover {
  transform: translateY(-4px);
  background: #20508F;
  border-color: rgba(243, 27, 47, 0.25);
}

.feat-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feat-icon-circle svg { width: 24px; height: 24px; }
.feat-card:hover .feat-icon-circle {
  transform: scale(1.08);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(243, 27, 47, 0.1);
}
.feat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ─────────────────────────────────────────
   16. COMO FUNCIONA
───────────────────────────────────────── */
#como-funciona {
  background: var(--bg-light);
  padding: 88px 80px;
}

.steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 24px;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #dfe3ee;
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(243, 27, 47, 0.3);
}
.step-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 14px;
  color: var(--navy);
}
.step-icon svg { width: 100%; height: 100%; }
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #7A88AA;
  max-width: 200px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────
   17. PROMOÇÕES
───────────────────────────────────────── */
#promocoes {
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  padding: 72px 80px;
}

.promo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-label {
  color: rgba(255, 255, 255, 0.85);
}
.promo-title {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 6px;
}
.promo-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.promo-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.promo-see-all:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s;
}
.promo-card:hover { transform: translateY(-4px); }

.promo-img {
  height: 130px;
  background-size: cover;
  background-position: center;
}

.promo-info { padding: 16px 18px 20px; }
.promo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.promo-detail {
  font-size: 12px;
  color: #8A96AB;
  margin-bottom: 10px;
}
.promo-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}

.promo-arrow-btn {
  position: absolute;
  top: 104px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s, background 0.2s;
}
.promo-arrow-btn:hover { transform: scale(1.08); background: var(--orange); color: var(--white); }


/* ─────────────────────────────────────────
   8. WHATSAPP CTA
───────────────────────────────────────── */
#whatsapp {
  background: linear-gradient(135deg, #0d3a1f 0%, #0E2A59 100%);
  padding: 88px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
#whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 15% 30%, rgba(37, 211, 102, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
#whatsapp .wa-content,
#whatsapp .wa-visual { position: relative; }

.wa-content { flex: 1; max-width: 580px; }

.wa-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4AE07A;
  margin-bottom: 16px;
}
.wa-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.wa-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 460px;
}

.wa-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #A8DDBA;
}
.wa-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  color: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-wa);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #20b558;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.wa-icon-svg { width: 22px; height: 22px; fill: white; }

.wa-visual {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  justify-content: center;
}

.wa-phone {
  width: 240px;
  height: 320px;
  background: #0b0b0f;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: floatBadge 6s ease-in-out infinite;
}
.wa-phone-notch {
  width: 80px;
  height: 18px;
  background: #0b0b0f;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.wa-phone-screen {
  width: 100%;
  height: 100%;
  background: #e5ddd5;
  border-radius: 24px;
  overflow: hidden;
}
.wa-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-badge {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.wa-badge--percent { top: 10px; left: 0; }
.wa-badge--bell { bottom: 40px; right: 0; background: var(--orange); color: var(--white); }


/* ─────────────────────────────────────────
   18. FAQ
───────────────────────────────────────── */
#faq {
  background: var(--white);
  padding: 88px 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E8EBF4;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #7A88AA;
}


/* ─────────────────────────────────────────
   19. CTA FINAL
───────────────────────────────────────── */
#cta-final {
  position: relative;
  padding: 110px 80px;
  background:
    linear-gradient(to top, rgba(14, 42, 89, 0.92) 0%, rgba(14, 42, 89, 0.55) 60%, rgba(14, 42, 89, 0.35) 100%),
    url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1600&h=700&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-final-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}


/* ─────────────────────────────────────────
   9. DEPOIMENTOS
───────────────────────────────────────── */
#depoimentos {
  background: var(--white);
  padding: 88px 80px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid #E8EBF4;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(14, 42, 89, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  font-style: italic;
  color: rgba(14, 42, 89, 0.06);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 42, 89, 0.12);
}

.review-stars { color: #F5C518; font-size: 17px; letter-spacing: 1px; }
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4A5168;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5e8;
}
.reviews-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-location { font-size: 12px; color: #8A9BBF; margin-top: 2px; }

/* Barra de estatísticas */
.stats-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label { font-size: 14px; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}


/* ─────────────────────────────────────────
   10. FOOTER
───────────────────────────────────────── */
footer {
  background: #050F1C;
  padding: 64px 80px 32px;
  color: var(--text-muted);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
  opacity: 0.45;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}

.footer-brand { max-width: 300px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo .footer-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  color: var(--text-muted);
  text-decoration: none;
}
.social-btn:hover { background: var(--orange-dim); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange-light); }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange-light); }
.footer-legal span { color: rgba(255, 255, 255, 0.2); }


/* ─────────────────────────────────────────
   11. MODAL DE COTAÇÃO
───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 28, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s;
}
.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #9AA5BE;
  line-height: 1;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal p {
  font-size: 14px;
  color: #7A88AA;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #DDE2EF;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.15s, filter 0.2s;
}
.form-submit:hover { transform: translateY(-1px); filter: brightness(1.05); }


/* ─────────────────────────────────────────
   12. SCROLL TO TOP
───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(243, 27, 47, 0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }


/* ─────────────────────────────────────────
   13. GRADIENTES DE DESTINOS
───────────────────────────────────────── */
/* Internacionais */
.grad-paris {
  background-image: linear-gradient(to bottom, rgba(60,20,90,0.45) 0%, rgba(30,10,60,0.15) 40%),
    url('https://images.unsplash.com/photo-1511739001486-6bfe10ce785f?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-cancun {
  background-image: linear-gradient(to bottom, rgba(5,50,120,0.35) 0%, rgba(5,50,80,0.10) 40%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-dubai {
  background-image: linear-gradient(to bottom, rgba(100,50,0,0.45) 0%, rgba(60,30,0,0.15) 40%),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-maldivas {
  background-image: linear-gradient(to bottom, rgba(0,80,100,0.45) 0%, rgba(0,60,80,0.10) 40%),
    url('https://images.unsplash.com/photo-1544550581-5f7ceaf7f992?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-santorini {
  background-image: linear-gradient(to bottom, rgba(30,60,140,0.45) 0%, rgba(10,30,80,0.10) 40%),
    url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-tokyo {
  background-image: linear-gradient(to bottom, rgba(80,10,30,0.45) 0%, rgba(40,5,15,0.10) 40%),
    url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-lisboa {
  background-image: linear-gradient(to bottom, rgba(160,80,10,0.45) 0%, rgba(80,40,5,0.10) 40%),
    url('https://images.unsplash.com/photo-1555881400-74d7acaacd8b?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-orlando {
  background-image: linear-gradient(to bottom, rgba(10,60,150,0.45) 0%, rgba(5,30,80,0.10) 40%),
    url('https://images.unsplash.com/photo-1532323544230-7191fd51bc1b?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
/* Nacionais */
.grad-noronha {
  background-image: linear-gradient(to bottom, rgba(0,80,120,0.45) 0%, rgba(0,40,70,0.10) 40%),
    url('https://images.unsplash.com/photo-1564093497595-593b96d80180?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-gramado {
  background-image: linear-gradient(to bottom, rgba(20,70,30,0.50) 0%, rgba(10,40,15,0.10) 40%),
    url('https://images.unsplash.com/photo-1548625149-fc4a29cf7092?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-iguacu {
  background-image: linear-gradient(to bottom, rgba(10,90,30,0.50) 0%, rgba(5,50,15,0.10) 40%),
    url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-bonito {
  background-image: linear-gradient(to bottom, rgba(0,100,80,0.45) 0%, rgba(0,60,50,0.10) 40%),
    url('https://images.unsplash.com/photo-1439405326854-014607f694d7?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-floripa {
  background-image: linear-gradient(to bottom, rgba(0,70,130,0.45) 0%, rgba(0,40,80,0.10) 40%),
    url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-chapada {
  background-image: linear-gradient(to bottom, rgba(150,80,10,0.50) 0%, rgba(80,40,5,0.10) 40%),
    url('https://images.unsplash.com/photo-1588880331179-bc9b93a8cb5e?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-lencois {
  background-image: linear-gradient(to bottom, rgba(10,80,150,0.35) 0%, rgba(5,50,100,0.05) 40%),
    url('https://images.unsplash.com/photo-1672271688662-3a03bbb75ec9?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-pantanal {
  background-image: linear-gradient(to bottom, rgba(20,80,20,0.50) 0%, rgba(10,50,10,0.10) 40%),
    url('https://images.unsplash.com/photo-1601042879364-f3947d3f9c16?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-portoseguro {
  background-image: linear-gradient(to bottom, rgba(0,90,110,0.45) 0%, rgba(0,60,80,0.10) 40%),
    url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}
.grad-maceio {
  background-image: linear-gradient(to bottom, rgba(0,100,110,0.45) 0%, rgba(0,60,70,0.10) 40%),
    url('https://images.unsplash.com/photo-1544644181-1484b3fdfc62?w=600&h=400&fit=crop&q=80');
  background-size: cover; background-position: center;
}


/* ─────────────────────────────────────────
   14. ANIMAÇÕES
───────────────────────────────────────── */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroRevealScale {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .badge, .hero-title, .hero-sub, .hero-btns, .hero-visual {
    animation: none;
    opacity: 1;
  }
}


/* ─────────────────────────────────────────
   15. RESPONSIVO
───────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  #hero { padding: 70px 40px; }
  .hero-visual { width: 340px; height: 340px; }
  .hero-float-card { right: -16px; width: 200px; padding: 16px; }
  .hero-title { font-size: 44px; }
  #destinos, #porque, #whatsapp, #depoimentos, #como-funciona, #promocoes, #faq { padding: 72px 40px; }
  #cta-final { padding: 80px 40px; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 56px 40px 28px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  #hero { flex-direction: column; padding: 48px 20px; min-height: unset; }
  .hero-visual { width: 100%; max-width: 340px; height: 300px; margin: 0 auto 60px; }
  .hero-float-card { right: 0; }
  .hero-title { font-size: 36px; }
  #destinos, #porque, #depoimentos, #como-funciona, #promocoes, #faq { padding: 56px 20px; }
  #cta-final { padding: 64px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-final-title { font-size: 28px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-header { flex-direction: column; align-items: flex-start; }
  .steps-row { flex-direction: column; gap: 32px; }
  .steps-row::before { display: none; }
  .step-desc { max-width: none; }
  #whatsapp { flex-direction: column; padding: 56px 20px; gap: 40px; }
  .wa-visual { width: 100%; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .features-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .stat-divider { width: 48px; height: 1px; }
  footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 28px; }
  .wa-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   20. FORMULÁRIO DE COTAÇÃO (#cadastro)
───────────────────────────────────────── */
.form-section { padding: 6rem 0; background: var(--bg-light); }
.form-header { text-align: center; margin: 0 auto 3rem; max-width: 560px; }
.form-header .section-title,
.form-header .section-sub { color: var(--navy); }
.form-header .section-sub { color: #5a6a8a; margin: 0 auto; }

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(9,24,48,.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(9,24,48,.08);
}
.form-row--full { grid-column: 1 / -1; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--navy);
  background: var(--bg-light);
  border: 1.5px solid #DDE2EF;
  border-radius: 10px;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row select { cursor: pointer; }

.form-row--submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  margin-top: .5rem;
}
.form-submit-btn { width: 100%; justify-content: center; border: none; cursor: pointer; font-family: var(--font); }
.form-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.form-status { font-size: .85rem; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-status--success { color: var(--green-wa); }
.form-status--error { color: #d9364a; }

@media (max-width: 768px) {
  .lead-form { grid-template-columns: 1fr; padding: 1.75rem; }
}
