/* ============================================================
   PetNode Landing — v6 "Lusion"
   Escuro quente + WebGL + as cores e fontes reais do app
   (bronze #BB8A5E + teal, DM Sans + Comfortaa)
   ============================================================ */

:root {
  --bg: #0E0B08;
  --bg-2: #16110C;
  --bg-3: #1D1710;
  --text: #F5EFE6;
  --muted: #B0A494;
  --faint: #7D7263;
  --bronze: #BB8A5E;
  --bronze-lt: #D4A574;
  --bronze-dk: #8B6340;
  --terra: #9E5427;
  --terra-lt: #BE7134;
  --teal: #2DD4BF;
  --amber: #FBBF24;
  --purple: #C084FC;
  --blue: #60A5FA;
  --green: #4ADE80;
  --glass: rgba(38, 30, 22, 0.55);
  --glass-border: rgba(212, 165, 116, 0.16);
  --radius: 22px;
  --font-d: "DM Sans", system-ui, sans-serif;
  --font-b: "DM Sans", system-ui, sans-serif;
  --font-logo: "Comfortaa", sans-serif;
}

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

html { scroll-behavior: smooth; }
html.shot { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(212, 165, 116, 0.35); color: #fff; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }
.center { text-align: center; }

em, .it { font-style: italic; }

.grad {
  background: linear-gradient(100deg, var(--terra-lt) 10%, var(--terra) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ CENA 3D FIXA + GLOWS ============ */
#gl {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#glow-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.g1 { width: 60vw; height: 60vw; top: -25vw; left: -18vw; background: radial-gradient(circle, rgba(187,138,94,0.22), transparent 65%); }
.g2 { width: 50vw; height: 50vw; top: 30vh; right: -20vw; background: radial-gradient(circle, rgba(45,212,191,0.08), transparent 65%); }
.g3 { width: 55vw; height: 55vw; bottom: -25vw; left: 10vw; background: radial-gradient(circle, rgba(45,212,191,0.07), transparent 65%); }

/* tudo que é conteúdo flutua acima da cena */
nav, header, section, footer { position: relative; z-index: 2; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-center { text-align: center; }
.pre-center img { width: 76px; height: 76px; border-radius: 20px; animation: pre-pulse 1.6s ease-in-out infinite; }
@keyframes pre-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.pre-count {
  margin-top: 22px;
  font-family: var(--font-d);
  font-size: 44px;
  font-weight: 500;
  color: var(--terra-lt);
  font-variant-numeric: tabular-nums;
}
html.shot #preloader { display: none; }

/* ============ CURSOR ============ */
#cursor-dot, #cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99; border-radius: 50%; }
#cursor-dot { width: 8px; height: 8px; background: var(--terra-lt); transform: translate(-50%, -50%); }
#cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(190, 113, 52, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}
#cursor-ring.hot { width: 62px; height: 62px; border-color: rgba(45, 212, 191, 0.7); }
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ============ PROGRESS + NAV ============ */
#progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--terra), var(--teal));
  z-index: 60;
}

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0;
  transition: padding 0.35s, background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding: 12px 0;
  background: rgba(14, 11, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(212, 165, 116, 0.10);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-logo); font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none; }
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: #1A120B !important;
  background: linear-gradient(120deg, var(--terra-lt), var(--terra));
  padding: 10px 20px; border-radius: 100px; font-weight: 600 !important;
  box-shadow: 0 4px 24px rgba(226, 114, 91, 0.35);
}
@media (max-width: 860px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 90px;
}
.hero-wrap { width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--terra-lt);
  border: 1px solid rgba(226, 114, 91, 0.35);
  background: rgba(226, 114, 91, 0.08);
  padding: 9px 18px; border-radius: 100px;
  margin-bottom: 34px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; box-shadow: 0 0 12px var(--green); } 50% { opacity: 0.35; box-shadow: none; } }

.hero-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(58px, 10.5vw, 144px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 30px;
}
.ht-line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.ht-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: ht-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
html.shot .ht-inner { transform: none; animation: none; }
@keyframes ht-up { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .ht-inner { transform: none; animation: none; } }

.hero-tagline {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--terra-lt);
  margin-bottom: 18px;
}
.hero-tagline em { color: var(--teal); }

.hero-sub { max-width: 560px; font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); margin-bottom: 40px; }

/* ============ WAITLIST ============ */
.waitlist { max-width: 560px; }
.waitlist form {
  display: flex; gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 8px;
  border-radius: 100px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.waitlist input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font-b); font-size: 16px;
  padding: 12px 20px;
}
.waitlist input::placeholder { color: var(--faint); }
.waitlist button {
  border: none; cursor: pointer;
  font-family: var(--font-b); font-size: 15.5px; font-weight: 600;
  color: #1A120B;
  background: linear-gradient(120deg, var(--terra-lt), var(--terra));
  padding: 13px 26px; border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(226, 114, 91, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.waitlist button:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(226, 114, 91, 0.55); }
.waitlist .success {
  display: none;
  padding: 16px 22px; border-radius: 16px;
  background: rgba(74, 222, 128, 0.10);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--green); font-weight: 500;
}
.waitlist.sent form { display: none; }
.waitlist.sent .success { display: block; }
.waitlist .hint { font-size: 13px; color: var(--faint); margin-top: 12px; padding-left: 8px; }
@media (max-width: 560px) {
  .waitlist form { flex-direction: column; border-radius: 24px; }
  .waitlist button { width: 100%; }
}

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); text-align: center;
}
.scroll-cue .line { width: 1px; height: 44px; margin: 10px auto 0; background: linear-gradient(var(--terra-lt), transparent); animation: cue 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }


/* ============ SEÇÕES (base) ============ */
section { padding: 150px 0; }

.section-label {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 18px;
}
h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.lead { font-size: clamp(17px, 1.8vw, 20px); color: var(--muted); max-width: 640px; }
.center .lead { margin: 0 auto 20px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
html.shot .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ CHAPTERS ============ */
.chapters { padding: 60px 0 0; }
.chapters-grid { display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: start; }

.chapter { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; padding: 60px 0; }
.chapter h3 { font-family: var(--font-d); font-weight: 700; font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 20px; }
.chapter h3 em { color: var(--accent, var(--bronze-lt)); }
.chapter > p { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 26px; }
.ch-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ch-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--text); }
.ch-list svg { width: 19px; height: 19px; stroke: var(--accent, var(--bronze-lt)); flex: none; }

.phone-sticky { position: sticky; top: 9vh; height: 82vh; display: flex; align-items: center; justify-content: center; }
.phone {
  width: 340px; height: 690px;
  border-radius: 48px;
  background: linear-gradient(160deg, #241C13, #17110B);
  border: 1px solid rgba(212, 165, 116, 0.22);
  box-shadow:
    0 0 0 10px rgba(24, 18, 12, 0.9),
    0 0 0 11px rgba(212, 165, 116, 0.14),
    0 50px 110px rgba(0, 0, 0, 0.6),
    0 0 90px rgba(187, 138, 94, 0.13);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.screens { position: relative; height: 100%; border-radius: 34px; overflow: hidden; background: #100C08; }
.screen {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  overflow: hidden;
}
.screen.active { opacity: 1; transform: none; }
.screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }


.chapter-mobile-screen { display: none; }

@media (max-width: 980px) {
  .chapters-grid { grid-template-columns: 1fr; }
  .phone-sticky { display: none; }
  .chapter { min-height: 0; padding: 44px 0; }
  .chapter-mobile-screen { display: block; margin-top: 30px; }
  .chapter-mobile-screen .screen {
    position: relative; opacity: 1; transform: none;
    max-width: 320px; margin: 0 auto;
    border-radius: 26px; background: #100C08;
    border: 1px solid rgba(212, 165, 116, 0.16);
    padding: 0;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  }
  .chapter-mobile-screen .screen img { position: static; width: 100%; height: auto; border-radius: 26px; }
}

/* ============ PETGUIA ============ */
.petguia-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; margin-top: 30px; }
.petguia-points { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.point { display: flex; gap: 18px; }
.point .num {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.07);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-style: italic; font-size: 19px; color: var(--teal);
}
.point h4 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.point p { font-size: 15.5px; color: var(--muted); }

.pg-cards { display: flex; flex-direction: column; gap: 16px; }
.proactive-card {
  background: linear-gradient(150deg, rgba(45, 212, 191, 0.10), rgba(38, 30, 22, 0.7));
  border: 1px solid rgba(45, 212, 191, 0.30);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(187, 138, 94, 0.10);
}
.pc-header { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.pc-header svg { width: 17px; height: 17px; stroke: var(--teal); }
.pc-body { font-size: 16px; color: var(--text); line-height: 1.6; }
.pc-chat { margin-top: 14px; }
.pc-bubble {
  background: rgba(19, 78, 74, 0.55);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 16px; border-top-left-radius: 5px;
  padding: 14px 16px;
  font-size: 14px; line-height: 1.6; color: var(--text);
}
.pc-foot { margin-top: 16px; padding-top: 14px; border-top: 1px dashed rgba(212, 165, 116, 0.2); font-size: 12.5px; color: var(--faint); }
.pg-mini {
  display: flex; align-items: center; gap: 13px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 17px 20px;
  font-size: 14.5px; color: var(--muted);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pg-mini svg { width: 20px; height: 20px; stroke: var(--teal); flex: none; }
@media (max-width: 980px) { .petguia-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ============ GLOBO DE MÍDIA (Funções) ============ */
/* cards distribuídos numa esfera invisível, sempre de frente para a câmera;
   scroll gira, arrastar gira com inércia; profundidade = menor/escuro/desfocado.
   2K fix: a esfera vive toda em translateZ <= 0 — o navegador nunca amplia
   o bitmap de um card além do tamanho de layout (só reduz). */
.globe {
  position: relative;
  height: 640px;
  margin-top: 70px;
  perspective: 1400px;
  pointer-events: none; /* camada plana engoliria o mouse dos cards com Z negativo */
}
.globe-world { position: absolute; inset: 0; transform-style: preserve-3d; pointer-events: none; }
.gcard {
  position: absolute;
  top: 50%; left: 50%;
  pointer-events: auto;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  background: linear-gradient(160deg, #221A12, #150F0A);
  border: 1px solid color-mix(in srgb, var(--accent, var(--bronze-lt)) 26%, transparent);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.globe.dragging .gcard { cursor: grabbing; }
.gcard:hover {
  border-color: color-mix(in srgb, var(--accent, var(--bronze-lt)) 55%, transparent);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 44px color-mix(in srgb, var(--accent, var(--bronze-lt)) 14%, transparent);
}

/* prints do app — proporção real do iPhone (1206x2622), sem corte */
.gc-shot { width: 158px; aspect-ratio: 1206 / 2622; padding: 0; overflow: hidden; border-radius: 26px; }
.gc-shot img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.gc-shot .gc-tag {
  position: absolute; left: 10px; bottom: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--text);
  background: rgba(14, 11, 8, 0.72);
  border: 1px solid color-mix(in srgb, var(--accent, var(--bronze-lt)) 40%, transparent);
  padding: 4px 11px; border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gc-shot:hover .gc-tag { opacity: 1; }

/* dado solto do app — largura acompanha o conteúdo (nada vaza) */
.gc-data { width: max-content; padding: 13px 15px; display: flex; align-items: center; gap: 12px; }
.gd-icon {
  width: 36px; height: 36px; border-radius: 11px; flex: none;
  background: color-mix(in srgb, var(--accent, var(--bronze-lt)) 14%, transparent);
  display: flex; align-items: center; justify-content: center;
}
.gd-icon svg { width: 18px; height: 18px; stroke: var(--accent, var(--bronze-lt)); }
.gd-title { font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.gd-sub { font-size: 11.5px; color: var(--faint); white-space: nowrap; }
.gd-pill { margin-left: 4px; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 100px; white-space: nowrap; flex: none; }
.pill-ok { color: var(--green); background: rgba(74, 222, 128, 0.10); }
.pill-soon { color: var(--amber); background: rgba(251, 191, 36, 0.12); }

/* gesto do PetGuia */
.gc-chat { width: 258px; padding: 14px 17px; border-radius: 20px 20px 20px 6px; }
.gc-chat-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 7px;
}
.gc-chat-head svg { width: 15px; height: 15px; stroke: var(--teal); }
.gc-chat p { font-size: 13.5px; line-height: 1.5; color: var(--text); }

/* chip da ficha */
.gc-chip {
  padding: 9px 17px; border-radius: 100px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  color: color-mix(in srgb, var(--accent, var(--bronze-lt)) 80%, var(--text));
}

/* tutores */
.gc-tutors { width: max-content; padding: 13px 15px; display: flex; align-items: center; gap: 13px; }
.avatars-row { display: flex; flex: none; }
.av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; color: #1A120B;
  border: 2px solid var(--bg-2);
  margin-right: -9px;
}
.a1 { background: linear-gradient(135deg, var(--terra-lt), var(--terra)); }
.a2 { background: linear-gradient(135deg, var(--teal), #14B8A6); }
.a3 { background: linear-gradient(135deg, var(--amber), #D97706); }

.globe-hint {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 26px; font-size: 13.5px; color: var(--muted); letter-spacing: 0.04em;
}
.globe-hint svg { width: 17px; height: 17px; stroke: var(--faint); }
.globe-hint .hint-mobile { display: none; }
@media (max-width: 980px) {
  .globe-hint .hint-desktop { display: none; }
  .globe-hint .hint-mobile { display: inline; }
}

@media (max-width: 980px) {
  .globe { height: 700px; margin-top: 20px; perspective: 1000px; }
  .gc-shot { width: 112px; border-radius: 20px; }
  .gc-shot .gc-tag { opacity: 1; font-size: 10px; padding: 3px 9px; left: 7px; bottom: 7px; }
  .gc-chat { width: 196px; padding: 11px 13px; }
  .gc-chat p { font-size: 12px; }
  .gc-data { padding: 10px 12px; gap: 9px; }
  .gd-icon { width: 30px; height: 30px; }
  .gd-icon svg { width: 15px; height: 15px; }
  .gd-title { font-size: 12px; }
  .gd-sub { font-size: 10.5px; }
  .gd-pill { font-size: 9.5px; }
  .gc-chip { font-size: 11.5px; padding: 7px 13px; }
  .gc-tutors { padding: 10px 12px; gap: 10px; }
  .av { width: 27px; height: 27px; font-size: 10.5px; }
  .globe-hint { margin-top: 8px; }
}

@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -1.5px; } }
html.shot .plan { animation: none; }
@media (prefers-reduced-motion: reduce) { .plan { animation: none; } }


/* ============ PLANOS ============ */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 920px; margin: 56px auto 0; align-items: stretch; }
.plan {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  padding: 38px 34px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  animation: floaty 8s ease-in-out infinite;
}
.plan.premium {
  background: linear-gradient(160deg, rgba(212, 165, 116, 0.14), rgba(38, 30, 22, 0.75));
  border-color: rgba(212, 165, 116, 0.45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 70px rgba(187, 138, 94, 0.14);
  animation-delay: -3.5s;
}
.plan-badge {
  position: absolute; top: -14px; right: 26px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #1A120B;
  background: linear-gradient(120deg, var(--terra-lt), var(--terra));
  padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 6px 20px rgba(226, 114, 91, 0.4);
}
.plan-name { font-family: var(--font-logo); font-weight: 700; font-size: 20px; color: var(--terra-lt); margin-bottom: 10px; }
.plan-price { font-family: var(--font-d); font-weight: 800; font-size: clamp(34px, 4vw, 46px); letter-spacing: -0.02em; line-height: 1; margin-bottom: 26px; }
.pp-note { display: block; font-size: 14px; font-weight: 500; letter-spacing: 0; color: var(--faint); margin-top: 8px; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.plan-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--muted); }
.plan.premium .plan-list li { color: var(--text); }
.plan-list svg { width: 18px; height: 18px; stroke: var(--teal); flex: none; margin-top: 3px; }
.plans-note { text-align: center; font-size: 13.5px; color: var(--faint); margin-top: 30px; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }

/* ============ MANIFESTO ============ */
.manifesto {
  max-width: 820px; margin: 50px auto 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: clamp(34px, 5vw, 60px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
}
.manifesto blockquote em { color: var(--terra-lt); }
.manifesto .note { margin-top: 24px; font-size: 16px; color: var(--muted); }

.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.trust-chip {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 165, 116, 0.14);
  padding: 12px 20px; border-radius: 100px;
}
.trust-chip svg { width: 18px; height: 18px; stroke: var(--terra-lt); flex: none; }

/* ============ STORY ============ */
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; margin-top: 30px; }
.pets-photos { display: flex; gap: 22px; }
.pet-photo { flex: 1; position: relative; }
.pet-photo.single { transform: rotate(-2deg); }
.pet-photo .ph-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.pet-photo img {
  display: block; width: 100%;
  transform: scale(1.22);
  transform-origin: 50% 92%;
}
.pet-photo .placeholder, .node-stage .placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: linear-gradient(155deg, #2A2015, #17110B);
  border: 1px solid rgba(212, 165, 116, 0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--faint); font-size: 14px; font-weight: 500;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.pet-photo .placeholder svg, .node-stage .placeholder svg { width: 44px; height: 44px; stroke: var(--terra-lt); opacity: 0.7; }
.pet-photo .tag {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-d); font-style: italic; font-size: 17px;
  color: #1A120B;
  background: linear-gradient(120deg, var(--terra-lt), var(--terra));
  padding: 6px 20px; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(226, 114, 91, 0.4);
}
.story-text .kicker { font-family: var(--font-d); font-size: clamp(21px, 2.4vw, 27px); color: var(--text); margin-bottom: 20px; }
.story-text .kicker em { color: var(--terra-lt); }
.story-text p:not(.kicker) { font-size: 16.5px; color: var(--muted); margin-bottom: 16px; }
.story-text strong { color: var(--text); }
.story-quote {
  margin-top: 26px;
  padding: 20px 24px;
  border-left: 3px solid var(--terra-lt);
  background: rgba(212, 165, 116, 0.06);
  border-radius: 0 16px 16px 0;
  font-family: var(--font-d);
  font-style: italic;
  font-size: 16.5px;
  color: var(--text);
}
.story-quote span { display: block; margin-top: 12px; font-style: normal; font-size: 13.5px; color: var(--terra-lt); }
@media (max-width: 980px) { .story-grid { grid-template-columns: 1fr; gap: 60px; } }

/* ============ NODE ============ */
.node-stage-wrap { position: relative; width: min(432px, 80vw); margin: 70px auto 0; }
.node-stage { position: relative; z-index: 2; }
.node-stage img {
  display: block; width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}
.node-orbit {
  position: absolute; inset: -46px;
  border: 1px dashed rgba(212, 165, 116, 0.25);
  border-radius: 50%;
  animation: orbit 26s linear infinite;
}
.node-orbit.o2 { inset: -90px; animation-duration: 44s; animation-direction: reverse; border-color: rgba(45, 212, 191, 0.18); }
@keyframes orbit { to { transform: rotate(360deg); } }
.node-orbit .sat {
  position: absolute; top: -7px; left: 50%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--terra-lt);
  box-shadow: 0 0 18px var(--terra-lt);
}
.node-orbit.o2 .sat { background: var(--teal); box-shadow: 0 0 18px var(--teal); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(212, 165, 116, 0.4); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: 17px; font-weight: 600; color: var(--text);
  text-align: left;
  padding: 22px 26px;
}
.faq-q svg { width: 20px; height: 20px; stroke: var(--terra-lt); flex: none; transition: transform 0.35s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-a p { padding: 0 26px 24px; font-size: 15.5px; color: var(--muted); }

/* ============ FINAL CTA ============ */
.final-cta { padding: 170px 0; }
.final-cta .waitlist { margin: 40px 0 0; }

/* ============ FOOTER ============ */
footer { padding: 60px 0 46px; border-top: 1px solid rgba(212, 165, 116, 0.10); overflow: hidden; }
.footer-partner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 36px 40px;
  margin-bottom: 42px;
  background: linear-gradient(150deg, rgba(190, 113, 52, 0.14), var(--glass));
  border: 1px solid rgba(190, 113, 52, 0.4);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 50px rgba(190, 113, 52, 0.12);
}
.footer-partner h3 { font-family: var(--font-d); font-weight: 700; font-size: 26px; margin-bottom: 6px; }
.footer-partner p { font-size: 15.5px; color: var(--muted); max-width: 520px; }
.partner-cta {
  display: inline-block; flex: none;
  padding: 15px 30px; border-radius: 100px;
  background: linear-gradient(120deg, var(--terra-lt), var(--terra));
  color: #1A120B;
  font-weight: 700; font-size: 15.5px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(190, 113, 52, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.partner-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(190, 113, 52, 0.55); }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 12px; border: 1px solid var(--glass-border); transition: border-color 0.3s; }
.footer-social a:hover { border-color: var(--terra-lt); }
.footer-social svg { width: 17px; height: 17px; stroke: var(--muted); }
.footer-social a:hover svg { stroke: var(--terra-lt); }
.footer-social .footer-mail { width: auto; padding: 0 16px; font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footer-social .footer-mail:hover { color: var(--terra-lt); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-logo); font-size: 18px; font-weight: 700; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.fine { font-size: 13.5px; color: var(--faint); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--terra-lt); }

/* ============ RESPONSIVO GERAL ============ */
@media (max-width: 700px) {
  section { padding: 100px 0; }
  .hero { padding-top: 110px; }
  .wrap { padding: 0 22px; }
}

.petguia-section .section-label { color: var(--teal); }

/* ============ MOBILE (≤980px): fixes de overflow e rodapé — desktop intocado ============ */
@media (max-width: 980px) {
  html { overflow-x: hidden; }

  /* rodapé: nada vaza, tudo centralizado */
  .footer-partner { text-align: center; }
  .footer-social { flex-wrap: wrap; justify-content: center; }
  .footer-social .footer-mail { padding: 10px 16px; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; gap: 12px; }
}

/* nav compacta em telas pequenas (botão "Entrar na lista" inteiro) */
@media (max-width: 560px) {
  .nav-inner { padding: 0 18px; }
  .nav-brand { font-size: 17px; gap: 8px; }
  .nav-brand img { width: 29px; height: 29px; }
  .nav-cta { padding: 8px 15px; font-size: 13px !important; }
}
