/* ==========================================================================
   SKY Intercâmbio e Viagem — Design System
   Identidade derivada do logo: laranja #FE6402, tipografia geométrica,
   rastro de avião, órbita e estrelas.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca */
  --sky-50:  #FFF4ED;
  --sky-100: #FFE6D5;
  --sky-200: #FFC8AA;
  --sky-300: #FFA274;
  --sky-400: #FF7B3D;
  --sky-500: #FE6402;   /* laranja oficial do logo */
  --sky-600: #E04E00;
  --sky-700: #BA3A02;
  --sky-800: #942F0B;
  --sky-900: #78290C;

  /* Céu noturno — base escura da marca */
  --ink-950: #060A14;
  --ink-900: #0B1220;
  --ink-850: #101A2D;
  --ink-800: #16223A;
  --ink-700: #1E2E4C;
  --ink-600: #35486B;
  --ink-500: #55688A;
  --ink-400: #7D8DA9;
  --ink-300: #AAB6C9;
  --ink-200: #D3DAE5;
  --ink-100: #E9EDF3;
  --ink-50:  #F5F7FA;

  /* Acento secundário — azul de céu diurno */
  --azure-300: #7DD3FC;
  --azure-400: #38BDF8;
  --azure-500: #0EA5E9;

  --cream: #FFF9F5;
  --white: #FFFFFF;

  /* Semânticos */
  --bg: var(--white);
  --bg-soft: var(--cream);
  --text: var(--ink-900);
  --text-soft: var(--ink-500);
  --text-mute: var(--ink-400);
  --line: rgba(11, 18, 32, .10);
  --line-soft: rgba(11, 18, 32, .06);

  /* Tipografia */
  --font-display: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.6rem, 1.2rem + 5.6vw, 5.4rem);
  --fs-h1:   clamp(2.1rem, 1.3rem + 3.2vw, 3.6rem);
  --fs-h2:   clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  --fs-h3:   clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  --fs-lead: clamp(1.02rem, .96rem + .45vw, 1.22rem);
  --fs-body: 1rem;
  --fs-sm:   .9rem;
  --fs-xs:   .8rem;

  /* Espaço */
  --sp-section: clamp(4.5rem, 3rem + 6vw, 8rem);
  --container: 1240px;
  --gutter: clamp(1.15rem, .6rem + 2vw, 2.5rem);

  /* Formas */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(11, 18, 32, .06);
  --sh-md: 0 10px 30px -12px rgba(11, 18, 32, .18);
  --sh-lg: 0 28px 60px -22px rgba(11, 18, 32, .28);
  --sh-orange: 0 16px 40px -14px rgba(254, 100, 2, .55);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --header-h: 104px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--sky-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sky-500); color: #fff; }

/* ---------- 3. Tipografia ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -.015em; }

p { text-wrap: pretty; }

.lead {
  font-size: var(--fs-lead);
  color: var(--text-soft);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky-600);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-300));
}
.eyebrow--center::before { display: none; }
.eyebrow--light { color: var(--sky-300); }

/* Palavra em destaque com o rastro do avião sublinhando */
.hl {
  position: relative;
  color: var(--sky-500);
  white-space: nowrap;
}
.hl::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .04em;
  height: .34em;
  background: currentColor;
  opacity: .16;
  border-radius: var(--r-pill);
  transform: skewX(-12deg);
  z-index: -1;
}

.grad-text {
  background: linear-gradient(100deg, var(--sky-400), var(--sky-500) 45%, var(--sky-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding-block: var(--sp-section); position: relative; }
/* A primeira seção depois do hero de página interna não precisa do respiro
   cheio — o hero já entrega o espaçamento. */
.page-hero + .section { padding-top: clamp(2.5rem, 1.8rem + 2.5vw, 4.2rem); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }

.section-head {
  max-width: 660px;
  margin-bottom: clamp(2.4rem, 1.6rem + 2.5vw, 3.8rem);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }

.stack > * + * { margin-top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 5. Botões ---------- */
.btn {
  --btn-bg: var(--sky-500);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .25s var(--ease-soft), color .25s var(--ease-soft),
              border-color .25s var(--ease-soft);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500) 55%, var(--sky-600));
  box-shadow: var(--sh-orange);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -14px rgba(254,100,2,.68); }

.btn--dark { background: var(--ink-900); }
.btn--dark:hover { transform: translateY(-3px); background: var(--ink-800); box-shadow: var(--sh-md); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--sky-500); color: var(--sky-600); transform: translateY(-3px); }

.btn--glass {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255,255,255,.20); transform: translateY(-3px); }

.btn--white { background: #fff; color: var(--ink-900); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -18px rgba(0,0,0,.45); }

.btn--sm { padding: .68rem 1.25rem; font-size: .9rem; }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* Link com seta que desliza */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sky-600);
  transition: gap .3s var(--ease), color .2s;
}
.link-arrow svg { width: 1.1em; height: 1.1em; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: .75rem; color: var(--sky-500); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- 6. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height .4s var(--ease), background-color .4s var(--ease),
              box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.header.is-stuck { height: 82px; }
.header.is-stuck::before { opacity: 1; }
.header.is-stuck { box-shadow: 0 6px 28px -18px rgba(11,18,32,.5); }

.header__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(1rem, .4rem + 2vw, 2.5rem);
}

.brand { display: flex; align-items: center; flex: none; }
.brand img {
  height: clamp(56px, 46px + 2.2vw, 80px);
  width: auto;
  transition: height .4s var(--ease);
}
.header.is-stuck .brand img { height: 56px; }
.brand__light { display: block; }
.brand__dark { display: none; }
.header.is-stuck .brand__light,
.header--solid .brand__light { display: none; }
.header.is-stuck .brand__dark,
.header--solid .brand__dark { display: block; }

/* Navegação desktop */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.4rem, .1rem + 1.1vw, 1.4rem); }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .2rem;
  font-family: var(--font-display);
  font-size: .97rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  transition: color .25s var(--ease-soft);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: .18rem;
  height: 2px;
  border-radius: 2px;
  background: var(--sky-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after,
.nav__item.is-current .nav__link::after { transform: scaleX(1); }
.nav__link .chev { width: 14px; height: 14px; transition: transform .3s var(--ease); opacity: .75; }
.nav__item:hover .chev { transform: rotate(180deg); }

.header.is-stuck .nav__link,
.header--solid .nav__link { color: var(--ink-800); }
.header.is-stuck .nav__link:hover,
.header--solid .nav__link:hover { color: var(--sky-600); }
.header.is-stuck .nav__item.is-current .nav__link,
.header--solid .nav__item.is-current .nav__link { color: var(--sky-600); }

/* Dropdown */
.nav__item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  min-width: 320px;
  padding: .7rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%; left: 0; right: 0; height: 18px;
}
.dropdown__link {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .7rem .8rem;
  border-radius: var(--r-md);
  transition: background-color .22s var(--ease-soft);
}
.dropdown__link:hover { background: var(--sky-50); }
.dropdown__ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--sky-100), var(--sky-50));
  color: var(--sky-600);
}
.dropdown__ico svg { width: 19px; height: 19px; }
/* Ambos são <span>, que é inline: sem display:block o título e a descrição
   ficam grudados na mesma linha. */
.dropdown__t {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink-900);
  line-height: 1.3;
}
.dropdown__d {
  display: block;
  margin-top: .15rem;
  font-size: .8rem;
  color: var(--text-mute);
  line-height: 1.45;
}

.header__cta { display: flex; align-items: center; gap: .6rem; flex: none; }

/* Hambúrguer */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  flex: none;
}
.header.is-stuck .burger,
.header--solid .burger { background: var(--ink-50); border-color: var(--line); }
.burger span {
  display: block;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .35s var(--ease), opacity .25s;
}
.burger span + span { margin-top: 5px; }
.header.is-stuck .burger span,
.header--solid .burger span { background: var(--ink-800); }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink-950);
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__list { display: flex; flex-direction: column; gap: .2rem; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer__link:hover { color: var(--sky-400); }
.drawer__sub { padding: .2rem 0 .8rem 1rem; display: flex; flex-direction: column; gap: .15rem; }
.drawer__sub a {
  padding: .5rem 0;
  font-size: .98rem;
  color: var(--ink-300);
}
.drawer__sub a:hover { color: var(--sky-300); }
.drawer__foot { margin-top: 2rem; display: grid; gap: .7rem; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: min(90svh, 800px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: clamp(3.5rem, 2rem + 6vw, 7rem);
  background: var(--ink-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Camadas do céu */
.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 80% at 78% 6%,  rgba(254,100,2,.34)  0%, transparent 58%),
    radial-gradient(90%  70% at 12% 92%, rgba(56,189,248,.20) 0%, transparent 60%),
    radial-gradient(100% 90% at 50% 50%, #142240 0%, #0B1220 46%, #060A14 100%);
}
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 18%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 28% 62%, rgba(255,255,255,.65) 50%, transparent 51%),
    radial-gradient(1.8px 1.8px at 47% 12%, rgba(255,255,255,.8) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 63% 78%, rgba(255,255,255,.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 82% 30%, rgba(255,255,255,.75) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 91% 68%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 36% 88%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 72% 48%, rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1px 1px   at 55% 34%, rgba(255,255,255,.45) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 20% 44%, rgba(255,255,255,.6) 50%, transparent 51%);
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .45; } to { opacity: 1; } }

/* Rastro de avião que se desenha */
.hero__trail {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: -6%;
  width: min(70vw, 900px);
  opacity: .5;
  pointer-events: none;
}
.hero__trail path {
  fill: none;
  stroke: url(#trailGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-trail 4s var(--ease) .4s forwards;
}
@keyframes draw-trail { to { stroke-dashoffset: 0; } }
/* Anima só o grupo interno — o posicionamento fica no <g> externo do SVG. */
.hero__plane { animation: plane-float 6s ease-in-out infinite; transform-origin: center; }
@keyframes plane-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-5px, 6px) rotate(-4deg); }
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2.5rem, 1rem + 5vw, 5rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .5rem .5rem .5rem;
  margin-bottom: 1.6rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.hero__badge b {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem .7rem;
  background: var(--sky-500);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__badge span { padding-right: .7rem; }

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 1.4rem;
}
/* Slogan em três linhas: escala um pouco menor para caber com folga. */
.hero__slogan {
  font-size: clamp(2.3rem, 1.1rem + 4.8vw, 4.6rem);
  line-height: 1.02;
  text-wrap: nowrap;
}
.hero h1 .grad-text {
  background: linear-gradient(100deg, #FFB07C, var(--sky-400) 40%, var(--sky-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,.74);
  max-width: 34em;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.6rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, .8rem + 2vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.hero__proof-item span {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
  display: block;
  margin-top: .35rem;
}

/* Card flutuante do hero */
.hero__card {
  position: relative;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.2rem);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
  animation: card-in 1s var(--ease) .3s both;
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.hero__card h2 {
  font-size: 1.32rem;
  margin-bottom: .35rem;
  color: #fff;
}
.hero__card > p {
  font-size: .9rem;
  color: rgba(255,255,255,.62);
  margin-bottom: 1.4rem;
}

/* ---------- 8. Formulário rápido (hero) ---------- */
.field { display: grid; gap: .4rem; }
.field + .field { margin-top: .85rem; }
.field label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .82rem 1rem;
  background: rgba(255,255,255,.9);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--ink-900);
  transition: border-color .25s var(--ease-soft), background-color .25s, box-shadow .25s;
  appearance: none;
}
.field textarea { min-height: 110px; resize: vertical; }
/* Upload de currículo (/trabalhe-conosco) */
.field input[type="file"] { padding: .7rem 1rem; font-size: .88rem; cursor: pointer; }
.field input[type="file"]::file-selector-button {
  margin-right: .9rem;
  padding: .45rem .9rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--ink-900);
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .25s var(--ease-soft);
}
.field input[type="file"]:hover::file-selector-button { background: var(--sky-500); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355688A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(254,100,2,.16);
}
.field--dark label { color: rgba(255,255,255,.85); }

/* Formulário em fundo claro */
.form-light .field input,
.form-light .field select,
.form-light .field textarea {
  background: var(--ink-50);
  border-color: var(--line);
}
.form-light .field label { color: var(--ink-800); }

.form-note { font-size: .78rem; color: var(--text-mute); line-height: 1.5; }
.hero__card .form-note { color: rgba(255,255,255,.5); }

/* Chips de seleção */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; }
.chip input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.chip span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease-soft);
  background: #fff;
}
.chip span:hover { border-color: var(--sky-300); }
.chip input:checked + span {
  background: var(--sky-500);
  border-color: var(--sky-500);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(254,100,2,.6);
}
.chip input:focus-visible + span { outline: 3px solid var(--sky-400); outline-offset: 2px; }

/* ---------- 9. Marquee de parceiros ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 1.6rem;
  border-block: 1px solid var(--line-soft);
  background: #fff;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1rem, .9rem + .5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-300);
  white-space: nowrap;
  transition: color .3s;
}
.marquee__item:hover { color: var(--sky-500); }

/* ---------- 10. Cards de programa ---------- */
.grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
/* Para blocos pequenos (fichas de duração, idade, visto…) que devem ficar
   2 por linha mesmo dentro de meia largura de tela. */
.grid--tight { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.card::after {
  content: '';
  position: absolute;
  inset: auto -30% -60% auto;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,100,2,.14), transparent 65%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--sky-200); }
.card:hover::after { opacity: 1; }

.card__ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--sky-500), var(--sky-600));
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 26px -12px rgba(254,100,2,.7);
  transition: transform .45s var(--ease);
}
.card:hover .card__ico { transform: rotate(-8deg) scale(1.06); }
.card__ico svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; color: var(--text-soft); }
.card__meta {
  display: flex; flex-wrap: wrap; gap: .45rem;
  margin-top: 1.1rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .7rem;
  background: var(--sky-50);
  color: var(--sky-700);
  border-radius: var(--r-pill);
  font-size: .76rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.tag--ink { background: var(--ink-100); color: var(--ink-600); }
.card__foot { margin-top: auto; padding-top: 1.4rem; }

/* Card destaque (bento) */
.card--feature {
  background: linear-gradient(150deg, var(--ink-900), var(--ink-800) 60%, var(--ink-850));
  border-color: transparent;
  color: #fff;
  overflow: hidden;
}
.card--feature h3 { color: #fff; }
.card--feature p { color: rgba(255,255,255,.7); }
.card--feature .tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.card--feature .link-arrow { color: var(--sky-400); }
.card--feature::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,100,2,.35), transparent 62%);
}

/* ---------- 11. Cards de destino ---------- */
.dest {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dest:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
/* Empilhamento sem z-index negativo:
   0 = foto, 1 = véu escuro, 2 = texto.
   z-index negativo dentro de camada composta (o .reveal usa will-change)
   deixa de pintar de forma intermitente — foi exatamente o que aconteceu. */
.dest__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform .8s var(--ease);
}
.dest:hover .dest__art { transform: scale(1.07); }
.dest__art svg,
.dest__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* leve realce para as fotos ficarem coesas entre si */
  filter: saturate(1.06) contrast(1.04);
}
.dest__art--vazio {
  background: linear-gradient(150deg, var(--ink-800), var(--ink-900) 55%, var(--sky-800));
}
/* Véu escuro: precisa segurar texto branco mesmo sobre foto clara
   (Moraine Lake, Table Mountain). Por isso é mais forte na base. */
.dest::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
              rgba(6,10,20,.96) 0%,
              rgba(6,10,20,.82) 26%,
              rgba(6,10,20,.42) 55%,
              rgba(6,10,20,.10) 78%,
              transparent 100%);
}
.dest h3, .dest p, .dest__tags {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 12px rgba(6,10,20,.55);
}
.dest__flag, .dest__price { z-index: 2; }   /* já são position:absolute */
.dest__flag {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  padding: .35rem .8rem;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.dest__price {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  padding: .4rem .85rem;
  background: var(--sky-500);
  border-radius: var(--r-pill);
  font-size: .76rem;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 10px 24px -10px rgba(254,100,2,.9);
}
.dest h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.dest p { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: .9rem; }
.dest__tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.dest__tags span {
  padding: .25rem .65rem;
  background: rgba(255,255,255,.14);
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 500;
}

/* ---------- 12. Linha do tempo / processo ---------- */
.steps {
  position: relative;
  display: grid;
  gap: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 6%; right: 6%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--sky-300) 55%, transparent 0);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__n {
  width: 68px; height: 68px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky-200);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sky-500);
  transition: all .4s var(--ease);
}
.step:hover .step__n {
  background: linear-gradient(140deg, var(--sky-400), var(--sky-600));
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
  box-shadow: var(--sh-orange);
}
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { font-size: .9rem; color: var(--text-soft); }
.section--soft .step__n { background: var(--bg-soft); }

/* ---------- 13. Depoimentos ---------- */
.testi-wrap { position: relative; }
.testi-track {
  display: flex;
  gap: clamp(1rem, .6rem + 1.2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: .5rem;
  scroll-behavior: smooth;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi {
  flex: 0 0 min(430px, 84vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.testi__stars { display: flex; gap: .15rem; color: var(--sky-500); margin-bottom: 1rem; }
.testi__stars svg { width: 17px; height: 17px; }
.testi blockquote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: 1.5rem;
  flex: 1;
}
.testi__who { display: flex; align-items: center; gap: .8rem; }
.testi__ava {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--sky-400), var(--sky-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}
.testi__who b { display: block; font-family: var(--font-display); font-size: .96rem; }
.testi__who span { font-size: .82rem; color: var(--text-mute); }

.slider-nav { display: flex; gap: .5rem; margin-top: 1.6rem; }
.slider-nav button {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--ink-700);
  background: #fff;
  transition: all .28s var(--ease-soft);
}
.slider-nav button:hover { background: var(--sky-500); border-color: var(--sky-500); color: #fff; }
.slider-nav button svg { width: 19px; height: 19px; }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] { border-color: var(--sky-200); box-shadow: var(--sh-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .ico {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sky-50);
  color: var(--sky-600);
  transition: transform .35s var(--ease), background-color .3s;
}
.faq__item[open] .faq__q .ico { transform: rotate(45deg); background: var(--sky-500); color: #fff; }
.faq__q .ico svg { width: 15px; height: 15px; }
.faq__a { padding: 0 1.35rem 1.3rem; color: var(--text-soft); font-size: .96rem; }

/* ---------- 15. CTA ---------- */
.cta {
  position: relative;
  padding: clamp(2.5rem, 1.6rem + 3.6vw, 4.5rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 55%, #23324f 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,100,2,.42), transparent 62%);
  z-index: -1;
}
.cta::after {
  content: '';
  position: absolute;
  inset: auto auto -55% -12%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.28), transparent 64%);
  z-index: -1;
}
.cta h2 { margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto 2rem; font-size: var(--fs-lead); }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- 16. Página interna: hero curto ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 2rem + 3vw, 5rem));
  padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
  background: var(--ink-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(110% 100% at 82% 0%, rgba(254,100,2,.30) 0%, transparent 58%),
    radial-gradient(90% 90% at 10% 100%, rgba(56,189,248,.16) 0%, transparent 60%),
    linear-gradient(160deg, #101A2D, #060A14);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 62ch; }
.page-hero .eyebrow { color: var(--sky-300); margin-bottom: 1rem; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.4rem;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
}
.crumbs a:hover { color: var(--sky-300); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }

/* ---------- 17. Bloco alternado texto+arte ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 1.2rem + 3vw, 4.5rem);
  align-items: center;
}
.split__art {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: linear-gradient(150deg, var(--ink-800), var(--ink-900));
}
.split--rev .split__art { order: -1; }
@media (max-width: 720px) { .split--rev .split__art { order: 0; } }

.checklist { display: grid; gap: .85rem; margin-top: 1.6rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .98rem;
  color: var(--text-soft);
}
.checklist .ck {
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sky-50);
  color: var(--sky-600);
  margin-top: .12rem;
}
.checklist .ck svg { width: 13px; height: 13px; }
.checklist b { color: var(--text); font-weight: 600; }

/* ---------- 18. Estatísticas ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1rem, .6rem + 1.4vw, 2rem);
}
.stat {
  padding: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--sky-500);
}
.stat span { display: block; margin-top: .5rem; font-size: .88rem; color: var(--text-soft); }

/* ---------- 19. Blog ---------- */
.post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.post__art { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-800); }
.post__art svg,
.post__art img { width: 100%; height: 100%; transition: transform .7s var(--ease); }
/* Foto de capa: mesmo realce leve dos cards de destino, para o blog e os
   destinos parecerem do mesmo conjunto. */
.post__art img { object-fit: cover; display: block; filter: saturate(1.06) contrast(1.04); }
.post:hover .post__art svg,
.post:hover .post__art img { transform: scale(1.06); }
.post__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post__cat {
  align-self: flex-start;
  padding: .25rem .7rem;
  background: var(--sky-50);
  color: var(--sky-700);
  border-radius: var(--r-pill);
  font-size: .74rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.post h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.post p { font-size: .9rem; color: var(--text-soft); margin-bottom: 1.1rem; }
/* Fundador em destaque no hero de /sobre: retrato 3x4 ao lado da biografia. */
.fundador {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(1.8rem, 1.2rem + 3vw, 3.5rem);
  align-items: center;
  margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.fundador__foto {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  box-shadow: var(--sh-lg);
  display: grid;
  place-items: center;
}
.fundador__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.fundador__iniciais {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
.fundador__texto h1 { margin-bottom: .4rem; }
.fundador__cargo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--sky-400);
  margin-bottom: 1.4rem;
}
.fundador__texto p { color: rgba(255,255,255,.72); }
.fundador__texto p + p { margin-top: .9rem; }
.fundador__texto .lead { color: rgba(255,255,255,.86); }
.fundador__fecho { color: #fff; font-weight: 600; }
.fundador__acoes { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

@media (max-width: 820px) {
  .fundador { grid-template-columns: 1fr; }
  .fundador__foto { width: min(260px, 62vw); margin-inline: auto; }
}

/* Capa do artigo aberto: sobe um pouco sobre o hero escuro, como um cartão. */
.artigo__capa {
  margin-top: clamp(-3.5rem, -2rem - 2vw, -2rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16/9;
  background: var(--ink-800);
}
.artigo__capa img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.04);
}

.post__meta {
  margin-top: auto;
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--text-mute);
}

/* ---------- 20. Formulário multi-etapas ---------- */
.wizard {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.wizard__bar {
  display: flex;
  gap: .4rem;
  padding: 1.2rem clamp(1.3rem, 1rem + 1.4vw, 2.2rem) 0;
}
.wizard__bar i {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--ink-100);
  transition: background-color .45s var(--ease);
}
.wizard__bar i.on { background: linear-gradient(90deg, var(--sky-400), var(--sky-600)); }
.wizard__body { padding: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); }
.wizard__step { display: none; animation: step-in .45s var(--ease); }
.wizard__step.on { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.wizard__step > .eyebrow { margin-bottom: .7rem; }
.wizard__step h3 { margin-bottom: 1.4rem; }
.wizard__nav {
  display: flex;
  gap: .7rem;
  justify-content: space-between;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.wizard__nav .btn { flex: none; }
.form-error { color: #C2410C; font-size: .84rem; margin-top: .5rem; display: none; }
.form-error.on { display: block; }

/* ---------- 20b. Globo dos destinos ---------- */
/* O globo mora dentro do hero de /destinos, ao lado do texto. Em telas
   estreitas ele desce para baixo do texto e diminui. */
.hero-globo {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 420px);
  gap: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  align-items: center;
}
.hero-globo__texto { min-width: 0; }
/* Coluna mais estreita que o hero normal: as quebras do <h1> em destinos.php
   são explícitas justamente por isso. */

.globo { position: relative; }
.globo__canvas {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  cursor: grab;
  touch-action: none;              /* o arrasto gira o globo, não rola a página */
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.globo__canvas.is-pronto { opacity: 1; }

@media (max-width: 900px) {
  .hero-globo { grid-template-columns: 1fr; }
  .globo { margin-top: .5rem; }
  .globo__canvas { max-width: 340px; }
}

/* ---------- 21. Footer ---------- */
.footer {
  position: relative;
  background: var(--ink-950);
  color: rgba(255,255,255,.66);
  padding-top: clamp(3.5rem, 2.4rem + 3.5vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.footer::before {
  content: '';
  position: absolute;
  inset: -30% -20% auto auto;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,100,2,.16), transparent 64%);
  z-index: -1;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer__brand img { height: 54px; width: auto; margin-bottom: 1.2rem; }
.footer__brand p { font-size: .92rem; line-height: 1.7; max-width: 34ch; }
.footer h4 {
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer__links { display: grid; gap: .65rem; }
.footer__links a { font-size: .93rem; transition: color .25s, padding-left .25s var(--ease); }
.footer__links a:hover { color: var(--sky-400); padding-left: 5px; }

.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--sky-500); border-color: var(--sky-500); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .83rem;
  color: rgba(255,255,255,.45);
}
.footer__bar a:hover { color: var(--sky-400); }

/* Endereço com atalho para o Google Maps */
.footer__maps { display: block; transition: color .25s; }
.footer__maps:hover { color: var(--sky-400); }
.footer__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .9rem;
  padding: .5rem .9rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.06);
  font-size: .84rem;
  font-weight: 600;
  color: #fff;
  transition: all .3s var(--ease);
}
.footer__maps-btn svg { width: 16px; height: 16px; }
.footer__maps-btn:hover { background: var(--sky-500); border-color: var(--sky-500); transform: translateY(-2px); }

/* ---------- 22. WhatsApp flutuante ---------- */
.wa {
  position: fixed;
  right: clamp(1rem, .5rem + 1.5vw, 1.75rem);
  bottom: clamp(1rem, .5rem + 1.5vw, 1.75rem);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.25rem .7rem .8rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  box-shadow: 0 16px 38px -12px rgba(37,211,102,.7);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wa:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 22px 46px -12px rgba(37,211,102,.85); }
.wa__ico {
  position: relative;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: none;
}
.wa__ico::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.9); opacity: .8; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
.wa svg { width: 24px; height: 24px; position: relative; }
@media (max-width: 560px) {
  .wa__label { display: none; }
  .wa { padding: .8rem; }
}

/* ---------- 22b. Prosa (corpo dos artigos) ---------- */
.prose {
  font-size: clamp(1.02rem, .98rem + .25vw, 1.12rem);
  line-height: 1.82;
  color: var(--ink-800);
}
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.85rem);
  margin-top: 2.6rem;
  padding-top: .3rem;
  color: var(--ink-900);
}
.prose h2 + p { margin-top: .9rem; }
.prose h3 { font-size: 1.2rem; margin-top: 2rem; }
.prose strong, .prose b { color: var(--ink-900); font-weight: 600; }
.prose a { color: var(--sky-600); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--sky-500); }
.prose ul { margin-left: 1.1rem; }
.prose ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: .55rem;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky-500);
}
.prose blockquote {
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--sky-500);
  background: var(--sky-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--ink-800);
  font-size: 1.02em;
}
.prose .form-note {
  padding: 1.1rem 1.3rem;
  background: var(--ink-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ---------- 23. Animações de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 24. Responsivo ---------- */
@media (max-width: 1080px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: grid; }
  .header__inner { justify-content: space-between; }
  .header__cta { margin-left: auto; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 520px; }
  .hero { min-height: auto; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 620px) {
  .header__cta .btn { padding: .6rem 1.05rem; font-size: .88rem; }
  .hero__proof { gap: 1.6rem 2rem; }
  .cta { padding-inline: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
