/* ===================================================================
   ANIMAL TRAVEL — v2 (tema claro, acolhedor)
   Light editorial · cream + terracota + dourado · acolhimento, luxo, certeza
   Mesmos princípios de design do vfable, paleta invertida para o claro.
   (ver /design/direcionamento-de-design.md)
   =================================================================== */

:root {
  --bg: #f7f1e8;        /* creme quente — fundo principal */
  --bg-2: #efe5d6;      /* creme mais fundo — seções alternadas */
  --card: #fffdf9;      /* superfície de card (quase branco) */
  --ink: #2b2520;       /* marrom quase-preto — texto principal */
  --ink-deep: #241d18;  /* bloco escuro-quente (CTA) */
  --muted: #6f6456;     /* texto secundário (taupe) */
  --muted-2: #9b8f7e;   /* legendas, micro-texto */
  --accent: #c06a40;    /* terracota — CTA, acolhimento, calor */
  --accent-dark: #a8552f;
  --gold: #b8923f;      /* dourado — ênfase serifada, toque de luxo */
  --gold-soft: rgba(184, 146, 63, 0.14);
  --line: rgba(43, 37, 32, 0.12);
  --red: #b4452f;       /* risco/alerta (uso pontual) */
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --pad-x: clamp(20px, 6vw, 96px);
  --radius: 24px;
  --shadow-sm: 0 2px 10px rgba(43, 37, 32, 0.05);
  --shadow: 0 22px 55px -24px rgba(43, 37, 32, 0.22), 0 5px 16px -10px rgba(43, 37, 32, 0.1);
  --shadow-accent: 0 26px 60px -24px rgba(192, 106, 64, 0.4);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff7ee; }

h1, h2, h3 { font-family: var(--sans); font-weight: 600; line-height: 1.04; letter-spacing: -0.025em; }
h1 em, h2 em, .cta__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- paper grain overlay ---------- */
.noise {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px var(--pad-x);
  transition: background 0.4s, border-color 0.4s, padding 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 241, 232, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 12px;
  box-shadow: var(--shadow-sm);
}
.nav__logo, .footer__logo {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.nav__logo span, .footer__logo span { color: var(--accent); padding: 0 0.45em; }
.logo-emb { height: 32px; width: auto; margin-right: 10px; }
.footer__logo .logo-emb { height: 26px; }
.nav__links { display: flex; gap: clamp(18px, 3vw, 42px); }
.nav__links a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 16px 30px;
  border: 1px solid var(--line);
  transition: border-color 0.35s, background 0.35s, color 0.35s, transform 0.35s, box-shadow 0.35s;
  will-change: transform;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff7ee;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--ghost { color: var(--ink); background: rgba(255, 253, 249, 0.5); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--small { padding: 11px 22px; font-size: 0.84rem; }
.btn--small:hover { border-color: var(--accent); color: var(--accent); }
.btn--big { padding: 22px 44px; font-size: 1.08rem; }
.btn__label { display: inline-block; will-change: transform; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 92px var(--pad-x) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -3;
  display: block;
}
/* warm directional scrim: keeps dark text legible on the left/center,
   lets the pet + window breathe on the right */
.hero__scrim {
  position: absolute; inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(247, 241, 232, 0.95) 0%,
      rgba(247, 241, 232, 0.86) 28%,
      rgba(247, 241, 232, 0.55) 50%,
      rgba(247, 241, 232, 0.18) 70%,
      rgba(247, 241, 232, 0) 100%),
    linear-gradient(to bottom,
      rgba(247, 241, 232, 0.55) 0%,
      rgba(247, 241, 232, 0) 22%);
}
.hero__fade {
  position: absolute; inset: auto 0 0 0;
  height: 38vh;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--bg) 90%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 45% at 28% 42%, rgba(247, 241, 232, 0.5), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  text-align: left;
}
.hero__title {
  font-size: clamp(2rem, min(5.2vw, 7.4vh), 4.5rem);
  margin-bottom: clamp(14px, 2.2vh, 24px);
  max-width: 30ch;
}
.hero__title em { font-size: 1.04em; }
.hero__sub {
  max-width: 540px;
  margin: 0 0 clamp(18px, 2.6vh, 30px);
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: flex-start;
}
.hero__foot {
  position: relative;
  margin-top: auto;
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
  padding: clamp(14px, 2.4vh, 28px) 0 18px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.hero__proof {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  text-align: left;
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-2);
}
.hero__scroll span {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* split-line reveal helpers */
[data-lines] .line {
  display: block;
  overflow: hidden;
  padding-block: 0.09em; margin-block: -0.09em;
  padding-inline: 0.12em; margin-inline: -0.12em;
}
[data-lines] .line-inner { display: block; will-change: transform; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee__track { display: inline-flex; will-change: transform; animation: marquee 30s linear infinite; }
.marquee__group {
  display: inline-flex; align-items: center; gap: 42px;
  padding-right: 42px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__group i { color: var(--accent); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: clamp(84px, 13vh, 150px) var(--pad-x); }
.sec-head { max-width: 1180px; margin: 0 auto clamp(44px, 7vh, 80px); }
.sec-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 22px;
}
.sec-label i { font-style: normal; color: var(--accent); }
.sec-label::after { content: ""; width: 54px; height: 1px; background: var(--line); }
.sec-head h2 { font-size: clamp(1.9rem, 4.4vw, 3.7rem); max-width: 20ch; }
.sec-sub { max-width: 560px; color: var(--muted); margin-top: 20px; font-size: 1.05rem; }

/* ---------- problema / strikes ---------- */
.problema { padding-bottom: clamp(40px, 6vh, 70px); }
.strikes {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(14px, 2.4vh, 26px);
}
.strike {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.6vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.strike__txt { position: relative; display: inline-block; }
.strike__line {
  position: absolute; left: -1.5%; right: -1.5%; top: 53%;
  height: 0.055em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
}

/* ---------- manifesto ---------- */
.manifesto { padding-top: clamp(40px, 6vh, 70px); }
.manifesto__text {
  max-width: 1060px; margin: 0 auto;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.9vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.manifesto__text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.manifesto__text .w { will-change: opacity; }

/* ---------- carla (quem cuida) ---------- */
.carla { background: var(--bg-2); border-block: 1px solid var(--line); }
.carla__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.carla__head { margin: 0; }
.carla__head .sec-sub { max-width: 48ch; }
.carla__side {
  display: flex; flex-direction: column; gap: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow);
}
.carla__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  color: var(--ink);
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.carla__quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.carla__pts { display: flex; flex-direction: column; gap: 14px; }
.carla__pts li {
  position: relative; padding-left: 30px;
  color: var(--muted); font-size: 1rem;
}
.carla__pts strong { color: var(--ink); font-weight: 600; }
.carla__pts li::before {
  content: "✦"; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 0.8rem;
}

/* ---------- caminho (timeline horizontal) ---------- */
.historia { padding-inline: 0; }
.historia__pin {
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(30px, 5vh, 56px);
  min-height: 100vh;
  padding-block: clamp(60px, 8vh, 90px);
  overflow: hidden;
}
.historia .sec-head { margin: 0; padding-inline: var(--pad-x); width: 100%; }
.tl__track {
  display: flex; gap: clamp(18px, 2vw, 30px);
  padding-inline: var(--pad-x);
  width: max-content;
  will-change: transform;
}
.tl-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(300px, 34vw, 460px);
  min-height: clamp(330px, 46vh, 430px);
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 10px;
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.tl-card:hover { border-color: rgba(192, 106, 64, 0.4); transform: translateY(-6px); box-shadow: var(--shadow); }
.tl-card--now { background: linear-gradient(160deg, #fbecdd, #fff6ec 60%); border-color: rgba(192, 106, 64, 0.4); }
.tl-card__idx {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--sans);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(43, 37, 32, 0.12);
}
.tl-card--now .tl-card__idx { -webkit-text-stroke-color: rgba(192, 106, 64, 0.4); }
.tl-card__kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.tl-card__stat {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1.05;
  color: var(--accent);
}
.tl-card h3 { font-size: 1.18rem; font-weight: 600; }
.tl-card__txt { color: var(--muted); font-size: 0.95rem; }

/* ---------- stats ---------- */
.stats { padding-block: clamp(60px, 9vh, 110px); background: var(--bg-2); border-block: 1px solid var(--line); }
.stats__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.stat { display: flex; flex-direction: column; gap: 8px; padding-top: 22px; border-top: 2px solid var(--accent); }
.stat__num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.stat__label { color: var(--muted); font-size: 0.92rem; max-width: 24ch; }
.stats__note {
  max-width: 1180px; margin: clamp(34px, 5vh, 54px) auto 0;
  color: var(--muted-2); font-size: 0.82rem; line-height: 1.6; max-width: 90ch;
}

/* ---------- sozinho × animal travel (compare) ---------- */
.compare { max-width: 1180px; margin: 0 auto; }
.compare__head, .compare__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(16px, 2.5vw, 40px);
  align-items: center;
  padding: 20px 0;
}
.compare__head { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.compare__col {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-2);
}
.compare__col--now { color: var(--accent); }
.compare__row { border-bottom: 1px solid var(--line); }
.compare__what { font-family: var(--sans); font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: -0.01em; }
.compare__before { color: var(--muted-2); text-decoration: line-through; text-decoration-color: rgba(155, 143, 126, 0.6); font-size: 0.97rem; }
.compare__after { color: var(--ink); font-size: 0.97rem; position: relative; padding-left: 22px; }
.compare__after::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* ---------- planos / serviços ---------- */
.plans__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.plan {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(26px, 2.6vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.plan:hover { border-color: rgba(192, 106, 64, 0.4); transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--feat { background: linear-gradient(160deg, #fbecdd, #fff6ec 60%); border-color: rgba(192, 106, 64, 0.45); box-shadow: var(--shadow); }
.plan h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
.plan p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.plan__tag {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: #fff7ee; background: var(--accent);
  padding: 5px 12px; border-radius: 999px;
}
.plan__badge {
  font-family: var(--sans);
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 999px; vertical-align: middle;
}
.plan__cta {
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  color: var(--accent);
  transition: opacity 0.3s;
}
.plan__cta:hover { opacity: 0.7; }

/* ---------- destinos ---------- */
.dest { background: var(--bg-2); border-block: 1px solid var(--line); }
.dest__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.d-card {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(26px, 2.6vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.d-card:hover { border-color: rgba(192, 106, 64, 0.4); transform: translateY(-6px); box-shadow: var(--shadow); }
.d-card__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  color: var(--gold);
  line-height: 1.05;
}
.d-card p { color: var(--muted); font-size: 0.97rem; }
.d-card__tag {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red); border: 1px solid rgba(180, 69, 47, 0.4);
  padding: 4px 11px; border-radius: 999px;
}
.d-card--alert:hover { border-color: rgba(180, 69, 47, 0.45); }
.d-card--more { background: linear-gradient(160deg, #fbf2e6, #fffaf2 60%); }

/* ---------- você se reconhece (personas) ---------- */
.recon__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.r-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius);
  border: 1px solid rgba(192, 106, 64, 0.28);
  background: linear-gradient(160deg, #fbece0, #fff7ee 65%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.r-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(192, 106, 64, 0.5); }
.r-card__kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.r-card p { color: var(--ink); font-size: 0.99rem; opacity: 0.82; }
.recon__foot {
  max-width: 1180px; margin: clamp(34px, 5vh, 52px) auto 0;
  text-align: center; color: var(--muted); font-size: 1.05rem;
}
.recon__foot a { color: var(--accent); border-bottom: 1px solid rgba(192, 106, 64, 0.4); }
.recon__foot a:hover { opacity: 0.8; }

/* ---------- depoimentos ---------- */
.depo__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.t-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.t-card:hover { border-color: rgba(192, 106, 64, 0.4); transform: translateY(-6px); box-shadow: var(--shadow); }
.t-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.32;
  color: var(--ink);
}
.t-card blockquote::before { content: "“"; color: var(--gold); margin-right: 2px; }
.t-card figcaption { display: flex; flex-direction: column; gap: 3px; }
.t-card figcaption strong { font-family: var(--sans); font-size: 0.9rem; color: var(--ink); }
.t-card figcaption span { font-size: 0.84rem; color: var(--muted); }
.depo__note {
  max-width: 1180px; margin: 28px auto 0;
  color: var(--muted-2); font-size: 0.78rem; font-style: italic;
}

/* ---------- faixas-fundo com foto (parallax) ---------- */
.photoband {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  padding-block: clamp(90px, 16vh, 170px);
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
}
.photoband__bg {
  position: absolute; inset: -14% 0;
  z-index: -2;
  background-size: cover;
  background-position: center right;
  will-change: transform;
}
.photoband--dog .photoband__bg { background-image: url("../assets/bg-dog.webp"); }
.photoband--cat .photoband__bg { background-image: url("../assets/bg-cat.webp"); }
.photoband__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    rgba(247, 241, 232, 0.97) 0%,
    rgba(247, 241, 232, 0.88) 30%,
    rgba(247, 241, 232, 0.55) 52%,
    rgba(247, 241, 232, 0.12) 74%,
    rgba(247, 241, 232, 0) 100%);
}
.photoband__inner { position: relative; max-width: 1180px; margin: 0 auto; width: 100%; }
.photoband__inner .sec-head { margin: 0; max-width: 640px; }
.photoband__inner h2 { font-size: clamp(2rem, 4.6vw, 3.8rem); max-width: 18ch; }
.photoband__inner .sec-sub { max-width: 46ch; }
.photoband__inner .plan__cta { display: inline-block; margin-top: 26px; font-size: 1rem; }

/* ---------- hero da página de cursos ---------- */
.chero {
  position: relative;
  min-height: 90svh;
  display: flex; align-items: center;
  padding: 140px var(--pad-x) clamp(70px, 10vh, 110px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.chero__bg {
  position: absolute; inset: -14% 0;
  z-index: -2;
  background: url("../assets/bg-dog.webp") center right / cover;
  will-change: transform;
}
.chero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    rgba(247, 241, 232, 0.97) 0%,
    rgba(247, 241, 232, 0.9) 34%,
    rgba(247, 241, 232, 0.55) 58%,
    rgba(247, 241, 232, 0.1) 82%,
    rgba(247, 241, 232, 0) 100%);
}
.chero__inner { position: relative; max-width: 1180px; margin: 0 auto; width: 100%; }
.chero__title {
  font-size: clamp(2.3rem, min(6vw, 10vh), 5.2rem);
  margin: 10px 0 clamp(18px, 3vh, 28px);
  max-width: 16ch;
}
.chero__sub {
  max-width: 540px; color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: clamp(24px, 3.5vh, 34px);
}
.chero__bg--cat { background-image: url("../assets/bg-cat.webp"); }
.backlink {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
  transition: color 0.3s;
}
.backlink:hover { color: var(--accent); }

/* ---------- card de curso (catálogo) ---------- */
.coursecard { text-decoration: none; }
.coursecard__meta {
  font-family: var(--sans);
  font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- card de inscrição / preço ---------- */
.plans__grid--single { max-width: 580px; grid-template-columns: 1fr; }
.plan__price {
  font-family: var(--sans);
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}
.plan__price strong { font-size: 1.9rem; color: var(--accent); font-weight: 700; }
.plan__price span { color: var(--muted); font-size: 0.9rem; }
.plan .btn--primary { align-self: flex-start; margin-top: 6px; }
.plan__fineprint { color: var(--muted-2); font-size: 0.76rem; }

/* ---------- faq ---------- */
.faq__list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq__q:hover { color: var(--accent); }
.faq__q i {
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.open .faq__q i { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); padding: 0 4px 26px; max-width: 64ch; }
.faq__item.open .faq__a { grid-template-rows: 1fr; }

/* ---------- cta final (bloco escuro-quente: luxo + certeza) ---------- */
.cta {
  position: relative;
  margin: clamp(40px, 7vh, 90px) var(--pad-x);
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  border-radius: clamp(28px, 4vw, 44px);
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 90% at 50% 0%, #34281f, var(--ink-deep) 70%);
  color: #f3e9db;
}
.cta__bg {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(7rem, 22vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 146, 63, 0.18);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.cta__inner { position: relative; max-width: 880px; margin: 0 auto; }
.cta__title { font-size: clamp(2.6rem, 7vw, 6rem); margin-bottom: clamp(24px, 4vh, 36px); color: #fbf4ea; }
.cta__title em { color: var(--gold); }
.cta__sub { color: #c9bcab; max-width: 620px; margin: 0 auto clamp(32px, 5vh, 48px); font-size: 1.05rem; }
.cta__action { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta__micro { font-size: 0.82rem; color: #a89984; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--sans); }
.cta__micro a { color: var(--gold); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 44px var(--pad-x) 36px; }
.footer__top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px;
  max-width: 1180px; margin: 0 auto 26px;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 28px; }
.footer__nav a {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--accent); }
.footer__legal { max-width: 1180px; margin: 0 auto; color: var(--muted-2); font-size: 0.82rem; max-width: 86ch; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 899px) {
  .nav__links { display: none; }

  .hero { padding-top: 100px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__proof { font-size: 0.66rem; letter-spacing: 0.08em; line-height: 1.8; }
  .hero__video { object-position: 75% center; }
  .hero__scrim {
    background:
      linear-gradient(115deg, rgba(247, 241, 232, 0.97) 0%, rgba(247, 241, 232, 0.82) 48%, rgba(247, 241, 232, 0.5) 100%),
      linear-gradient(to bottom, rgba(247, 241, 232, 0.55), rgba(247, 241, 232, 0) 30%);
  }

  .carla__grid { grid-template-columns: 1fr; gap: 32px; }

  .historia__pin { min-height: 0; }
  .tl__track { flex-direction: column; width: auto; padding-inline: var(--pad-x); }
  .tl-card { width: 100%; min-height: 0; padding-top: 64px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }

  .compare__head { display: none; }
  .compare__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
  .compare__before::before { content: "sozinho — "; text-decoration: none; color: var(--muted-2); }
  .compare__after { padding-left: 22px; }

  .plans__grid, .dest__grid, .recon__grid, .depo__grid { grid-template-columns: 1fr; }

  .photoband { min-height: 0; }
  .photoband__bg { background-position: 72% center; }
  .photoband__scrim {
    background: linear-gradient(112deg, rgba(247, 241, 232, 0.97) 0%, rgba(247, 241, 232, 0.86) 52%, rgba(247, 241, 232, 0.55) 100%);
  }

  .chero { padding-top: 116px; min-height: 0; }
  .chero__bg { background-position: 72% center; }
  .chero__scrim {
    background: linear-gradient(112deg, rgba(247, 241, 232, 0.97) 0%, rgba(247, 241, 232, 0.86) 52%, rgba(247, 241, 232, 0.55) 100%);
  }
  .chero .hero__cta .btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .stats__grid { gap: 18px; }
  .btn--big { padding: 18px 32px; font-size: 1rem; width: 100%; }
  .cta__action { width: 100%; }
}

/* tablet: keep plans/destinos in 2 columns */
@media (min-width: 900px) and (max-width: 1100px) {
  .plans__grid, .dest__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- short viewports: keep the CTA above the fold ---------- */
@media (max-height: 820px) {
  .hero { padding-top: 78px; }
  .hero__title { font-size: clamp(1.85rem, min(5vw, 6.6vh), 3.4rem); margin-bottom: 14px; }
  .hero__sub { margin-bottom: 16px; font-size: 0.96rem; }
  .hero__foot { padding: 12px 0 14px; gap: 10px; }
  .hero__scroll { display: none; }
}
@media (max-height: 700px) and (max-width: 899px) {
  .hero__title { font-size: clamp(1.9rem, 9vw, 2.35rem); }
  .hero__sub { font-size: 0.92rem; }
  .hero__proof { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
  .strike__line { transform: scaleX(1); }
}

/* =====================================================================
   QUIZ — "qual o plano ideal para levar seu pet?"
   ===================================================================== */
.quizpage { background: var(--bg); min-height: 100svh; }
.quiz {
  max-width: 720px;
  margin: 0 auto;
  padding: 130px var(--pad-x) 60px;
  display: flex; flex-direction: column;
}
.quiz__progress {
  height: 5px; border-radius: 99px;
  background: rgba(43, 37, 32, 0.1);
  overflow: hidden;
  margin-bottom: clamp(28px, 5vh, 44px);
}
.quiz__progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.quiz__card.in { opacity: 1; transform: none; }
.quiz__card h1 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.12;
  margin: 10px 0 6px;
}
.quiz__step {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.quiz__sub { color: var(--muted); margin: 8px 0 4px; font-size: 0.98rem; }
.quiz__opts { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.quiz__opts button {
  text-align: left;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 15px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.quiz__opts button:hover {
  border-color: var(--accent); background: #fbeee2; transform: translateX(4px);
}
.quiz__input {
  width: 100%;
  margin-top: 18px;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; font: inherit; font-size: 1.05rem;
  background: var(--bg); outline: none;
}
.quiz__input:focus { border-color: var(--accent); }
.quiz__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }
.quiz__back {
  margin-top: 22px;
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2);
}
.quiz__back:hover { color: var(--accent); }
.quiz__err { color: var(--red); font-size: 0.88rem; margin-top: 10px; }
.quiz__lgpd { text-align: center; color: var(--muted-2); font-size: 0.78rem; margin-top: 22px; }
.quiz__plano {
  margin-top: 16px;
  background: linear-gradient(160deg, #fbecdd, #fff6ec 60%);
  border: 1px solid rgba(192, 106, 64, 0.4);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.02rem;
}
.quiz__check {
  margin-top: 16px; padding: 16px 18px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  font-size: 0.95rem;
}
.quiz__check ul { margin: 8px 0 0; padding: 0; list-style: none; }
.quiz__check li { padding: 4px 0 4px 26px; position: relative; color: var(--muted); }
.quiz__check li::before { content: "✓"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }
.quiz__prazo { margin-top: 14px; font-size: 0.95rem; color: var(--ink); }
.quiz__micro { margin-top: 16px; color: var(--muted-2); font-size: 0.82rem; }

/* faixa de chamada do quiz no index */
.quizband { text-align: center; background: var(--bg-2); border-block: 1px solid var(--line); }
.quizband h2 { font-size: clamp(1.7rem, 4vw, 3rem); max-width: 24ch; margin: 0 auto 14px; }
.quizband h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold); }
.quizband p { color: var(--muted); max-width: 52ch; margin: 0 auto 26px; }
