/* Fontes locais de display: arquivos WOFF2 leves, sem dependência externa. */
@font-face {
  font-family: 'Garet';
  src: url('../fonts/garet/Garet-Book.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/the-seasons/TheSeasons-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #001524;
  --ink-soft: #18313c;
  --teal: #15616d;
  --cream: #ffecd1;
  --orange: #ff7d00;
  --clay: #78290f;
  --black: #111111;
  --paper: #ffffff;
  --line: rgba(0, 21, 36, 0.12);
  --muted: #63727a;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-soft: 0 22px 70px rgba(0, 21, 36, 0.10);
  --shadow-card: 0 16px 40px rgba(0, 21, 36, 0.10);
  --font-body: 'Poppins', Arial, sans-serif;
  --font-display: 'Garet', 'Poppins', Arial, sans-serif;
  --font-expedition: 'The Seasons', Georgia, serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; }
button { cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button:disabled { cursor: not-allowed; opacity: .58; }
::selection { color: var(--cream); background: var(--teal); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-shell { min-width: 0; overflow: hidden; overflow: clip; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.container.narrow { width: min(820px, calc(100% - 48px)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.eyebrow.inverse { color: var(--cream); }
.display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .88;
  text-wrap: balance;
}
.display em { color: inherit; font-family: inherit; font-style: normal; font-weight: inherit; }
.section-heading { margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 400; letter-spacing: -.035em; line-height: 1; text-wrap: balance; }
.section-heading em { color: var(--teal); font-family: inherit; font-style: normal; font-weight: inherit; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--teal); font-size: .87rem; font-weight: 700; }
.text-link i { width: 16px; text-align: center; transition: transform .25s ease; }
.text-link:hover i { transform: scale(1.08); }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled, .site-header.detail-header {
  background: rgba(255,255,255,.88);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0,21,36,.05);
  backdrop-filter: blur(18px);
}
.skip-link { position: fixed; z-index: 200; top: 10px; left: 14px; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: white; font-size: .78rem; font-weight: 700; transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand-logo { display: block; width: 210px; height: 68px; max-width: 100%; object-fit: contain; object-position: left center; transition: filter .25s ease; }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--ink-soft); font-size: .76rem; font-weight: 600; }
.nav-links a { position: relative; padding-block: 8px; }
.nav-links a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--teal); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 18px; border: 1px solid rgba(0,21,36,.12); border-radius: 12px; appearance: none; background: var(--ink); color: white; font-size: .75rem; font-weight: 700; letter-spacing: -.01em; box-shadow: 0 5px 14px rgba(0,21,36,.12); transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.nav-cta > i { width: 17px; font-size: 1rem; line-height: 1; text-align: center; }
.nav-cta:hover { border-color: var(--teal); background: var(--teal); box-shadow: 0 8px 18px rgba(21,97,109,.18); transform: translateY(-1px); }
.nav-cta:active { box-shadow: 0 2px 8px rgba(0,21,36,.12); transform: scale(.985); }
.menu-toggle { display: none; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 16px; height: 1px; margin: auto; background: currentColor; transition: transform .25s ease; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { position: absolute; left: 0; content: ''; }
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }
.site-header:not(.scrolled):not(.detail-header) .brand-logo { filter: brightness(0) invert(1); }
.site-header:not(.scrolled):not(.detail-header) .nav-links { color: rgba(255,255,255,.86); }
.site-header:not(.scrolled):not(.detail-header) .nav-links a::after { background: var(--cream); }
.site-header:not(.scrolled):not(.detail-header) .nav-cta { border-color: rgba(255,255,255,.18); background: rgba(0,21,36,.68); backdrop-filter: blur(14px); }
.site-header:not(.scrolled):not(.detail-header) .menu-toggle { border-color: rgba(255,255,255,.42); color: white; }

.hero-home { position: relative; display: flex; min-height: 700px; padding: 140px 0 70px; align-items: center; overflow: hidden; background: var(--ink); color: white; isolation: isolate; }
.hero-home-media, .hero-home-overlay { position: absolute; inset: 0; }
.hero-home-media { z-index: -2; overflow: hidden; background: var(--ink); }
.hero-home-poster, .hero-home-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-home-poster-mobile { display: none; }
.hero-home-video { z-index: 1; opacity: 0; transition: opacity .7s cubic-bezier(.22, 1, .36, 1); }
.hero-home-video.is-playing { opacity: 1; }
.hero-home-overlay { z-index: -1; background: linear-gradient(90deg, rgba(0,21,36,.9) 0%, rgba(0,21,36,.76) 38%, rgba(0,21,36,.34) 70%, rgba(0,21,36,.2) 100%), linear-gradient(180deg, rgba(0,21,36,.14) 35%, rgba(0,21,36,.48) 100%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); align-items: center; gap: 74px; }
.hero-copy { max-width: 700px; }
.hero-copy .eyebrow { margin-bottom: 25px; }
.hero-home .eyebrow { color: var(--cream); }
.hero-home .display { max-width: 700px; font-size: clamp(2.8rem, 4.35vw, 4.55rem); line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.hero-home .display em { font-family: var(--font-expedition); font-weight: 400; letter-spacing: -.02em; }
.hero-copy h1 { color: white; text-shadow: 0 3px 24px rgba(0,21,36,.16); }
.hero-copy h1 em { color: var(--orange); }
.hero-copy p { max-width: 530px; margin: 26px 0 0; color: rgba(255,255,255,.78); font-size: 1.06rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 19px; border: 1px solid transparent; border-radius: 12px; appearance: none; font-size: .8rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease; }
.button > i { width: 18px; font-size: .98rem; line-height: 1; text-align: center; }
.button:hover { transform: translateY(-1px); }
.button:active { transform: scale(.985); }
.button:focus-visible, .nav-cta:focus-visible, .leader-instagram:focus-visible { outline-offset: 3px; }
.button-primary { background: var(--ink); color: white; box-shadow: 0 5px 14px rgba(0,21,36,.13); }
.button-primary:hover { background: var(--teal); box-shadow: 0 8px 18px rgba(21,97,109,.18); }
.button-light { border-color: var(--line); background: rgba(255,255,255,.35); color: var(--ink); }
.button-light:hover { border-color: var(--teal); background: white; color: var(--teal); }
.button-orange { background: var(--orange); color: var(--black); box-shadow: 0 5px 14px rgba(255,125,0,.18); }
.button-orange:hover { background: #e96f00; color: var(--black); box-shadow: 0 8px 18px rgba(255,125,0,.24); }
.hero-home .button-primary { background: white; color: var(--ink); box-shadow: 0 8px 28px rgba(0,21,36,.2); }
.hero-home .button-primary:hover { background: var(--orange); color: var(--ink); box-shadow: 0 12px 30px rgba(255,125,0,.22); }
.hero-home .button-light { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(12px); }
.hero-home .button-light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.16); color: white; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 35px; color: rgba(255,255,255,.67); font-size: .71rem; }
.hero-note strong { color: white; }
.tiny-avatars { display: flex; flex: 0 0 auto; isolation: isolate; }
.tiny-avatars img { width: 30px; height: 30px; margin-left: -8px; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; object-fit: cover; object-position: center; box-shadow: 0 4px 12px rgba(0,21,36,.18); }
.tiny-avatars img:first-child { z-index: 3; margin-left: 0; }
.tiny-avatars img:nth-child(2) { z-index: 2; }
.tiny-avatars img:nth-child(3) { z-index: 1; }
.image-fill img { width: 100%; height: 100%; object-fit: cover; }

.trust-strip { padding: 24px 0; border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; padding-right: 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { font-family: var(--font-display); font-size: 2.3rem; font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.trust-item span { color: var(--muted); font-size: .72rem; line-height: 1.35; }

.section { padding: 118px 0; }
.section-sm { padding: 78px 0; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.section-header > div:first-child { max-width: 650px; }
.section-header .eyebrow { margin-bottom: 18px; }
.section-header p { max-width: 500px; margin: 18px 0 0; color: var(--muted); }
.section-header .text-link { margin-bottom: 7px; }

.expedition-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.expedition-card { position: relative; grid-column: span 4; min-height: 480px; overflow: hidden; border-radius: var(--radius-md); background: var(--ink); color: white; box-shadow: 0 0 0 rgba(0,21,36,0); transition: box-shadow .3s ease, transform .3s ease; }
.expedition-card:nth-child(3n + 2) { grid-column: span 5; }
.expedition-card:nth-child(3n + 3) { grid-column: span 3; min-height: 480px; }
.expedition-card:nth-child(4n + 1) { min-height: 580px; }
.expedition-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,21,36,.02) 35%, rgba(0,21,36,.9) 100%); content: ''; }
.expedition-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.expedition-card:hover img { transform: scale(1.06); }
.expedition-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.expedition-card:focus-visible { outline-offset: 5px; }
.card-top, .card-bottom { position: absolute; z-index: 1; right: 23px; left: 23px; }
.card-top { top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-year { position: absolute; z-index: 1; top: 38px; right: 20px; color: rgba(255,255,255,.25); font-size: clamp(4.3rem, 8vw, 7rem); font-weight: 700; letter-spacing: -.1em; line-height: .8; pointer-events: none; white-space: nowrap; }
.card-tag { padding: 7px 10px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(0,21,36,.28); backdrop-filter: blur(10px); color: white; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card-bottom { bottom: 24px; }
.card-bottom .eyebrow { color: var(--cream); font-size: .6rem; }
.card-bottom h3 { margin: 11px 0 5px; font-family: var(--font-expedition); font-size: 2.65rem; font-weight: 400; letter-spacing: -.025em; line-height: .92; }
.card-bottom p { max-width: 330px; margin: 0; color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.55; }
.card-arrow { position: absolute; right: 0; bottom: 2px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 11px; background: rgba(255,255,255,.16); backdrop-filter: blur(10px); color: white; font-size: 1rem; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease, background .25s ease; }
.expedition-card:hover .card-arrow { opacity: 1; transform: translateY(0); }
.expedition-card:focus-visible .card-arrow { opacity: 1; transform: translateY(0); }
.availability-bar { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--muted); font-size: .75rem; }
.availability-bar strong { color: var(--teal); }

.manifesto { position: relative; padding: 130px 0; overflow: hidden; background: var(--ink); color: white; }
.manifesto::before { position: absolute; top: -280px; right: -160px; width: 680px; height: 680px; border: 1px solid rgba(255,236,209,.15); border-radius: 50%; content: ''; }
.manifesto-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.manifesto .section-heading { max-width: 440px; color: white; }
.manifesto .section-heading em { color: var(--cream); }
.manifesto .section-heading em,
.principles-section .section-heading em,
.home-cta .section-heading em { font-family: var(--font-expedition); font-weight: 400; letter-spacing: -.02em; }
.manifesto-copy p { max-width: 620px; margin: 0 0 19px; color: rgba(255,255,255,.68); font-size: 1.06rem; line-height: 1.8; }
.manifesto-copy p:last-child { margin-bottom: 0; }
.manifesto-signature { margin-top: 38px; color: var(--cream); font-family: var(--font-display); font-size: 1.35rem; font-style: normal; font-weight: 400; }
.manifesto-media { position: relative; min-height: 505px; }
.manifesto-media .image-fill { position: absolute; right: 0; width: 75%; height: 470px; overflow: hidden; border-radius: 14px; }
.manifesto-media .image-fill::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,21,36,.58)); content: ''; }
.manifesto-caption { position: absolute; bottom: 0; left: 0; z-index: 1; width: 64%; padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.09); backdrop-filter: blur(16px); }
.manifesto-caption p { margin: 0; color: white; font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; line-height: 1.2; }
.manifesto-caption small { display: block; margin-top: 16px; color: var(--cream); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.home-gallery-section { padding: 88px 0 12px; background: white; }
.home-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: repeat(2, 230px); grid-template-areas: "ga ga gb gb gc gc" "ga ga gd ge ge gf"; gap: 14px; }
.home-gallery-item { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; isolation: isolate; border-radius: 16px; background: #eef0ed; }
.home-gallery-item:nth-child(1) { grid-area: ga; }
.home-gallery-item:nth-child(2) { grid-area: gb; }
.home-gallery-item:nth-child(3) { grid-area: gc; }
.home-gallery-item:nth-child(4) { grid-area: gd; }
.home-gallery-item:nth-child(5) { grid-area: ge; }
.home-gallery-item:nth-child(6) { grid-area: gf; }
.home-gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.8,.2,1); }
@media (hover: hover) { .home-gallery-item:hover img { transform: scale(1.035); } }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.principle { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.principle-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: rgba(255,125,0,.10); color: var(--orange); font-size: .92rem; }
.principle h3 { margin: 25px 0 9px; font-size: 1.18rem; letter-spacing: -.03em; line-height: 1.25; }
.principle p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.65; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 23px 0; border: 0; background: transparent; color: var(--ink); font-size: 1rem; font-weight: 600; text-align: left; }
.faq-plus { position: relative; flex: 0 0 25px; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 50%; }
.faq-plus::before, .faq-plus::after { position: absolute; top: 11px; left: 7px; width: 9px; height: 1px; background: var(--teal); content: ''; transition: transform .25s ease; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item.is-open .faq-plus::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); font-size: .88rem; line-height: 1.75; opacity: 0; transition: max-height .35s ease, opacity .35s ease; }
.faq-answer-inner { padding: 0 48px 23px 0; }
.faq-item.is-open .faq-answer { max-height: 2000px; opacity: 1; }

.home-cta { padding: 0 0 118px; }
.home-cta-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .64fr); align-items: center; gap: clamp(42px, 7vw, 88px); overflow: hidden; padding: 64px 60px 64px 72px; border-radius: var(--radius-lg); background: var(--cream); }
.home-cta-card::after { position: absolute; right: -110px; bottom: -240px; width: 500px; height: 500px; border: 1px solid rgba(21,97,109,.22); border-radius: 50%; content: ''; pointer-events: none; }
.home-cta-card > * { position: relative; z-index: 1; }
.home-cta-content { position: relative; z-index: 1; max-width: 590px; }
.home-cta-content .section-heading { margin: 16px 0 18px; }
.home-cta-content p { max-width: 530px; margin: 0 0 29px; color: var(--ink-soft); }
.home-cta-media { position: relative; min-height: 360px; margin: -18px -8px -18px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.58); border-radius: 48% 48% 20% 48% / 38% 52% 25% 58%; background: #dbe1dc; box-shadow: 0 24px 55px rgba(0,21,36,.15); transform: rotate(1.5deg); }
.home-cta-media::after { position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.52); border-radius: inherit; content: ''; pointer-events: none; }
.home-cta-media img { position: absolute; inset: -3%; width: 106%; height: 106%; max-width: none; object-fit: cover; object-position: 58% center; transform: rotate(-1.5deg); }

.site-footer { padding: 64px 0 30px; background: #f9f7f2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 45px; padding-bottom: 60px; }
.footer-brand p { max-width: 280px; margin: 20px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.75; }
.footer-title { margin-bottom: 18px; color: var(--ink); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .8rem; }
.footer-links a:hover { color: var(--teal); }
.footer-links a:focus-visible, .footer-link-button:focus-visible { color: var(--teal); }
.footer-link-button { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-align: left; }
.footer-link-button:hover { color: var(--teal); }
.footer-instagram { display: flex; align-items: center; gap: 12px; width: 100%; padding: 13px; border: 1px solid rgba(21,97,109,.16); border-radius: 14px; background: rgba(255,255,255,.78); color: var(--ink); box-shadow: 0 8px 22px rgba(0,21,36,.05); transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease; }
.footer-instagram > i { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: #eaf4f2; color: var(--teal); font-size: 1.15rem; }
.footer-instagram span { display: grid; line-height: 1.25; }
.footer-instagram strong { font-size: .74rem; font-weight: 700; }
.footer-instagram small { margin-top: 3px; color: var(--muted); font-size: .65rem; }
.footer-instagram:hover { border-color: rgba(21,97,109,.38); background: #f1f8f6; color: var(--teal); box-shadow: 0 10px 25px rgba(21,97,109,.10); transform: translateY(-1px); }
.footer-instagram:active { transform: scale(.985); }
.footer-instagram:focus-visible { outline-offset: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }
.footer-bottom a { color: var(--ink); font-weight: 700; transition: color .2s ease; }
.footer-bottom a:hover { color: var(--teal); }
.footer-bottom a:focus-visible { outline-width: 2px; outline-offset: 3px; }

/* Nas expedições, The Seasons aparece apenas nos dois títulos de abertura. */
body[data-expedition] .detail-hero .display,
body[data-expedition] .detail-main-intro .section-heading {
  font-family: var(--font-expedition);
  font-weight: 400;
  letter-spacing: -.025em;
}

.detail-hero { position: relative; min-height: 720px; display: flex; align-items: end; padding: 165px 0 60px; overflow: hidden; color: white; }
.detail-hero-bg, .detail-hero-overlay { position: absolute; inset: 0; }
.detail-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay { background: linear-gradient(180deg, rgba(0,21,36,.12), rgba(0,21,36,.86) 92%); }
.detail-hero-content { position: relative; z-index: 1; width: 100%; padding-inline: clamp(24px, 4vw, 72px); }
.detail-hero-copy { min-width: 0; flex: 1 1 auto; }
.detail-hero .eyebrow { color: var(--cream); }
.detail-hero h1 { max-width: 880px; margin: 20px 0 20px; }
.detail-hero .hero-subtitle { max-width: 610px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.16rem; line-height: 1.65; }
.detail-hero-meta-row { display: grid; grid-template-columns: minmax(0, 680px) minmax(290px, 350px); gap: clamp(24px, 4vw, 60px); align-items: stretch; justify-content: space-between; margin-top: 42px; }
.detail-hero-download { display: grid; grid-column: 2; grid-row: 1; grid-template-columns: 46px minmax(0, 1fr) 20px; align-items: center; gap: 14px; width: 100%; min-height: 78px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.72); border-radius: 16px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 18px 45px rgba(0,21,36,.26); backdrop-filter: blur(18px); transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.detail-hero-download > i:first-child { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 12px; background: #e8f2f1; color: var(--teal); font-size: 1.08rem; }
.detail-hero-download > i:last-child { color: var(--teal); font-size: .88rem; transition: transform .22s ease; }
.detail-hero-download span { display: grid; gap: 2px; }
.detail-hero-download small { color: var(--muted); font-size: .58rem; font-weight: 650; letter-spacing: .035em; }
.detail-hero-download strong { font-size: .92rem; font-weight: 750; letter-spacing: -.015em; }
.detail-hero-download:hover { border-color: white; background: white; box-shadow: 0 22px 55px rgba(0,21,36,.32); transform: translateY(-2px); }
.detail-hero-download:hover > i:last-child { transform: translateY(2px); }
.detail-hero-download:focus-visible { outline-offset: 4px; }
.detail-facts { display: grid; grid-column: 1; grid-row: 1; grid-template-columns: repeat(3, 1fr); gap: 1px; width: 100%; max-width: 680px; margin: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.18); backdrop-filter: blur(13px); }
.detail-fact { padding: 18px 19px; background: rgba(0,21,36,.28); }
.detail-fact small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.56); font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.detail-fact strong { font-size: .88rem; font-weight: 600; }
.detail-main-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
.hero-grid > *, .manifesto-grid > *, .detail-main-intro > *, .leader-layout > *, .dates-grid > * { min-width: 0; }
.detail-intro-copy h2 { margin: 15px 0 25px; }
.detail-intro-copy p { margin: 0 0 17px; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.detail-intro-media { min-height: 540px; overflow: hidden; border-radius: 20px; background: var(--ink); }
.detail-intro-media img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.detail-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 24px; margin-top: 40px; }
.highlight { display: flex; gap: 14px; }
.highlight-mark { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--cream); color: var(--teal); font-size: .78rem; font-weight: 700; }
.highlight h3 { margin: 0 0 2px; font-size: .86rem; }
.highlight p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.expedition-video-section { padding-top: 0; padding-bottom: 100px; }
.video-shell { max-width: 1050px; margin-inline: auto; padding: 10px; border: 1px solid rgba(0,21,36,.1); border-radius: 26px; background: linear-gradient(145deg, #fff, #eef3f1); box-shadow: 0 28px 80px rgba(0,21,36,.12); }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: var(--ink); }
.video-frame::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; content: ''; pointer-events: none; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.leader-section { padding-top: 30px; }
.leader-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.leader-photo { position: relative; height: 560px; overflow: hidden; border-radius: 20px; background: var(--ink); }
.leader-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,21,36,.48)); content: ''; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-copy .eyebrow { color: var(--clay); }
.leader-copy h2 { max-width: 580px; margin: 17px 0 23px; }
.leader-copy .leader-role { margin: 0 0 28px; color: var(--teal); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.leader-copy .leader-bio { max-width: 560px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.85; }
.leader-quote { max-width: 500px; margin: 30px 0 0; padding-left: 20px; border-left: 2px solid var(--orange); color: var(--ink-soft); font-size: 1.15rem; font-weight: 600; line-height: 1.45; }
.leader-languages { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.leader-languages span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .66rem; }
.leader-instagram { display: inline-grid; width: 44px; height: 44px; margin-top: 28px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: white; color: var(--ink); box-shadow: 0 3px 10px rgba(0,21,36,.06); transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease; }
.leader-instagram i { font-size: 1.22rem; line-height: 1; }
.leader-instagram:hover { border-color: var(--ink); background: var(--ink); color: white; box-shadow: 0 6px 16px rgba(0,21,36,.14); transform: translateY(-1px); }
.leader-instagram:active { transform: scale(.97); }

.detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; aspect-ratio: 4 / 3; border: 0; border-radius: 14px; appearance: none; background: var(--ink); cursor: zoom-in; }
.gallery-item:focus-visible { outline-offset: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-lightbox { position: fixed; z-index: 120; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; overflow: hidden; background: rgba(0,12,20,.88); cursor: zoom-out; opacity: 0; pointer-events: none; transition: opacity .24s ease; }
.gallery-lightbox.is-open { opacity: 1; pointer-events: auto; }
.gallery-lightbox img { display: block; flex: 0 1 auto; width: auto; height: auto; min-width: 0; min-height: 0; max-width: calc(100vw - 48px); max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); object-fit: contain; cursor: default; opacity: 0; transform: scale(.985); transition: opacity .24s ease, transform .24s cubic-bezier(.22, 1, .36, 1); }
.gallery-lightbox.is-open img { opacity: 1; transform: scale(1); }
body.lightbox-open { overflow: hidden; }

.itinerary-section { background: #f8f7f3; }
.itinerary-layout { display: block; }
.itinerary-intro { max-width: 730px; margin-bottom: 58px; }
.itinerary-intro h2 { margin: 16px 0 17px; }
.itinerary-intro p { max-width: 650px; margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.itinerary-list { border-top: 1px solid var(--line); }
.day-item { border-bottom: 1px solid var(--line); }
.day-trigger { display: grid; grid-template-columns: 74px 1fr 25px; align-items: center; gap: 18px; width: 100%; padding: 23px 0; border: 0; background: transparent; color: var(--ink); text-align: left; }
.day-number { color: var(--teal); font-family: var(--font-body); font-size: .86rem; font-weight: 700; white-space: nowrap; }
.day-title { font-size: .96rem; font-weight: 700; }
.day-trigger .day-icon { position: relative; width: 21px; height: 21px; border: 1px solid var(--line); border-radius: 50%; }
.day-trigger .day-icon::before, .day-trigger .day-icon::after { position: absolute; top: 9px; left: 5px; width: 8px; height: 1px; background: var(--teal); content: ''; transition: transform .25s ease; }
.day-trigger .day-icon::after { transform: rotate(90deg); }
.day-item.is-open .day-trigger .day-icon::after { transform: rotate(0); }
.day-body { max-height: 0; overflow: hidden; color: var(--muted); opacity: 0; transition: max-height .35s ease, opacity .35s ease; }
.day-body p { margin: 0; padding: 0 43px 24px 82px; font-size: .85rem; line-height: 1.8; }
.day-item.is-open .day-body { max-height: 3000px; opacity: 1; }

.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.included-card { padding: 33px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.included-card.included { background: var(--ink); color: white; }
.included-card h3 { margin: 0 0 24px; font-size: 1.25rem; letter-spacing: -.04em; }
.included-card ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.included-card li { position: relative; padding-left: 23px; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.included-card.included li { color: rgba(255,255,255,.72); }
.included-card li::before { position: absolute; top: .55em; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); content: ''; }
.included-card.not-included li::before { width: 9px; height: 1px; border-radius: 0; background: var(--clay); }

.dates-section { position: relative; padding-top: 100px; padding-bottom: 125px; overflow: hidden; isolation: isolate; background: var(--ink); }
.dates-section-background,
.dates-section-overlay { position: absolute; inset: 0; pointer-events: none; }
.dates-section-background { z-index: -2; }
.dates-section-background img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.025); }
.dates-section-overlay { z-index: -1; background: linear-gradient(115deg, rgba(0,21,36,.9) 0%, rgba(0,21,36,.72) 48%, rgba(21,97,109,.58) 100%), linear-gradient(180deg, rgba(0,21,36,.14), rgba(0,21,36,.58)); }
.dates-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.dates-left { display: grid; gap: 18px; min-width: 0; }
.dates-panel { padding: clamp(34px, 4.5vw, 54px); border: 1px solid rgba(255,255,255,.56); border-radius: 25px; background: rgba(255,255,255,.95); color: var(--ink); box-shadow: 0 28px 80px rgba(0,21,36,.22); backdrop-filter: blur(18px); }
.dates-panel .eyebrow { color: var(--teal); }
.dates-panel-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr); gap: clamp(30px, 6vw, 90px); align-items: end; margin-bottom: 31px; }
.dates-panel h2 { margin: 15px 0 0; color: var(--ink); font-size: clamp(2rem, 4vw, 3.3rem); }
.dates-panel-header > p { max-width: 490px; margin: 0 0 3px; color: var(--muted); font-size: .88rem; line-height: 1.72; }
.date-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 11px; }
.date-option { display: grid; grid-template-columns: 59px 1fr auto; gap: 14px; align-items: center; width: 100%; padding: 13px; border: 1px solid rgba(0,21,36,.1); border-radius: 13px; background: white; color: var(--ink); text-align: left; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.date-option:hover, .date-option.is-selected { border-color: var(--teal); background: #f3faf8; box-shadow: 0 8px 22px rgba(21,97,109,.08); }
.date-calendar { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 47px; height: 47px; border-radius: 9px; background: var(--cream); color: var(--ink); line-height: 1; }
.date-calendar .date-month { display: block; color: var(--clay); font-size: .48rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.date-calendar strong { display: block; margin-top: 3px; color: var(--ink); font-size: 1.2rem; font-weight: 700; }
.date-copy strong { display: block; font-size: .84rem; }
.date-copy span { display: block; margin-top: 3px; color: var(--muted); font-size: .66rem; }
.date-option .availability { color: var(--teal); font-size: .64rem; font-weight: 700; text-align: right; }
.brochure-card { position: relative; display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 22px; overflow: hidden; border: 1px solid rgba(21,97,109,.2); border-radius: 19px; background: linear-gradient(120deg, #fff 0%, #f3f8f7 54%, #e4f0ed 100%); box-shadow: 0 16px 42px rgba(21,97,109,.08); }
.brochure-card::after { position: absolute; top: -90px; right: -64px; width: 180px; height: 180px; border: 1px solid rgba(21,97,109,.15); border-radius: 50%; content: ''; pointer-events: none; }
.brochure-icon { position: relative; z-index: 1; display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(21,97,109,.13); border-radius: 16px; background: rgba(255,255,255,.78); color: var(--teal); font-size: 1.35rem; box-shadow: 0 8px 20px rgba(0,21,36,.06); }
.brochure-copy { position: relative; z-index: 1; min-width: 0; display: grid; gap: 3px; }
.brochure-kicker { color: var(--teal); font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.brochure-copy strong { color: var(--ink); font-size: .95rem; letter-spacing: -.025em; line-height: 1.25; }
.brochure-copy small { max-width: 410px; color: var(--muted); font-size: .68rem; line-height: 1.5; }
.brochure-button { position: relative; z-index: 1; min-height: 49px; padding-inline: 20px; border-color: transparent; background: var(--teal); color: white; box-shadow: 0 9px 22px rgba(21,97,109,.2); white-space: nowrap; }
.brochure-button > i { width: 16px; }
.brochure-button:hover { border-color: transparent; background: var(--ink); color: white; box-shadow: 0 13px 27px rgba(0,21,36,.2); transform: translateY(-2px); }
.price-card { position: static; padding: clamp(34px, 4.5vw, 54px); border: 1px solid rgba(255,255,255,.56); border-radius: 25px; background: rgba(251,252,252,.96); box-shadow: 0 28px 80px rgba(0,21,36,.22); backdrop-filter: blur(18px); }
.price-card-header { display: grid; grid-template-columns: minmax(230px, .65fr) minmax(390px, 1.35fr); gap: clamp(30px, 6vw, 90px); align-items: end; margin-bottom: 28px; }
.price-card .eyebrow { color: var(--teal); }
.price-card h3 { margin: 17px 0 4px; font-size: 1.55rem; letter-spacing: -.04em; }
.price-date-label { margin: 0; color: var(--muted); font-size: .8rem; }
.selection-intro { margin: 0; padding: 18px 20px; border-left: 2px solid var(--teal); border-radius: 0 12px 12px 0; background: #edf4f2; color: var(--ink-soft); }
.selection-intro strong { display: block; margin-bottom: 5px; font-size: .86rem; }
.selection-intro span { display: block; color: var(--muted); font-size: .77rem; line-height: 1.6; }
.price-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 13px; margin-bottom: 28px; }
.price-option { position: relative; display: block; align-self: stretch; width: 100%; min-height: 315px; padding: 23px 50px 23px 23px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; color: var(--ink); text-align: left; transition: border .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease; }
.price-option:hover { border-color: rgba(21,97,109,.48); box-shadow: 0 9px 24px rgba(0,21,36,.06); transform: translateY(-1px); }
.price-option.is-selected { border-color: var(--teal); background: #f1f7f5; box-shadow: 0 11px 30px rgba(21,97,109,.11); }
.price-copy { position: relative; z-index: 1; display: flex; min-width: 0; height: 100%; flex-direction: column; }
.package-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.package-tier { display: block; margin: 0 0 3px; color: var(--muted); font-size: .6rem; font-weight: 650; letter-spacing: .035em; text-transform: uppercase; }
.package-name { display: block; font-size: 1.02rem; font-weight: 750; letter-spacing: -.025em; line-height: 1.2; }
.price-option strong { display: block; margin-top: 10px; font-size: 1.32rem; letter-spacing: -.035em; }
.price-option .option-detail { display: block; max-width: 380px; margin-top: 7px; color: var(--ink-soft); font-size: .76rem; font-weight: 450; line-height: 1.55; }
.option-includes { display: grid; gap: 6px; margin-top: auto; padding-top: 15px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.option-includes > span { display: flex; align-items: flex-start; gap: 7px; }
.option-includes i { flex: 0 0 auto; width: 12px; margin-top: .22em; color: var(--teal); font-size: .58rem; text-align: center; }
.price-option .radio { position: absolute; top: 22px; right: 22px; display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.82); }
.price-option.is-selected .radio { border-color: var(--teal); }
.price-option.is-selected .radio::after { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); content: ''; }
.package-illustration { position: absolute; z-index: 0; right: -15px; bottom: -22px; display: grid; width: 138px; height: 138px; place-items: center; color: rgba(21,97,109,.045); font-size: 6.3rem; line-height: 1; pointer-events: none; transform: rotate(-8deg); transition: color .3s ease, transform .45s cubic-bezier(.22, 1, .36, 1); }
.package-illustration-air { right: -18px; bottom: -25px; font-size: 6.6rem; transform: rotate(-12deg); }
.package-illustration-premium { right: -8px; bottom: -17px; font-size: 5.9rem; transform: rotate(7deg); }
.price-option:hover .package-illustration { color: rgba(21,97,109,.07); transform: rotate(-5deg) translateY(-3px); }
.price-option:hover .package-illustration-air { transform: rotate(-9deg) translate(-2px, -4px); }
.price-option:hover .package-illustration-premium { transform: rotate(4deg) translateY(-3px); }
.price-option.is-selected .package-illustration { color: rgba(21,97,109,.075); }
.on-demand-grid { grid-template-columns: 1fr; }
.on-demand-card { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); grid-template-areas: "intro action" "features features"; gap: clamp(30px, 3.3vw, 44px) clamp(40px, 5vw, 76px); padding: clamp(38px, 5vw, 64px); overflow: hidden; border: 1px solid rgba(255,255,255,.62); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.985), rgba(238,247,245,.965)); color: var(--ink); box-shadow: 0 30px 90px rgba(0,21,36,.28); backdrop-filter: blur(18px); }
.on-demand-card::after { position: absolute; top: -118px; left: -92px; width: 310px; height: 310px; border: 1px solid rgba(21,97,109,.08); border-radius: 50%; box-shadow: 0 0 0 42px rgba(21,97,109,.022), 0 0 0 84px rgba(21,97,109,.014); content: ''; pointer-events: none; }
.on-demand-intro { position: relative; z-index: 1; grid-area: intro; }
.on-demand-intro .eyebrow { color: var(--clay); }
.on-demand-intro h2 { max-width: 720px; margin: 18px 0 18px; color: var(--ink); font-size: clamp(2.25rem, 4.1vw, 3.6rem); line-height: 1.03; }
.on-demand-intro > p { max-width: 720px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.on-demand-features { position: relative; z-index: 1; grid-area: features; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding-top: 4px; }
.on-demand-features > span { position: relative; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: center; gap: 15px; min-height: 112px; padding: 20px 22px; overflow: hidden; border: 1px solid rgba(21,97,109,.1); border-radius: 17px; background: rgba(255,255,255,.73); box-shadow: 0 10px 28px rgba(0,21,36,.035); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.on-demand-features > span::after { position: absolute; right: -18px; bottom: -31px; width: 82px; height: 82px; border: 1px solid rgba(21,97,109,.055); border-radius: 50%; content: ''; }
.on-demand-features > span:hover { border-color: rgba(21,97,109,.22); background: rgba(255,255,255,.92); transform: translateY(-2px); }
.on-demand-features i { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(145deg, #e6f3f0, #d8ebe7); color: var(--teal); font-size: .9rem; box-shadow: inset 0 0 0 1px rgba(21,97,109,.04); }
.on-demand-features strong, .on-demand-features small { display: block; }
.on-demand-features strong { color: var(--ink); font-size: .78rem; line-height: 1.35; }
.on-demand-features small { max-width: 300px; margin-top: 4px; color: var(--muted); font-size: .66rem; line-height: 1.55; }
.on-demand-action { position: relative; z-index: 1; grid-area: action; align-self: stretch; display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: clamp(30px, 3.3vw, 42px); overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: linear-gradient(145deg, var(--ink) 0%, #08323c 62%, #104b53 100%); color: white; box-shadow: 0 20px 50px rgba(0,21,36,.2); }
.on-demand-action::after { position: absolute; right: -78px; bottom: -98px; width: 235px; height: 235px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 29px rgba(255,255,255,.02), 0 0 0 58px rgba(255,255,255,.012); content: ''; pointer-events: none; }
.on-demand-action > div, .on-demand-action > .button { position: relative; z-index: 1; }
.on-demand-action > div { display: grid; gap: 8px; }
.on-demand-price-tag { width: fit-content; margin-bottom: 9px; padding: 7px 10px; border: 1px solid rgba(255,236,209,.22); border-radius: 999px; background: rgba(255,236,209,.09); color: var(--cream); font-size: .56rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.on-demand-action strong { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.15; }
.on-demand-action small { color: rgba(255,255,255,.68); font-size: .7rem; line-height: 1.65; }
.on-demand-action .button { width: 100%; min-height: 58px; padding-inline: 20px; border-color: transparent; background: var(--orange); color: white; box-shadow: 0 12px 30px rgba(255,125,0,.22); }
.on-demand-action .button:hover { border-color: transparent; background: var(--cream); color: var(--ink); }
.interest-list-promise { position: relative; display: flex; align-items: center; gap: 18px; margin-bottom: 28px; padding: 24px; overflow: hidden; border: 1px solid #d7e6e2; border-radius: 17px; background: linear-gradient(135deg, #f2f8f6, #fbf8f1); }
.interest-list-promise::after { position: absolute; right: -25px; bottom: -42px; color: rgba(21,97,109,.045); font-family: "Font Awesome 6 Free"; font-size: 8rem; font-weight: 400; content: '\f0f3'; transform: rotate(-12deg); }
.interest-list-promise > span { position: relative; z-index: 1; }
.interest-list-promise-icon { width: 56px; height: 56px; flex: 0 0 56px; display: grid; place-items: center; border-radius: 16px; background: var(--teal); color: white; font-size: 1.25rem; box-shadow: 0 10px 24px rgba(21,97,109,.2); }
.interest-list-promise strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: .94rem; }
.interest-list-promise small { display: block; max-width: 690px; color: var(--muted); font-size: .74rem; line-height: 1.6; }
.price-action-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.price-card .button { flex: 0 0 auto; min-width: 285px; }
.price-note { max-width: 570px; margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.65; text-align: left; }

.detail-faq { padding-top: 15px; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; padding: 22px; place-items: center; background: rgba(0,21,36,.7); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal { position: relative; width: min(520px, 100%); max-height: min(760px, calc(100vh - 44px)); max-height: min(760px, calc(100dvh - 44px)); overflow-y: auto; padding: 34px; border-radius: 22px; background: white; box-shadow: 0 30px 100px rgba(0,0,0,.22); transform: translateY(15px); transition: transform .25s ease; }
.modal-backdrop.is-open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 17px; right: 17px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.2rem; line-height: 1; }
.modal-close:hover { border-color: var(--teal); background: #f3f6f5; color: var(--teal); }
.modal .eyebrow { color: var(--clay); }
.modal h2 { margin: 15px 35px 8px 0; font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; letter-spacing: -.03em; line-height: .98; }
.modal-intro { margin: 0 0 25px; color: var(--muted); font-size: .79rem; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .69rem; font-weight: 700; }
.field-optional { margin-left: 3px; color: var(--muted); font-size: .6rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink); font-size: .78rem; }
.field input:focus, .field select:focus { border-color: var(--teal); outline: 0; box-shadow: 0 0 0 3px rgba(21,97,109,.1); }
.selection-summary { margin: 20px 0; padding: 15px; border-radius: 12px; background: #f7f5ef; color: var(--ink-soft); font-size: .75rem; line-height: 1.6; }
.selection-summary strong { display: block; color: var(--ink); font-size: .84rem; }
.confirm-row { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0 21px; color: var(--muted); font-size: .7rem; line-height: 1.5; }
.confirm-row input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--teal); }
.lead-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.modal .button { width: 100%; }
.lead-submit-status { min-height: 1.35em; margin: 9px 0 0; color: var(--teal); font-size: .68rem; font-weight: 600; text-align: center; }
.lead-submit-status.is-error { color: var(--clay); }
.modal-footnote { margin: 12px 0 0; color: var(--muted); font-size: .63rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

.no-js-fallback { width: min(720px, calc(100% - 40px)); margin: 140px auto 80px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); }
.no-js-fallback h1 { margin: 0 0 12px; font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1; letter-spacing: -.06em; }
.no-js-fallback p { margin: 0 0 22px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 700px); }
  .nav-links { position: absolute; top: 70px; right: 18px; left: 18px; display: grid; gap: 0; padding: 10px 18px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow-card); opacity: 0; pointer-events: none; transform: translateY(-7px); transition: opacity .25s ease, transform .25s ease; }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-header:not(.scrolled):not(.detail-header) .nav-links.is-open { color: var(--ink-soft); }
  .site-header:not(.scrolled):not(.detail-header) .nav-links.is-open a::after { background: var(--teal); }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border: 0; }
  .nav-actions .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-home { min-height: 690px; padding: 132px 0 78px; }
  .hero-grid, .manifesto-grid, .detail-main-intro, .leader-layout, .dates-grid { grid-template-columns: 1fr; gap: 55px; }
  .dates-grid, .dates-left { gap: 16px; }
  .dates-panel-header, .price-card-header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .on-demand-card { grid-template-columns: 1fr; grid-template-areas: "intro" "features" "action"; }
  .on-demand-action { align-self: auto; gap: 24px; }
  .dates-panel-header > p { margin: 0; }
  .date-list, .price-options { grid-template-columns: 1fr; }
  .price-option { min-height: 0; }
  .price-action-row { align-items: stretch; flex-direction: column; gap: 18px; }
  .price-card .button { width: 100%; min-width: 0; }
  .manifesto-media { order: -1; min-height: 420px; }
  .manifesto-media .image-fill { height: 400px; }
  .manifesto-caption { width: 69%; }
  .home-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(3, 190px); grid-template-areas: "ga ga gb" "ga ga gc" "gd ge gf"; gap: 10px; }
  .detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-cta-card { grid-template-columns: 1fr; gap: 42px; padding: 52px; }
  .home-cta-media { min-height: 360px; margin: 0; }
  .itinerary-intro, .price-card { position: static; }
  .detail-hero-meta-row { grid-template-columns: 1fr; gap: 14px; }
  .detail-hero-download { grid-column: 1; grid-row: 1; min-width: 0; width: min(420px, 100%); }
  .detail-facts { grid-column: 1; grid-row: 2; }
  .leader-photo { height: 470px; }
  .itinerary-intro p { max-width: 550px; }
  .detail-hero { min-height: 650px; }
  .expedition-card, .expedition-card:nth-child(3n + 2), .expedition-card:nth-child(3n + 3) { grid-column: span 6; min-height: 480px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: span 2; }
  .footer-social { grid-column: span 2; }
  .card-arrow { display: none; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 68px; }
  .container { width: min(100% - 30px, 480px); }
  .section { padding: 85px 0; }
  .section-header { display: block; margin-bottom: 32px; }
  .section-header .text-link { margin-top: 20px; }
  .nav-wrap { min-height: 68px; }
  .brand-logo { width: 150px; height: 48px; }
  .hero-home { min-height: 640px; padding: 112px 0 64px; }
  .hero-home-poster-main { display: none; }
  .hero-home-poster-mobile { display: block; }
  .hero-home-overlay { background: linear-gradient(90deg, rgba(0,21,36,.88), rgba(0,21,36,.58)), linear-gradient(180deg, rgba(0,21,36,.2) 25%, rgba(0,21,36,.72) 100%); }
  .hero-home .display { font-size: clamp(2.7rem, 13vw, 3.55rem); line-height: .98; letter-spacing: -.055em; }
  .hero-copy p { margin-top: 22px; font-size: .96rem; line-height: 1.65; }
  .hero-actions .button { width: 100%; }
  .hero-actions { margin-top: 28px; }
  .hero-note { align-items: flex-start; margin-top: 27px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 10px; }
  .trust-item { padding-right: 10px; border-right: 0; }
  .trust-item strong { font-size: 1.9rem; }
  .trust-item span { font-size: .65rem; }
  .expedition-grid { display: grid; grid-template-columns: 1fr; }
  .expedition-card, .expedition-card:nth-child(3n + 2), .expedition-card:nth-child(3n + 3), .expedition-card:nth-child(4n + 1) { grid-column: auto; min-height: 405px; }
  .card-bottom h3 { font-size: 2.15rem; }
  .manifesto { padding: 90px 0; }
  .manifesto-media { min-height: 340px; }
  .manifesto-media .image-fill { height: 320px; width: 82%; }
  .manifesto-caption { width: 78%; padding: 18px; }
  .manifesto-caption p { font-size: 1.25rem; }
  .home-gallery-section { padding: 64px 0 4px; }
  .home-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 225px 155px 155px 225px; grid-template-areas: "ga ga" "gb gc" "gd ge" "gf gf"; gap: 9px; }
  .home-gallery-item { border-radius: 12px; }
  .principles-grid, .included-grid { grid-template-columns: 1fr; }
  .principle { padding: 24px; }
  .home-cta { padding-bottom: 85px; }
  .home-cta-card { padding: 40px 24px; }
  .home-cta-media { min-height: 275px; border-radius: 45% 45% 16% 45% / 34% 48% 20% 54%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand { grid-column: span 2; }
  .footer-social { grid-column: span 2; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .detail-hero { min-height: 620px; padding-bottom: 33px; }
  .detail-hero-content { padding-inline: 0; }
  .detail-hero h1 { font-size: clamp(3.55rem, 18.8vw, 4.6rem); }
  .detail-hero .hero-subtitle { font-size: .95rem; }
  .detail-hero-meta-row { margin-top: 30px; }
  .detail-hero-download { min-height: 70px; padding: 11px 14px; }
  .detail-facts { grid-template-columns: repeat(3, 1fr); width: 100%; margin-top: 0; }
  .detail-fact { padding: 14px; }
  .detail-fact strong { font-size: .76rem; }
  .detail-highlights { gap: 20px 12px; }
  .detail-intro-media, .detail-intro-media img { min-height: 360px; }
  .expedition-video-section { padding-bottom: 78px; }
  .video-shell { padding: 6px; border-radius: 18px; }
  .video-frame { border-radius: 13px; }
  .detail-gallery { grid-template-columns: 1fr 1fr; gap: 9px; }
  .day-trigger { grid-template-columns: 42px 1fr 21px; gap: 10px; }
  .day-body p { padding-left: 52px; }
  .leader-photo { height: 360px; }
  .dates-panel, .price-card, .included-card { padding: 25px 20px; }
  .on-demand-card { gap: 25px; padding: 30px 20px; }
  .on-demand-features { grid-template-columns: 1fr; gap: 10px; }
  .on-demand-features > span { min-height: 0; padding: 17px; }
  .on-demand-action { padding: 24px 20px; }
  .price-option { padding: 18px 48px 18px 18px; }
  .interest-list-promise { align-items: flex-start; padding: 20px; }
  .package-header { align-items: flex-start; }
  .price-option .radio { top: 18px; right: 18px; }
  .brochure-card { grid-template-columns: 52px 1fr; gap: 14px; padding: 18px; }
  .brochure-icon { width: 52px; height: 52px; border-radius: 14px; }
  .brochure-copy strong { font-size: .91rem; }
  .brochure-button { grid-column: 1 / -1; width: 100%; margin-top: 3px; }
  .date-option { grid-template-columns: 50px 1fr; }
  .date-option .availability { grid-column: 2; text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .modal { padding: 27px 20px 22px; }
  .modal h2 { margin-top: 13px; font-size: 2.15rem; line-height: 1; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 24px, 480px); }
  .hero-home { min-height: 620px; padding-top: 104px; }
  .hero-home .display { font-size: 2.72rem; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-hero h1 { font-size: 3.45rem; }
  .detail-fact { padding: 12px 10px; }
  .date-copy strong { font-size: .78rem; }
}

@media (hover: none) {
  .expedition-card:hover { box-shadow: none; transform: none; }
  .expedition-card:hover img { transform: none; }
}

.data-error {
  min-height: 420px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 40px 24px;
  color: var(--muted);
  text-align: center;
}
.data-error strong { color: var(--navy); font-size: 1.2rem; }
.data-error span { max-width: 520px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-home-video { display: none; }
  .gallery-lightbox,
  .gallery-lightbox img { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   CARREIRAS · /vagas
   -------------------------------------------------------------------------- */
.jobs-page { background: #f7f5ef; }
.jobs-hero { position: relative; padding: 150px 0 92px; overflow: hidden; background: linear-gradient(145deg, #f7f5ef 0%, #fff 58%, #edf4f2 100%); }
.jobs-hero::before { position: absolute; top: 80px; right: -150px; width: 460px; height: 460px; border-radius: 50%; background: rgba(255,125,0,.08); content: ''; filter: blur(4px); }
.jobs-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr); align-items: center; gap: clamp(52px, 8vw, 112px); }
.jobs-hero-copy { position: relative; z-index: 2; }
.jobs-hero-copy .eyebrow { margin-bottom: 24px; }
.jobs-hero-copy h1 { max-width: 670px; margin: 0; font-size: clamp(3.45rem, 5.6vw, 6.35rem); letter-spacing: -.05em; line-height: .91; text-wrap: balance; }
.jobs-hero-copy h1 em { display: block; margin-top: 8px; color: var(--teal); font-family: var(--font-expedition); font-style: normal; font-weight: 400; letter-spacing: -.025em; }
.jobs-hero-copy p { max-width: 610px; margin: 30px 0 34px; color: var(--muted); font-size: 1.02rem; line-height: 1.78; }
.jobs-hero-visual { position: relative; justify-self: end; width: min(100%, 490px); padding: 18px 0 28px 30px; }
.jobs-hero-visual::before { position: absolute; z-index: 0; top: 0; right: 22px; bottom: 10px; left: 0; border: 1px solid rgba(21,97,109,.25); border-radius: 170px 170px 30px 30px; content: ''; }
.jobs-hero-visual figure { position: relative; z-index: 1; height: clamp(460px, 48vw, 620px); margin: 0; overflow: hidden; border-radius: 160px 160px 26px 26px; background: #dbe7e3; box-shadow: 0 30px 80px rgba(0,21,36,.16); }
.jobs-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.jobs-hero-stamp { position: absolute; z-index: 2; right: -24px; bottom: 0; display: flex; width: 190px; min-height: 92px; align-items: center; gap: 13px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.55); border-radius: 18px; background: rgba(0,21,36,.93); color: white; box-shadow: 0 18px 45px rgba(0,21,36,.24); backdrop-filter: blur(12px); }
.jobs-hero-stamp i { color: var(--orange); font-size: 1.35rem; }
.jobs-hero-stamp span { font-size: .69rem; font-weight: 600; letter-spacing: .045em; line-height: 1.5; text-transform: uppercase; }

.jobs-values { position: relative; z-index: 2; padding: 30px 0; border-top: 1px solid rgba(0,21,36,.08); border-bottom: 1px solid rgba(0,21,36,.08); background: white; }
.jobs-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.jobs-values article { min-width: 0; display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 16px clamp(18px, 3vw, 36px); border-left: 1px solid var(--line); }
.jobs-values article:first-child { padding-left: 0; border-left: 0; }
.jobs-values article:last-child { padding-right: 0; }
.jobs-values article > span { color: var(--orange); font-size: .69rem; font-weight: 700; letter-spacing: .12em; }
.jobs-values h2 { margin: -3px 0 7px; font-size: 1.12rem; font-weight: 500; letter-spacing: -.02em; }
.jobs-values p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.65; }

.jobs-openings { padding: clamp(86px, 10vw, 132px) 0; scroll-margin-top: 74px; }
.jobs-section-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 430px); align-items: end; gap: 52px; margin-bottom: 48px; }
.jobs-section-header .eyebrow { margin-bottom: 16px; }
.jobs-section-header h2 { margin: 0; font-size: clamp(3rem, 5vw, 5.5rem); letter-spacing: -.045em; line-height: .92; }
.jobs-section-header > p { margin: 0 0 5px; color: var(--muted); font-size: .89rem; line-height: 1.75; }
.jobs-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
.job-card { min-width: 0; }
.job-card > button { width: 100%; min-height: 360px; display: flex; flex-direction: column; align-items: stretch; padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(0,21,36,.11); border-radius: 27px; background: white; color: var(--ink); box-shadow: 0 10px 35px rgba(0,21,36,.045); text-align: left; transition: border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease, transform .28s ease; }
.job-card > button:hover { border-color: var(--teal); background: var(--teal); color: white; box-shadow: 0 24px 65px rgba(21,97,109,.18); transform: translateY(-4px); }
.job-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.job-number { color: var(--orange); font-size: .72rem; font-weight: 700; letter-spacing: .15em; }
.job-location { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(0,21,36,.1); border-radius: 999px; color: var(--teal); font-size: .69rem; font-weight: 700; transition: border-color .28s ease, color .28s ease; }
.job-card > button:hover .job-location { border-color: rgba(255,255,255,.3); color: var(--cream); }
.job-card-copy { margin: auto 0; padding: 42px 0; }
.job-card-copy h3 { margin: 0 0 18px; font-size: clamp(2.05rem, 3.5vw, 3.7rem); letter-spacing: -.045em; line-height: .98; }
.job-card-copy p { max-width: 860px; margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.75; transition: color .28s ease; }
.job-card > button:hover .job-card-copy p { color: rgba(255,255,255,.72); }
.job-card-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid rgba(0,21,36,.1); color: var(--teal); font-size: .77rem; font-weight: 700; transition: border-color .28s ease, color .28s ease; }
.job-card-link i { transition: transform .25s ease; }
.job-card > button:hover .job-card-link { border-color: rgba(255,255,255,.25); color: var(--cream); }
.job-card > button:hover .job-card-link i { transform: translateX(4px); }
.jobs-empty { min-height: 330px; display: grid; place-content: center; justify-items: center; padding: 40px; border: 1px solid var(--line); border-radius: 28px; background: white; text-align: center; }
.jobs-empty i { margin-bottom: 18px; color: var(--teal); font-size: 2rem; }
.jobs-empty h3 { margin: 0 0 8px; font-size: 2rem; }
.jobs-empty p { max-width: 520px; margin: 0; color: var(--muted); }

.jobs-closing { padding: 0 0 110px; }
.jobs-closing-card { position: relative; padding: clamp(42px, 7vw, 82px); overflow: hidden; border-radius: 32px; background: var(--ink); color: white; isolation: isolate; }
.jobs-closing-card::after { position: absolute; z-index: -1; right: -90px; bottom: -180px; width: 430px; height: 430px; border: 1px solid rgba(255,236,209,.22); border-radius: 50%; content: ''; box-shadow: 0 0 0 54px rgba(255,236,209,.04), 0 0 0 108px rgba(255,236,209,.03); }
.jobs-closing-card h2 { max-width: 860px; margin: 20px 0; font-size: clamp(2.55rem, 5vw, 5.15rem); letter-spacing: -.045em; line-height: .94; }
.jobs-closing-card h2 em { color: var(--orange); font-family: var(--font-expedition); font-style: normal; font-weight: 400; letter-spacing: -.02em; }
.jobs-closing-card p { max-width: 600px; margin: 0 0 30px; color: rgba(255,255,255,.7); font-size: .91rem; }
.jobs-closing-card .button-light { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); color: white; }
.jobs-closing-card .button-light:hover { border-color: white; background: white; color: var(--ink); }

.job-modal-backdrop { position: fixed; z-index: 110; inset: 0; display: grid; padding: 22px; place-items: center; background: rgba(0,21,36,.76); backdrop-filter: blur(10px); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.job-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.job-modal { position: relative; width: min(850px, 100%); max-height: min(880px, calc(100vh - 44px)); max-height: min(880px, calc(100dvh - 44px)); overflow-y: auto; border-radius: 26px; background: white; box-shadow: 0 35px 120px rgba(0,0,0,.3); transform: translateY(18px) scale(.99); transition: transform .28s ease; }
.job-modal-backdrop.is-open .job-modal { transform: none; }
.job-modal-close { position: absolute; z-index: 2; top: 22px; right: 22px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(0,21,36,.18); color: white; font-size: 1.15rem; backdrop-filter: blur(10px); }
.job-modal-close:hover { background: white; color: var(--ink); }
.job-modal-head { padding: clamp(36px, 6vw, 62px); padding-right: 86px; border-radius: 26px 26px 0 0; background: var(--ink); color: white; }
.job-modal-head .eyebrow { color: var(--cream); }
.job-modal-head h2 { max-width: 650px; margin: 20px 0 19px; font-size: clamp(2.65rem, 5vw, 4.65rem); letter-spacing: -.045em; line-height: .94; }
.job-modal-location { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: .75rem; font-weight: 600; }
.job-modal-location i { color: var(--orange); }
.job-modal-body { padding: clamp(34px, 5vw, 58px) clamp(30px, 6vw, 64px); }
.job-modal-body p { margin: 0 0 22px; color: #40545d; font-size: .9rem; line-height: 1.86; white-space: pre-line; }
.job-modal-body p:last-child { margin-bottom: 0; }
.job-modal-action { position: sticky; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 22px clamp(30px, 6vw, 64px); border-top: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 -12px 35px rgba(0,21,36,.05); backdrop-filter: blur(14px); }
.job-modal-action > div { display: grid; gap: 2px; }
.job-modal-action strong { font-size: .82rem; }
.job-modal-action span { color: var(--muted); font-size: .67rem; }
.job-modal-action .button { flex: 0 0 auto; }

@media (max-width: 900px) {
  .jobs-hero { padding: 122px 0 78px; }
  .jobs-hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .jobs-hero-copy { max-width: 720px; }
  .jobs-hero-visual { justify-self: center; width: min(86vw, 540px); }
  .jobs-values-grid { grid-template-columns: 1fr; }
  .jobs-values article { padding: 24px 0; border-top: 1px solid var(--line); border-left: 0; }
  .jobs-values article:first-child { border-top: 0; }
  .jobs-section-header { grid-template-columns: 1fr; gap: 22px; }
  .jobs-section-header > p { max-width: 590px; }
  .jobs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .jobs-hero { padding: 108px 0 64px; }
  .jobs-hero-copy h1 { font-size: clamp(3.05rem, 14vw, 4.3rem); }
  .jobs-hero-copy p { margin: 24px 0 28px; font-size: .91rem; }
  .jobs-hero-copy .button { width: 100%; }
  .jobs-hero-visual { width: calc(100% - 8px); padding: 12px 0 22px 18px; }
  .jobs-hero-visual figure { height: 440px; border-radius: 120px 120px 22px 22px; }
  .jobs-hero-stamp { right: -8px; width: 172px; min-height: 82px; }
  .jobs-openings { padding: 76px 0; }
  .jobs-section-header { margin-bottom: 34px; }
  .jobs-section-header h2 { font-size: 3.25rem; }
  .job-card > button { min-height: 330px; padding: 25px 22px; border-radius: 22px; }
  .job-card-copy { padding: 36px 0; }
  .job-card-copy h3 { font-size: 2.4rem; }
  .jobs-closing { padding-bottom: 76px; }
  .jobs-closing-card { padding: 38px 24px; border-radius: 24px; }
  .job-modal-backdrop { padding: 10px; place-items: end center; }
  .job-modal { width: 100%; max-height: calc(100dvh - 20px); border-radius: 22px; }
  .job-modal-head { padding: 34px 24px 30px; padding-right: 68px; border-radius: 22px 22px 0 0; }
  .job-modal-head h2 { margin-top: 17px; font-size: 2.7rem; }
  .job-modal-close { top: 18px; right: 18px; }
  .job-modal-body { padding: 31px 24px; }
  .job-modal-body p { font-size: .84rem; line-height: 1.78; }
  .job-modal-action { align-items: stretch; flex-direction: column; gap: 14px; padding: 18px 24px 22px; }
  .job-modal-action .button { width: 100%; }
}

@media (hover: none) {
  .job-card > button:hover { border-color: rgba(0,21,36,.11); background: white; color: var(--ink); box-shadow: 0 10px 35px rgba(0,21,36,.045); transform: none; }
  .job-card > button:hover .job-location { border-color: rgba(0,21,36,.1); color: var(--teal); }
  .job-card > button:hover .job-card-copy p { color: var(--muted); }
  .job-card > button:hover .job-card-link { border-color: rgba(0,21,36,.1); color: var(--teal); }
  .job-card > button:hover .job-card-link i { transform: none; }
}
