/* ============================================================
   FELIX DESTINOS — Design System v2
   Paleta vibrante (bandeira LGBTQIAPN+) + gradiente de campanha
   ============================================================ */

:root {
  /* Cores da marca */
  --red: #E40303;
  --orange: #FF8C00;
  --yellow: #FFED00;
  --green: #008026;
  --blue: #004DFF;
  --purple: #750787;
  --white: #FFFFFF;
  /* Amarelo exato do fundo do logo oficial — usado na navbar e em chips de UI
     pra casar perfeitamente com o ícone. O --yellow acima continua sendo o
     amarelo oficial da bandeira, usado só nas faixas/listras do arco-íris. */
  --brand-yellow: #F9D425;

  /* Gradiente "verão / liberdade" */
  --grad-start: #DDC525;
  --grad-end: #FFB070;
  --grad-hero: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);

  /* Neutros de apoio (para não cansar o olho com cor pura em blocos grandes) */
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --paper: #FFFBF2;
  --paper-warm: #FFF6E0;
  --line: rgba(26, 26, 26, 0.12);

  /* Tipografia oficial da marca (Felix Destinos — Identidade Visual):
     Principal: League Spartan · Institucional: Garet · Decodificador: Glacial Indifference.
     Garet e Glacial Indifference não estão no Google Fonts — usamos 'Nunito' e 'Jost'
     como substitutas visuais próximas até recebermos os arquivos de fonte reais (.otf/.ttf)
     do kit de marca do cliente. Trocar aqui assim que os arquivos chegarem. */
  --font-display: 'League Spartan', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Garet', 'Nunito', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Glacial Indifference', 'Jost', 'Century Gothic', sans-serif;

  /* Espaçamento e forma */
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 32px rgba(26, 26, 26, 0.12);
  --shadow-card: 0 8px 24px rgba(26, 26, 26, 0.10);
  --nav-height: 86px; /* barra reduzida 50% a pedido do cliente — logo e demais elementos mantêm o tamanho e "vazam" da barra */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
p { line-height: 1.65; margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.mono { font-family: var(--font-mono); letter-spacing: 0.03em; text-transform: uppercase; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
  border-radius: 4px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 720px; }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 620px; }

.grad-bg { background: var(--grad-hero); }
.paper-bg { background: var(--paper); }
.warm-bg { background: var(--paper-warm); }
.dark-bg { background: var(--ink); color: var(--paper); }
.dark-bg .section-sub { color: rgba(255,255,255,0.72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 24px rgba(228,3,3,0.30); }
.btn-primary:hover { background: #c40202; box-shadow: 0 14px 30px rgba(228,3,3,0.38); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-block { width: 100%; }

/* ---------------- NAVBAR ---------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--brand-yellow);
  z-index: 500;
  border-bottom: 3px solid var(--ink);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-mark {
  width: 133px; height: 133px; border-radius: 30px;
  object-fit: cover; flex-shrink: 0;
}
footer .logo .logo-mark { border-radius: 30px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--ink);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.whatsapp-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  padding: 8px 18px 8px 12px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.whatsapp-pill:hover { background: var(--green); transform: translateY(-2px); }
.whatsapp-icon { width: 26px; height: 26px; display: block; }
.nav-toggle { display: none; background: none; border: none; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,128,38,0.45);
  animation: pulse 2.6s infinite;
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,128,38,0.45); }
  50% { box-shadow: 0 10px 34px rgba(0,128,38,0.7), 0 0 0 10px rgba(0,128,38,0.08); }
}

/* ---------------- HERO ---------------- */
.hero { position: relative; margin-top: var(--nav-height); overflow: hidden; }
.hero-carousel { position: relative; height: min(700px, 82vh); min-height: 500px; }
.hero-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(.65,0,.35,1); }
.hero-slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
/* Banners que são peça pronta (imagem com texto embutido) viram um link
   clicável: sem overlay estático, só um leve zoom + tint no hover/foco. */
a.hero-slide.hero-slide--image { cursor: pointer; }
a.hero-slide.hero-slide--image .slide-bg { transition: transform 0.6s ease, filter 0.6s ease; }
a.hero-slide.hero-slide--image:hover .slide-bg,
a.hero-slide.hero-slide--image:focus-visible .slide-bg {
  transform: scale(1.035); filter: brightness(0.94);
}
.hero-slide .slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide .slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.32) 100%);
}
/* Peças de banner prontas já têm texto embutido na arte — aqui só precisamos
   de leitura pro botão no rodapé da imagem, então o degradê fica bem mais discreto. */
.hero-slide .slide-overlay--subtle {
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 35%);
}
.hero-slide-content {
  position: relative; z-index: 2; color: var(--white);
  padding: 0 24px 64px; max-width: 1180px; margin: 0 auto; width: 100%;
}
.hero-slide-content--cta-only { padding-bottom: 40px; }
.hero-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--brand-yellow); color: var(--ink);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hero-slide h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); max-width: 780px; color: var(--white); }
.hero-slide p.lead { font-size: 1.15rem; max-width: 560px; color: rgba(255,255,255,0.9); }
.hero-cta-row { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }

.hero-arrows { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; z-index: 3; pointer-events: none; }
.hero-arrow {
  pointer-events: all;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--ink);
  transition: background 0.2s ease;
}
.hero-arrow:hover { background: var(--white); }
.hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; transition: all 0.25s ease; }
.hero-dot.active { background: var(--white); width: 26px; border-radius: 6px; }

/* ---------------- SEARCH WIDGET (não usado no momento — CSS mantido caso o widget volte) ---------------- */
.search-widget-wrap {
  position: relative; z-index: 10;
  margin: 0 auto; max-width: 1000px; padding: 0 24px;
}
.search-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}
.search-tabs {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.search-tab {
  background: none; border: none; padding: 16px 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  color: var(--ink-soft); white-space: nowrap; border-bottom: 3px solid transparent;
  display: flex; align-items: center; gap: 8px;
}
.search-tab.active { color: var(--ink); border-bottom-color: var(--red); background: var(--white); }
.search-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 0;
}
.search-field {
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  position: relative;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block; font-family: var(--font-mono); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); margin-bottom: 6px;
}
.search-field input {
  width: 100%; border: none; outline: none; font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; color: var(--ink); background: transparent;
}
.search-field input::placeholder { color: #9c9186; font-weight: 500; }
.search-submit {
  background: var(--red); color: var(--white); border: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 0 30px; display: flex; align-items: center; gap: 8px;
  transition: background 0.25s ease;
}
.search-submit:hover { background: #c40202; }
.autocomplete-list {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); margin-top: 6px; z-index: 30; overflow: hidden; display: none;
}
.autocomplete-list.open { display: block; }
.autocomplete-list button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 11px 16px; font-family: var(--font-body); font-size: 0.92rem;
}
.autocomplete-list button:hover { background: var(--paper-warm); }
.autocomplete-list .ac-code { font-family: var(--font-mono); font-size: 0.72rem; color: var(--purple); margin-left: 6px; }

/* ---------------- OFERTAS ---------------- */
.offers-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr);
  gap: 22px; overflow-x: auto; padding: 8px 4px 24px; scroll-snap-type: x mandatory;
}
.offer-card {
  scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.offer-img { height: 170px; background-size: cover; background-position: center; position: relative; }
.offer-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand-yellow); color: var(--ink); font-family: var(--font-mono);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: 100px;
}
.offer-body { padding: 18px 20px 22px; }
.offer-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.offer-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.offer-price-label { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 2px; }
.offer-price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--red); }
.offer-installment { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft); }
.offer-img--full { height: 320px; }

/* ---------------- DESTINOS POPULARES ---------------- */
.dest-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 18px; overflow-x: auto; padding: 8px 4px 12px; scroll-snap-type: x mandatory;
}
.dest-card {
  scroll-snap-align: start; position: relative; height: 260px; border-radius: var(--radius);
  overflow: hidden; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; padding: 20px;
}
.dest-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent 60%); }
.dest-card span { position: relative; z-index: 1; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

/* ---------------- RESPEITO ---------------- */
.respeito-section {
  padding: 90px 0;
  color: var(--white);
  position: relative;
  background-image: url('../assets/sections/respeito-bandeira.jpg');
  background-size: cover;
  background-position: center 20%; /* desce a imagem pra mostrar a bandeira inteira, do vermelho ao roxo */
  background-repeat: no-repeat;
}
/* Overlay escuro por cima da foto pra manter o texto branco legível */
.respeito-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.72), rgba(10,10,10,0.6));
}
.pride-frame {
  position: relative;
  z-index: 1;
  padding: 56px 40px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 4px;
}
.pride-frame .slogan {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 22px; letter-spacing: -0.01em;
}
.pride-frame p { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 620px; margin: 0 auto 1em; }

/* ---------------- SOBRE / POLAROID ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.polaroid-cluster { position: relative; min-height: 420px; }
.polaroid {
  position: absolute; background: var(--white); padding: 14px 14px 44px; margin: 0;
  box-shadow: var(--shadow-soft); width: 220px; transform: rotate(var(--r, 0deg));
  transition: transform 0.35s ease;
}
.polaroid:hover { transform: rotate(0deg) scale(1.04); z-index: 5; }
.polaroid .ph { height: 220px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.polaroid .pride-line { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; display: flex; }
.polaroid .pride-line span { flex: 1; }
.polaroid figcaption {
  display: block; text-align: center; margin-top: 12px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em;
}
.polaroid.p1 { top: 0; left: 10%; --r: -7deg; }
.polaroid.p2 { top: 40px; left: 45%; --r: 5deg; z-index: 2; }
.polaroid.p3 { top: 190px; left: 5%; --r: 4deg; }
.polaroid.p4 { top: 210px; left: 48%; --r: -4deg; }

/* ---------------- PRÓXIMAS VIAGENS (campaign cards) ---------------- */
.campaign-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.campaign-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.campaign-media { height: 210px; background-size: cover; background-position: center; position: relative; }
.campaign-media .grad-overlay { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.18; }
.campaign-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.campaign-date { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--purple); }
.campaign-card h3 { font-size: 1.35rem; }
.campaign-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.campaign-card.ghost { opacity: 0.55; border-style: dashed; }
.campaign-card.ghost .campaign-media { display: flex; align-items: center; justify-content: center; background: var(--paper-warm); font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft); text-align: center; padding: 20px;}

/* ---------------- CAMPAIGN PAGE: EVENT HERO ---------------- */
.event-hero { margin-top: var(--nav-height); background: var(--grad-hero); padding: 80px 0 60px; position: relative; overflow: hidden; }
.event-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.event-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.event-info-card {
  background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft);
}
.event-info-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.event-info-row:last-of-type { border-bottom: none; }
.event-info-icon { font-size: 1.3rem; }
.event-info-label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--purple); margin-bottom: 2px; }
.event-info-value { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.event-price-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------------- O QUE ESTÁ INCLUSO ---------------- */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.included-item {
  background: var(--white); border-radius: var(--radius-sm); padding: 22px;
  border: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.included-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-hero); display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.not-included-box {
  background: var(--paper-warm); border: 1px dashed var(--line); border-radius: var(--radius-sm);
  padding: 18px 22px; font-size: 0.92rem; color: var(--ink-soft); max-width: 780px;
}

/* ---------------- EMBARQUES ---------------- */
.embarque-list { display: flex; flex-direction: column; gap: 4px; max-width: 720px; }
.embarque-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.embarque-item:last-child { border-bottom: none; }
.embarque-time {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--red);
  min-width: 64px; flex-shrink: 0;
}
.embarque-item strong { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.embarque-item p { margin: 3px 0 0; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------------- TIMELINE ---------------- */
.timeline-day { margin-bottom: 46px; }
.timeline-day-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
}
.timeline-day-title .badge {
  background: var(--ink); color: var(--white); font-family: var(--font-mono);
  font-size: 0.78rem; padding: 6px 14px; border-radius: 100px;
}
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(180deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
  border-radius: 4px;
}
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item::before {
  content: ''; position: absolute; left: -30px; top: 4px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--red);
}
.timeline-item p { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }

/* ---------------- DESTINO (Camping do Chico) ---------------- */
.dest-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dest-showcase-grid img, .dest-showcase-grid .ph-block { border-radius: var(--radius-sm); height: 220px; background-size: cover; background-position: center; }
.dest-showcase-grid .tall { height: 460px; grid-row: span 2; }

/* ---------------- O QUE VOCÊ VAI VIVER ---------------- */
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.experience-card {
  padding: 28px 24px; border-radius: var(--radius); background: var(--paper-warm);
  border: 1px solid var(--line); transition: transform 0.3s ease, background 0.3s ease;
}
.experience-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-card); }
.experience-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
.experience-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.experience-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------------- NEWSLETTER ---------------- */
.newsletter { background: var(--grad-hero); border-radius: var(--radius); padding: 50px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h3 { font-size: 1.6rem; max-width: 420px; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 300px; }
.newsletter input {
  flex: 1; min-width: 180px; padding: 15px 20px; border-radius: 100px; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.95rem;
}
.form-note { font-size: 0.75rem; color: rgba(26,26,26,0.65); margin-top: 10px; width: 100%; font-family: var(--font-mono); }

/* ---------------- FOOTER ---------------- */
/* Preto puro (não var(--ink)) pra casar exatamente com o fundo do logo oficial no rodapé. */
footer { background: #000000; color: rgba(255,255,255,0.82); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--brand-yellow); }
.payment-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.payment-badges span {
  font-family: var(--font-mono); font-size: 0.68rem; border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 10px; border-radius: 6px; text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; transition: background 0.25s ease, border-color 0.25s ease;
}
.social-row a:hover { background: var(--brand-yellow); color: var(--ink); border-color: var(--brand-yellow); }

/* ---------------- REVEAL ANIMATIONS ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .polaroid-cluster { min-height: 360px; margin-top: 30px;}
  .event-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-showcase-grid .tall { height: 220px; grid-row: span 1; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-field:nth-child(3), .search-field:nth-child(4) { border-right: none; }
  .search-submit { grid-column: 1 / -1; padding: 16px; justify-content: center; }
}
@media (max-width: 720px) {
  :root { --nav-height: 69px; } /* barra reduzida 50% também no mobile — logo mantém o tamanho */
  .navbar .container { padding: 0 16px; gap: 10px; }
  .logo { font-size: 0.92rem; min-width: 0; flex-shrink: 1; }
  .logo .logo-mark { width: 84px; height: 84px; border-radius: 18px; flex-shrink: 0; }
  .logo .logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  .nav-actions { flex-shrink: 0; gap: 8px; }
  .whatsapp-pill span.pill-text { display: none; }
  .whatsapp-pill { padding: 10px 12px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .navbar.open .nav-links {
    display: flex; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--brand-yellow); flex-direction: column; padding: 20px 24px; gap: 16px;
    border-bottom: 3px solid var(--ink);
  }
  .search-fields { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 64px 0; }
  /* Banners do hero são peças prontas bem "largas" (proporção ~2.4:1) — em telas
     estreitas, uma altura fixa grande (pensada pra desktop) força um zoom enorme
     na imagem de fundo e corta o texto embutido na arte. Reduzimos bastante a
     altura no mobile pra manter o crop discreto (o background-position de cada
     banner já cuida de manter o lado com o texto visível). */
  .hero-carousel { height: 58vw; min-height: 190px; max-height: 320px; }
  /* Cluster de polaroids usa posicionamento absoluto pensado pra tela larga —
     no mobile isso estourava a largura da viewport e cortava as legendas.
     Vira uma grade simples 2x2, sem sobreposição. */
  .polaroid-cluster { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; position: static; min-height: 0; margin-top: 8px; width: 100%; min-width: 0; max-width: 100%; }
  .polaroid { position: static; width: 100%; min-width: 0; max-width: 100%; transform: none; padding: 8px 8px 30px; box-sizing: border-box; }
  .polaroid:hover { transform: none; }
  .polaroid .ph { height: 120px; min-width: 0; width: 100%; }
  .polaroid figcaption { overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
  /* Form do newsletter tinha min-width fixo nos inputs maior que a área
     disponível no card em telas estreitas, fazendo os campos vazarem
     pra fora do card. Empilha tudo em coluna, ocupando 100% da largura. */
  .newsletter { padding: 34px 22px; }
  .newsletter form { min-width: 0; width: 100%; flex-direction: column; align-items: stretch; }
  .newsletter input { min-width: 0; width: 100%; }
}
