/* ============================================================
   CVI PET TRAVEL — Landing Page
   Estilos globais
   ============================================================ */

/* ---------- Fontes oficiais da marca (self-hosted) ---------- */
@font-face {
  font-family: "Libre Caslon Text";
  src: url("../fonts/LibreCaslonText-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Libre Caslon Text";
  src: url("../fonts/LibreCaslonText-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Libre Caslon Text";
  src: url("../fonts/LibreCaslonText-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900; font-style: italic; font-display: swap;
}

/* ---------- Design tokens (paleta oficial CVI Pettravel — editorial minimalista) ---------- */
:root {
  /* Cores da marca — azul + branco acinzentado, terracota como acento */
  --deep: #163a52;      /* navy profundo (momento azul + rodapé) */
  --brand: #285780;     /* azul principal */
  --brand-600: #1f4a6e; /* azul hover */
  --blue-mid: #5c86ac;  /* azul médio (detalhes) */
  --blue-light: #cddcea;/* azul claro */
  --teal: #7d94a6;      /* azul-cinza dessaturado */
  --terracotta: #b0532a;/* terracota — ÚNICO acento quente (mantido) */
  --terracotta-600: #96431f;
  --terracotta-700: #7d3818;
  --peach: #e8a06a;     /* terracota clara — destaques em fundo escuro */
  --sand: #e3edf7;      /* azul-suave — seções azuis claras */
  --sand-2: #eef4fa;    /* azul-suave mais claro */
  --gold: #c07a45;      /* estrelas (âmbar quente) */

  --cream: #f7f9fc;     /* branco (levemente acinzentado) — canvas branco */
  --cream-2: #eef3f9;   /* branco alternado */
  --ink: #22303c;       /* texto principal — slate frio */
  --muted: #64737f;     /* texto secundário — cinza frio */
  --line: #dce4ec;      /* hairline frio */
  --white: #ffffff;

  /* Tipografia oficial */
  --font-head: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --font-body: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-wide: 1440px;
  --radius: 14px;
  --radius-lg: 22px;
  /* Sombras discretas — o premium vem de hairlines e respiro, não de sombras pesadas */
  --shadow-sm: 0 1px 2px rgba(22, 52, 76, .05);
  --shadow: 0 10px 30px rgba(22, 52, 76, .08);
  --shadow-lg: 0 24px 60px rgba(22, 52, 76, .10);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-head); font-weight: 700; line-height: 1.16; letter-spacing: -0.005em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.75rem); }
.container--wide { max-width: var(--container-wide); }

/* ---------- Tipografia utilitária ---------- */
.section-title {
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.8rem);
  color: var(--deep);
  max-width: 22ch;
}
.section-title--invert { color: var(--white); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--peach); }

.section-head { max-width: 760px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section-head .section-title { max-width: none; margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 1em 1.7em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .25s ease, color .2s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--deep); }
.btn--primary:hover { background: var(--brand); }
.btn--accent { --btn-bg: var(--terracotta); --btn-fg: #fdf6ef; }
.btn--accent:hover { background: var(--terracotta-600); }
.btn--ghost {
  background: transparent;
  color: var(--deep);
  border-color: var(--line);
}
.btn--ghost:hover { background: transparent; border-color: var(--deep); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--sm { padding: .72em 1.15em; font-size: .88rem; }
.btn--lg { padding: 1.1em 2em; font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
/* Sólido ao rolar (sai de cima do hero) */
.site-header.is-scrolled {
  background: rgba(247, 249, 252, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 42px; width: auto; display: block; }
.brand--footer .brand__logo { height: 50px; }
/* Toggle logo claro/escuro conforme o header */
.brand__logo--dark { display: none; }
.site-header.is-scrolled .brand__logo--light { display: none; }
.site-header.is-scrolled .brand__logo--dark { display: block; }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink); transition: color .2s ease; }
/* Sobre o hero (header transparente): hambúrguer branco (todos os tamanhos) */
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
/* Links em branco só no desktop (no tablet/mobile o menu é um painel claro à parte) */
@media (min-width: 941px) {
  .site-header:not(.is-scrolled) .nav a:not(.nav__cta) { color: #fff; }
}
.nav a:not(.nav__cta) { position: relative; }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.nav a:not(.nav__cta):hover { color: var(--brand); }
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav a.nav__cta { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; margin-inline: auto;
  background: var(--deep); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
/* Hero full-screen cinematográfico */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 1rem);
}
.hero__decor { display: none; }

/* Fundo: gradiente navy + foto full-bleed (quando existir) + overlay */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(150deg, var(--deep) 0%, var(--brand) 60%, #1c4a6e 100%);
}
.hero__bg-img {
  position: absolute;
  top: -6%; left: 0; right: 0;
  width: 100%; height: 112%; object-fit: cover;
  transform-origin: center;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12, 30, 46, .92) 0%, rgba(12, 30, 46, .35) 55%, rgba(12, 30, 46, .55) 100%),
    linear-gradient(105deg, rgba(12, 30, 46, .55), transparent 60%);
}
.hero__photo-hint {
  position: absolute; top: calc(var(--header-h) + .6rem); right: 1.2rem; z-index: 1;
  font-size: .68rem; letter-spacing: .04em;
  color: rgba(255, 255, 255, .55);
}

.hero__inner {
  position: relative; z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-block: clamp(1.2rem, 3vw, 2.4rem);
}
.hero__content { max-width: 60ch; }
.hero h1 {
  font-size: clamp(1.9rem, 1rem + 2.7vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.hero__lead { font-size: clamp(1rem, .96rem + .25vw, 1.1rem); color: rgba(255, 255, 255, .9); max-width: 54ch; margin-bottom: .8rem; }
.hero__note { color: rgba(255, 255, 255, .68); max-width: 52ch; font-size: .95rem; margin-bottom: 0; }
.hero__note strong { color: #fff; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 0; }

/* Rodapé do hero: métricas + dica de scroll */
.hero__foot {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(1.6rem, 3vw, 2.6rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 1.4rem;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.8rem;
  margin: 0;
}
.hero__trust li {
  font-size: .72rem; color: rgba(255, 255, 255, .75); max-width: 15ch; line-height: 1.35;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}
.hero__trust strong {
  display: block;
  font-family: var(--font-head); font-weight: 400;
  color: var(--peach); line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: .3rem;
  text-transform: none;
}
/* "+ de" pequeno ao lado do número (mesma linha), sem competir com ele */
.hero__trust-pre {
  font-size: 1rem;
  letter-spacing: .02em; opacity: .9;
  margin-right: .3em;
}
.hero__trust-num {
  font-size: 2.5rem; line-height: 1;
}

/* Dica de scroll animada */
.hero__scroll { flex: 0 0 auto; display: grid; place-items: center; }
.hero__scroll-track {
  display: block; width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  position: relative;
}
.hero__scroll-dot {
  position: absolute; top: 7px; left: 50%; margin-left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--peach);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Moldura de imagem (placeholder até fotos reais) */
.media-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  min-height: 460px;
  background: #e2e8ef;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.media-frame::after {
  content: attr(data-photo);
  position: absolute;
  inset: auto 1.3rem 1.3rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
  letter-spacing: .01em;
}
.media-frame::before {
  content: "";
  width: 40px; height: 40px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  opacity: .28;
}
.media-frame__badge {
  position: absolute;
  top: 1.3rem; left: 1.3rem;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--white);
  color: var(--deep);
  font-weight: 600; font-size: .82rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.media-frame__badge svg { color: var(--terracotta); }

/* Imagem real do hero (aparece por cima do placeholder quando o arquivo existe) */
.media-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ---------- Componente reutilizável de foto (com placeholder) ----------
   Enquanto o arquivo não existe (onerror remove o <img>), mostra a moldura
   listrada + legenda (data-hint). Quando o arquivo existe, a foto cobre tudo. */
.photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e2e8ef;
  border: 1px solid var(--line);
}
.photo::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  opacity: .26;
  z-index: 0;
}
.photo::after {
  content: attr(data-hint);
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 0;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.3;
}
.photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

/* ============================================================
   SEÇÃO 2 — HISTÓRIA
   ============================================================ */
.story { padding-block: clamp(4.5rem, 9vw, 8rem); }
.story__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.story__inner::before {
  content: "";
  display: block;
  width: 40px; height: 2px;
  background: var(--terracotta);
  margin: 0 auto 2rem;
}
.story .section-title {
  margin: 0 auto 1.8rem; max-width: 20ch;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
}
.story p {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
}
.story p:last-child { margin-bottom: 0; }
.story p strong { color: var(--terracotta); font-weight: 400; font-style: italic; }

/* Desktop: alarga a coluna para não parecer layout mobile */
@media (min-width: 941px) {
  .story__inner { max-width: 920px; }
  .story .section-title { max-width: 32ch; }
  .story p { max-width: 62ch; margin-inline: auto; }
}

/* ============================================================
   SEÇÃO 3 — RISCOS
   ============================================================ */
.risks {
  background: var(--cream);
  color: var(--ink);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.risks__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: start;
}
.risks__photo {
  aspect-ratio: 3 / 4;
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 1.4rem);
}
.risks .section-title { color: var(--deep); margin-bottom: 1rem; }
.risks__text > p { color: var(--muted); }
.risks__closing { margin-top: 1.4rem; }
.risks__text .btn { margin-top: 1.8rem; }

.risks__list { display: grid; gap: 0; margin: 1.6rem 0 .4rem; }
.risks__list li {
  position: relative;
  padding: 1.15rem 1rem 1.15rem 2.6rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
}
.risks__list li:first-child { border-top: 1px solid var(--line); }
.risks__list li::before {
  content: "";
  position: absolute;
  left: .4rem; top: 50%;
  width: 18px; height: 18px;
  margin-top: -9px;
  background: var(--terracotta);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 16px no-repeat;
}

/* ============================================================
   SEÇÃO 4 — PROPÓSITO
   ============================================================ */
.purpose {
  background: var(--deep);
  color: #fff;
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
}
.purpose__inner { max-width: 800px; margin-inline: auto; }
.purpose .section-title { margin-inline: auto; max-width: 18ch; font-size: clamp(2rem, 1.3rem + 2.8vw, 3.2rem); }
.purpose__lead { font-size: 1.15rem; color: rgba(255,255,255,.72); margin: 1.4rem auto 2.6rem; max-width: 44ch; }
.purpose__verbs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem 2rem;
  margin-bottom: 2.6rem;
}
.purpose__verbs li {
  position: relative;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
}
.purpose__verbs li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -1.1rem;
  color: var(--peach);
}
.purpose__statement { font-size: 1.22rem; max-width: 40ch; margin: 0 auto 2.4rem; color: rgba(255,255,255,.9); }
.purpose__statement strong { color: var(--peach); font-weight: 400; font-style: italic; font-family: var(--font-head); }

/* Desktop: alarga a coluna para não parecer layout mobile */
@media (min-width: 941px) {
  .purpose__inner { max-width: 1040px; }
  .purpose .section-title { max-width: 26ch; }
  .purpose__lead { max-width: 58ch; }
  .purpose__verbs { gap: .6rem 2.4rem; }
  .purpose__statement { max-width: 56ch; }
}

/* ============================================================
   SEÇÃO 5 — PASSOS
   ============================================================ */
.steps { padding-block: clamp(4.5rem, 9vw, 7.5rem); background: var(--cream); }
.steps__intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
  margin-bottom: clamp(2.8rem, 6vw, 4.5rem);
}
.steps__intro-text .section-title { max-width: 16ch; margin-bottom: 1rem; }
.steps__intro-text p { color: var(--muted); margin: 0; max-width: 46ch; }
.steps__photo { aspect-ratio: 5 / 4; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.4rem) clamp(1.6rem, 3.5vw, 3rem);
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 1.4rem 0 0;
  border-top: 2px solid var(--deep);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.step-card:hover { transform: translateY(-4px); }
.step-card__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3rem, 2rem + 3vw, 4.4rem);
  font-weight: 400;
  color: var(--terracotta);
  line-height: .9;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.step-card h3 { font-size: 1.35rem; font-weight: 400; color: var(--deep); margin: 0 0 .5rem; }
.step-card p { color: var(--muted); margin: 0; font-size: .98rem; line-height: 1.6; }

/* ============================================================
   SEÇÃO 6 — DIFERENCIAIS
   ============================================================ */
.features {
  background: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 3rem);
}
.feature-card {
  position: relative;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  /* ícone + título na mesma linha; descrição abaixo */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "desc desc";
  align-items: center;
  column-gap: .85rem;
  row-gap: .7rem;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card__icon {
  grid-area: icon;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  color: var(--terracotta);
  margin: 0 0 0 -2px;
}
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card h3 { grid-area: title; font-size: 1.24rem; color: var(--deep); margin: 0; line-height: 1.2; }
.feature-card p { grid-area: desc; color: var(--muted); margin: 0; }
.features__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   SEÇÃO 7 — DEPOIMENTOS
   ============================================================ */
.testimonials { padding-block: clamp(4.5rem, 8vw, 7rem); background: var(--deep); }
.testimonials .section-title { color: #fff; }
.testimonials .eyebrow { color: var(--peach); }
.testimonials__source { color: rgba(255, 255, 255, .7); }
.testimonials .testimonial blockquote { color: #fff; }
.testimonials .testimonial::before { color: var(--peach); }
.testimonials .testimonial cite { color: var(--peach); }
.testimonials .carousel__dots button { background: rgba(255, 255, 255, .3); }
.testimonials .carousel__dots button.is-active { background: var(--peach); }
.testimonials__source {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--muted); font-weight: 500; margin: .4rem 0 0; font-size: .95rem;
}
.carousel { max-width: 860px; margin-inline: auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track { display: flex; align-items: stretch; transition: transform .5s cubic-bezier(.4,.1,.2,1); }
.testimonial {
  flex: 0 0 100%;
  padding: clamp(1rem, 4vw, 2rem) clamp(1.5rem, 6vw, 5rem);
  background: transparent;
  text-align: center;
}
/* Desktop/tablet: centraliza o conteúdo do depoimento na vertical
   para não deixar faixa vazia nos depoimentos mais curtos */
@media (min-width: 721px) {
  .section-title { text-wrap: balance; }
  .testimonial { display: flex; flex-direction: column; justify-content: center; }
  /* Alarga o conteúdo p/ reduzir o vazio nas laterais no desktop */
  .section-head { max-width: 900px; }
  .carousel { max-width: 1080px; }
  .faq__inner { max-width: 1000px; }
}
.testimonial::before {
  content: "\201C";
  display: block;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: .6;
  color: var(--terracotta);
  opacity: .55;
  margin-bottom: .6rem;
}
.testimonial__stars { color: var(--gold); font-size: 1rem; letter-spacing: .2em; margin-bottom: 1.4rem; }
.testimonial blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.testimonial cite {
  font-style: normal; font-weight: 600; color: var(--terracotta);
  font-family: var(--font-body);
  font-size: .95rem; letter-spacing: .04em;
}
.testimonial cite::before { content: "— "; }

.carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; margin-top: 1.6rem;
}
.carousel__btn {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white); color: var(--brand);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.carousel__btn:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.carousel__dots { display: flex; gap: .5rem; }
.carousel__dots button {
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.carousel__dots button.is-active { background: var(--terracotta); transform: scale(1.3); }

/* ============================================================
   SEÇÃO 8 — FAQ
   ============================================================ */
.faq { background: var(--cream); padding-block: clamp(4rem, 8vw, 7rem); }
.faq__inner { max-width: 820px; margin-inline: auto; }
.accordion { display: grid; gap: 0; border-top: 1px solid var(--line); }
.accordion__item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem .25rem;
  background: transparent; border: 0;
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 400; color: var(--deep);
  text-align: left; cursor: pointer;
  transition: color .2s ease;
}
.accordion__trigger:hover { color: var(--terracotta); }
.accordion__icon {
  position: relative; flex: 0 0 auto;
  width: 20px; height: 20px;
}
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--terracotta);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  grid-template-columns: minmax(0, 1fr);
  transition: grid-template-rows .3s ease;
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel p {
  overflow: hidden;
  margin: 0;
  /* Sem padding vertical no estado fechado — assim o colapso chega a 0 de altura */
  padding: 0 1.4rem;
  color: var(--muted);
  transition: padding .3s ease;
}
.accordion__item.is-open .accordion__panel p { padding: .1rem 1.4rem 1.35rem; }

/* ============================================================
   SEÇÃO FINAL — CTA
   ============================================================ */
.final-cta { padding-block: clamp(4rem, 8vw, 7rem); background: var(--cream); }
.final-cta__card {
  position: relative;
  color: #fbeee2;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  overflow: hidden;
}
.final-cta__text { min-width: 0; }
.final-cta__card .eyebrow { color: #f3c39d; }
.final-cta__card h2 {
  color: #fff;
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  line-height: 1.08;
  max-width: 18ch; margin: 0 0 1.3rem;
}
.final-cta__card p { color: rgba(251, 238, 226, .85); max-width: 44ch; margin: 0 0 2rem; font-size: 1.08rem; }
.final-cta__card .btn--accent { --btn-bg: #fbeee2; --btn-fg: var(--terracotta-700); }
.final-cta__card .btn--accent:hover { --btn-bg: #fff; }
.final-cta__photo { aspect-ratio: 4 / 5; border: 1px solid rgba(255,255,255,.2); }
.final-cta__photo::after { color: rgba(251,238,226,.7); }
.final-cta__photo { background: rgba(255,255,255,.08); }

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer { background: var(--deep); color: rgba(234,244,245,.8); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.8rem, 5vw, 4rem);
}
.site-footer__brand p { margin-top: 1.1rem; max-width: 46ch; }
.site-footer__contact h3 { font-family: var(--font-head); color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.site-footer__contact address { font-style: normal; }
.site-footer__contact p { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: 1rem; }
.site-footer__contact svg { flex: 0 0 auto; margin-top: 3px; color: var(--teal); }
.site-footer__contact a:hover { color: #fff; text-decoration: underline; }
.site-footer__contact .btn { margin-top: .4rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .6rem 1.6rem;
  padding-block: 1.3rem;
}
.site-footer__bottom p { margin: 0; font-size: .85rem; color: rgba(234,244,245,.6); }
.site-footer__legal { display: inline-flex; align-items: center; gap: .7rem; font-size: .85rem; color: rgba(234,244,245,.5); }
.site-footer__legal a { color: rgba(234,244,245,.75); transition: color .2s ease; }
.site-footer__legal a:hover { color: #fff; text-decoration: underline; }
.site-footer__credit { font-size: .85rem; }
.site-footer__credit a { color: var(--peach); font-weight: 600; transition: color .2s ease; }
.site-footer__credit a:hover { color: #fff; }
@media (max-width: 640px) {
  .site-footer__bottom-inner { flex-direction: column; text-align: center; gap: .8rem; }
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90;
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .25s ease;
  animation: wa-pop .5s ease .8s backwards;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 16px 34px rgba(37,211,102,.55); }
@keyframes wa-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   ANIMAÇÕES DE ENTRADA (reveal) — direcional + stagger
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s cubic-bezier(.22, .6, .25, 1),
    transform 1s cubic-bezier(.22, .6, .25, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
/* Variantes mantidas discretas — o minimalismo pede movimento contido */
.reveal--left  { transform: translateY(20px); }
.reveal--right { transform: translateY(20px); }
.reveal--zoom  { transform: translateY(20px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- GSAP (quando ativo, o motor controla os reveals) ---------- */
/* transition:none evita o conflito entre a transição CSS e o GSAP */
.gsap-active .reveal { opacity: 1; transform: none; transition: none; }
/* Split do título em palavras (revelação com máscara) */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .05em; }
.split-word__inner { display: inline-block; will-change: transform; }
/* Header inteligente: esconde ao descer, mostra ao subir */
.site-header.is-hidden { transform: translateY(-100%); }
/* Lenis (scroll suave) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   PÁGINAS LEGAIS (política de privacidade / termos de uso)
   ============================================================ */
.legal-header { position: sticky; }
.legal-header .nav-back { font-weight: 600; font-size: .92rem; color: var(--deep); }
.legal-header .nav-back:hover { color: var(--terracotta); }
.legal {
  background: var(--cream);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: 72vh;
}
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--deep); margin-bottom: .5rem; }
.legal__updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal__note {
  background: rgba(176, 83, 42, .08);
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.2rem; border-radius: 8px;
  color: var(--ink); margin-bottom: 2.5rem; font-size: .95rem;
}
.legal h2 { font-size: 1.35rem; color: var(--deep); margin: 2.2rem 0 .6rem; font-weight: 400; }
.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.legal ul li { margin-bottom: .35rem; }
.legal a { color: var(--terracotta); text-decoration: underline; }

/* ============================================================
   MOTION & DECOR — barra de progresso, marquee, keyframes, stagger
   ============================================================ */

/* Barra de progresso de rolagem */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--terracotta);
  z-index: 200;
  will-change: transform;
}

/* Faixa de destinos em movimento (marquee) */
.marquee {
  background: var(--brand);
  color: rgba(255, 255, 255, .92);
  padding-block: 1.7rem;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--brand), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--brand), transparent); }
.marquee__track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee-scroll 44s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--peach);
  flex: 0 0 auto;
}

/* Números que "sobem" (contadores) já entram animados via JS; realce sutil */
.hero__trust strong { transition: color .3s ease; }

/* WhatsApp: anel pulsante */
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2.4s cubic-bezier(.2,.6,.4,1) infinite;
}

/* Texto com destaque em gradiente (para palavras-chave) */
.grad-text {
  color: var(--terracotta);
}

/* Depoimento ativo com leve profundidade */
.carousel__track { align-items: stretch; }

/* Stagger — atraso incremental nos filhos de grids/listas */
[data-stagger] > * { --d: 0s; }
[data-stagger] > *:nth-child(1) { --d: .00s; }
[data-stagger] > *:nth-child(2) { --d: .09s; }
[data-stagger] > *:nth-child(3) { --d: .18s; }
[data-stagger] > *:nth-child(4) { --d: .27s; }
[data-stagger] > *:nth-child(5) { --d: .36s; }
[data-stagger] > *:nth-child(6) { --d: .45s; }
[data-stagger] > *:nth-child(7) { --d: .54s; }
[data-stagger] > *:nth-child(8) { --d: .63s; }

/* Lista de riscos: entrada em cascata é feita pelo GSAP (animations.js).
   Sem GSAP, os itens aparecem normalmente (sem estado oculto no CSS). */
.risks__list li { transition: color .25s ease; }
.risks__list li:hover { color: var(--terracotta); }

/* ---------- Keyframes ---------- */
@keyframes mesh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.03); }
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(6deg); }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes slide-in-right {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .risks__inner { grid-template-columns: 1fr; }
  .risks__photo { position: static; aspect-ratio: 16 / 9; max-height: 340px; }
  .steps__intro { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta__card { grid-template-columns: 1fr; text-align: left; }
  .final-cta__photo { aspect-ratio: 16 / 10; order: -1; }
  .site-footer__inner { grid-template-columns: 1fr; }

  /* Menu hambúrguer já a partir do tablet (o menu horizontal não cabe) */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .6rem 1.1rem 1.3rem;
    transform: translateY(-120%);
    transition: transform .35s cubic-bezier(.4,.1,.2,1);
    visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: .95rem .4rem; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: .8rem; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .steps__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__trust { gap: .9rem; flex-wrap: nowrap; }
  .hero__trust li { max-width: none; flex: 1 1 0; min-width: 0; }
  .hero__trust-num { font-size: 1.85rem; }
  .hero__trust-pre { font-size: .8rem; }
  .hero__scroll { display: none; }
  .hero__photo-hint { display: none; }
  .hero__content { max-width: none; }
}

/* Acessibilidade — respeitar redução de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .risks__list li { opacity: 1 !important; transform: none !important; }
  .marquee__track { transform: none !important; }
  .hero__decor { display: none; }
  .whatsapp-float::after { display: none; }
}
