/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-deep:   #060E1A;
  --navy-mid:    #0F2040;
  --navy-light:  #1A2E4A;
  --cream:       #F5F0E8;
  --cream-warm:  #EDE5D8;
  --cream-deep:  #DDD3C3;
  --gold:        #B8953A;
  --gold-light:  #D4AE5E;
  --gold-bright: #EAC97A;
  --gold-soft:   rgba(184, 149, 58, 0.14);
  --gold-glow:   rgba(184, 149, 58, 0.28);
  --terra:       #C4614A;
  --terra-soft:  rgba(196, 97, 74, 0.14);
  --slate:       #8B9EB7;
  --slate-soft:  rgba(139, 158, 183, 0.12);
  --text:        #F0EDE8;
  --text-soft:   rgba(240, 237, 232, 0.82);
  --text-muted:  rgba(240, 237, 232, 0.56);
  --ink:         #152033;
  --ink-soft:    rgba(21, 32, 51, 0.68);
  --ink-muted:   rgba(21, 32, 51, 0.44);
  --surface:     rgba(10, 22, 40, 0.68);
  --surface-str: rgba(8, 16, 30, 0.88);
  --line:        rgba(240, 237, 232, 0.08);
  --line-str:    rgba(240, 237, 232, 0.15);
  --gold-gradient: linear-gradient(135deg, #EAC97A 0%, #B8953A 52%, #8A6820 100%);
  --dark-gradient: linear-gradient(180deg, #0A1628 0%, #060E1A 100%);
  --light-gradient: linear-gradient(180deg, #F5F0E8 0%, #EDE5D8 100%);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 8px 32px rgba(184, 149, 58, 0.22);
  --container: min(1200px, calc(100vw - 48px));
  --radius-pill: 999px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body: "DM Sans", "Inter", system-ui, sans-serif;
  --transition: 240ms cubic-bezier(0.22, 0.68, 0.2, 1);
}

/* ── SCROLLBAR CUSTOMIZADA ──────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--navy-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-soft);
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy-deep); /* Margem interna simulada */
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--dark-gradient);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: var(--dark-gradient); pointer-events: none; }
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button, input, select, textarea, a { font: inherit; }
p  { margin: 0; }

.skip-link { position: absolute; left: -9999px; top: 1rem; z-index: 200; background: white; color: black; padding: 12px 20px; border-radius: 8px; }
.skip-link:focus { left: 1rem; }

/* ── PRELOADER ──────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: grid;
  place-items: center;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader-content img {
  width: 180px;
  opacity: 0;
  animation: fadeUpIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.preloader-line {
  width: 0px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--radius-pill);
  /* A linha cresce sutilmente após a logo aparecer */
  animation: lineGrow 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 140px; opacity: 1; }
}

/* ── GRID ───────────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }

/* ── TIPOGRAFIA ─────────────────────────────────────────── */
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.0; letter-spacing: -0.025em; overflow-wrap: break-word; word-wrap: break-word; }
h1 { font-weight: 700; }

/* ── NOISE & PROGRESS BAR ───────────────────────────────── */
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.025; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 80px 80px; }
.progress { position: fixed; inset: 0 0 auto; z-index: 80; height: 2px; }
.progress span { display: block; height: 100%; width: 0; background: var(--gold-gradient); }

/* ── EYEBROW ────────────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 0 0 0 16px; background: transparent; border: none; border-left: 2px solid var(--gold); border-radius: 0; color: var(--gold-light); font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow-dark { border-color: var(--gold); color: var(--gold); }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 70; transition: background var(--transition), box-shadow var(--transition), border-color var(--transition); }
.site-header.is-scrolled { background: rgba(6, 14, 26, 0.82); backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3); box-shadow: 0 1px 0 var(--line-str), 0 16px 48px rgba(0,0,0,0.22); }
.header-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(180px, 18vw, 260px); }

.header-nav { display: flex; align-items: center; gap: 28px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.01em; }
.header-nav a { position: relative; transition: color var(--transition); }
.header-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--gold-gradient); transform: scaleX(0); transform-origin: right; transition: transform var(--transition); }
.header-nav a:hover, .header-nav a:focus-visible { color: var(--text); }
.header-nav a:hover::after, .header-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* ── BOTÕES ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border-radius: var(--radius-pill); border: 1px solid transparent; font-family: var(--font-body); font-weight: 600; font-size: 0.93rem; letter-spacing: 0.01em; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition); white-space: nowrap; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold-glow); outline-offset: 3px; }

.btn-primary { color: var(--navy-deep); background: var(--gold-gradient); box-shadow: var(--shadow-gold); }
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: 0 12px 48px rgba(184, 149, 58, 0.42); }
.btn-secondary { color: var(--text); background: rgba(240, 237, 232, 0.05); border-color: var(--line-str); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: rgba(240, 237, 232, 0.08); border-color: rgba(184, 149, 58, 0.32); }
.btn-large { min-height: 60px; padding-inline: 34px; font-size: 1rem; }
.btn-header { min-height: 44px; padding-inline: 20px; font-size: 0.85rem; }

/* ── BARRAS FLUTUANTES ──────────────────────────────────── */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; padding: 14px 0; background: rgba(6, 14, 26, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--line-str); display: flex; align-items: center; justify-content: center; gap: 20px; transform: translateY(100%); transition: transform 380ms cubic-bezier(0.22, 0.68, 0.2, 1); }
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar-text { font-size: 0.92rem; color: var(--text-soft); }
.sticky-bar-text strong { color: var(--gold-light); font-weight: 600; }

.mobile-buy { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 65; min-height: 62px; padding: 0 20px; border-radius: var(--radius-pill); background: rgba(6, 14, 26, 0.94); color: var(--text); border: 1px solid var(--line-str); box-shadow: var(--shadow-lg); display: none; align-items: center; justify-content: space-between; gap: 12px; backdrop-filter: blur(18px); }
.mobile-buy strong { color: var(--gold-light); font-size: 1.05rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { padding: 64px 0 100px; position: relative; }
.hero::before { content: "§"; position: absolute; right: 2%; top: -3%; font-family: var(--font-display); font-size: clamp(320px, 50vw, 800px); font-weight: 700; color: rgba(184, 149, 58, 0.06); line-height: 1; pointer-events: none; user-select: none; z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; }

/* Hero copy: Grid mestre no Desktop para posicionar visual à direita */
.hero-copy {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    "eyebrow   visual"
    "title     visual"
    "lead      visual"
    "trust     visual"
    "list      visual"
    "actions   visual"
    "guarantee visual";
  align-items: center; 
}

.hero-copy > .eyebrow { grid-area: eyebrow; }
.hero-copy > h1       { grid-area: title; }
.hero-copy > .hero-visual { grid-area: visual; }
.hero-copy > .hero-lead { grid-area: lead; }
.hero-copy > .hero-trust { grid-area: trust; }
.hero-copy > .hero-list { grid-area: list; }
.hero-copy > .hero-actions { grid-area: actions; }
.hero-copy > .hero-guarantee { grid-area: guarantee; }

.hero-copy h1 { font-size: clamp(3.6rem, 7.2vw, 6.8rem); max-width: 10ch; line-height: 0.94; }
.hero-copy h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead { max-width: 52ch; color: var(--text-soft); font-size: 1.06rem; line-height: 1.75; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--radius-pill); border: 1px solid var(--line-str); background: rgba(240, 237, 232, 0.04); font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.trust-badge b { color: var(--gold-light); font-weight: 600; }

.hero-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; max-width: 52ch; }
.hero-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }
.hero-list li::before { content: ""; width: 5px; height: 5px; flex: 0 0 5px; margin-top: 0.55em; border-radius: 50%; background: var(--gold); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-guarantee { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.hero-guarantee::before { content: ""; display: inline-block; width: 14px; height: 14px; background: var(--gold-soft); border: 1px solid rgba(184, 149, 58, 0.3); border-radius: 50%; flex-shrink: 0; }

.hero-visual { min-width: 0; }
.hero-stage { position: relative; min-height: 680px; border-radius: var(--radius-lg); overflow: hidden; background: rgba(10, 22, 40, 0.8); border: 1px solid var(--line-str); box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(240,237,232,0.05); display: grid; place-items: center; padding: 36px; }
.hero-stage::before { content: ""; position: absolute; inset: 14px; border-radius: calc(var(--radius-lg) - 8px); border: 1px solid rgba(184, 149, 58, 0.08); pointer-events: none; }

.hero-glow { position: absolute; filter: blur(80px); pointer-events: none; opacity: 0.6; }
.hero-glow-a { width: 260px; height: 260px; background: rgba(66, 100, 180, 0.3); top: -40px; left: -20px; }
.hero-glow-b { width: 200px; height: 200px; background: rgba(184, 149, 58, 0.2); right: 10px; top: 20px; }

.pack-frame { position: relative; width: min(100%, 540px); aspect-ratio: 1; display: grid; place-items: center; }
.pack-frame::after { content: ""; position: absolute; inset: auto 15% 4% 15%; height: 16%; border-radius: 999px; background: radial-gradient(circle, rgba(0,0,0,0.5), transparent 66%); filter: blur(18px); z-index: 0; }
.pack-image { position: relative; z-index: 1; width: 100%; max-width: 520px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5)); }

.offer-chip { position: absolute; z-index: 3; padding: 14px 18px; border-radius: var(--radius-md); background: rgba(6, 14, 26, 0.82); border: 1px solid var(--line-str); box-shadow: var(--shadow-md); backdrop-filter: blur(20px); display: grid; gap: 2px; }
.offer-chip strong { font-size: 1.05rem; color: var(--gold-bright); font-family: var(--font-display); font-weight: 600; }
.offer-chip span   { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.offer-chip-price  { left: 24px; top: 24px; }
.offer-chip-safe   { right: 24px; bottom: 24px; }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { padding: 16px 0 48px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; background: transparent; border-top: 1px solid var(--line-str); border-bottom: 1px solid var(--line-str); }
.trust-grid article { padding: 32px 24px; background: transparent; border: none; border-radius: 0; border-right: 1px solid var(--line-str); display: grid; gap: 12px; transition: background var(--transition); }
.trust-grid article:last-child { border-right: none; }
.trust-grid article:hover { background: rgba(240, 237, 232, 0.02); }
.trust-grid strong { color: var(--gold-light); font-family: var(--font-display); font-size: 3.4rem; font-weight: 500; line-height: 0.9; }
.trust-grid span { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* ── SEÇÕES ─────────────────────────────────────────────── */
.section { padding: 120px 0; }
.section-light { color: var(--ink); background: var(--light-gradient); }
.section-light p, .section-light li { color: var(--ink-soft); }
.section-dark  { background: transparent; }
.section-contrast { background: linear-gradient(180deg, #F5F0E8 0%, #EAE0CF 100%); color: var(--ink); }
.section-offer { padding-top: 16px; padding-bottom: 120px; }

.section-copy, .section-head { display: grid; gap: 24px; }
.section-copy h2, .section-head h2 { font-size: clamp(2.6rem, 4.8vw, 4.6rem); line-height: 1.0; }
.section-copy h2 em, .section-head h2 em { font-style: italic; color: var(--gold); }
.section-copy h2 span, .section-head h2 span { color: #8A6820; }
.section-copy p, .section-head p { max-width: 58ch; }

/* ── SPLIT / RISK ───────────────────────────────────────── */
.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr); gap: 56px; align-items: center; }
.risk-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 8px; }
.risk-cards article { padding: 22px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.6); border: 1px solid rgba(21, 32, 51, 0.07); box-shadow: 0 12px 28px rgba(32, 37, 49, 0.06); display: grid; gap: 8px; }
.risk-cards strong { color: var(--ink); font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
.risk-cards p { font-size: 0.93rem; color: var(--ink-soft); }

/* ── KIT ────────────────────────────────────────────────── */
.kit-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 340px); gap: 28px; align-items: start; }
.kit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.kit-card { min-height: 180px; padding: 26px; border-radius: var(--radius-md); background: rgba(240, 237, 232, 0.03); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.kit-card:hover { transform: translateY(-4px); background: rgba(240, 237, 232, 0.055); border-color: rgba(184, 149, 58, 0.25); box-shadow: 0 16px 40px rgba(0,0,0,0.22); }
.kit-card h3 { color: var(--gold-bright); font-size: 1.35rem; line-height: 1.1; font-weight: 600; }
.kit-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

.kit-aside { position: sticky; top: 100px; display: grid; gap: 16px; }
.aside-note { padding: 22px; border-radius: var(--radius-md); background: rgba(240, 237, 232, 0.03); border: 1px solid var(--line); display: grid; gap: 10px; }
.aside-note strong { color: var(--gold-light); font-size: 1.06rem; font-weight: 600; }
.aside-note p { color: var(--text-muted); font-size: 0.92rem; }
.text-link { color: var(--gold-light); font-weight: 600; font-size: 0.93rem; width: fit-content; }

/* ── MEDIA CARDS (FOTOS) ────────────────────────────────── */
.media-stack { min-width: 0; }
.media-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line-str); background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep)); box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(240,237,232,0.04); }
.media-card__bg { position: absolute; inset: 0; background: radial-gradient(circle at 20% 18%, rgba(95, 139, 228, 0.22), transparent 26%), radial-gradient(circle at 82% 14%, rgba(184, 149, 58, 0.16), transparent 20%), linear-gradient(180deg, rgba(240,237,232,0.04), transparent 50%); }
.media-card::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 28%; background: linear-gradient(to top, rgba(6, 14, 26, 1) 0%, transparent 100%); pointer-events: none; z-index: 2; }
.media-card img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.media-card-envelope { min-height: 660px; padding: 24px 16px 0; }
.media-card-desk     { min-height: 500px; padding: 24px 16px 0; }
.media-card-standing { min-height: 740px; padding: 20px 20px 0; }

/* ── COMPARISON ─────────────────────────────────────────── */
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.comparison-card { padding: 30px; border-radius: var(--radius-md); background: rgba(255,255,255,0.8); border: 1px solid rgba(21, 32, 51, 0.07); box-shadow: 0 14px 32px rgba(32, 37, 49, 0.06); }
.comparison-card-off { background: rgba(255,255,255,0.6); }
.comparison-card-on { background: linear-gradient(160deg, #0F2040 0%, #0A1628 100%); border-color: var(--line-str); }
.comparison-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.comparison-card-on h3 { color: var(--gold-light); }
.comparison-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.comparison-card li { position: relative; padding-left: 16px; font-size: 0.93rem; }
.comparison-card li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.comparison-card-on  li { color: rgba(240,237,232,0.8); }
.comparison-card-off li { color: var(--ink-soft); }

/* ── AUTHORITY ───────────────────────────────────────────── */
.authority-grid { display: grid; grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.authority-copy { display: grid; gap: 26px; }
.authority-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); max-width: 14ch; line-height: 1.06; }
.authority-list { display: grid; gap: 12px; }
.authority-list article { padding: 20px 22px; border-radius: var(--radius-sm); background: rgba(240, 237, 232, 0.04); border: 1px solid var(--line); display: grid; gap: 4px; }
.authority-list strong { color: var(--gold-light); font-size: 1rem; font-weight: 600; font-family: var(--font-body); }
.authority-list span   { color: var(--text-muted); font-size: 0.92rem; }
.authority-list a      { color: var(--gold-light); }

/* ── OFERTA ─────────────────────────────────────────────── */
.section-offer { background: transparent; }
.offer-card { border-radius: var(--radius-lg); background: var(--light-gradient); color: var(--ink); display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 340px); gap: 40px; padding: 48px; box-shadow: 0 30px 70px rgba(0,0,0,0.22); overflow: hidden; position: relative; }
.offer-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 10%, rgba(184,149,58,0.12), transparent 22%), radial-gradient(circle at 16% 20%, rgba(90,126,214,0.07), transparent 18%); }
.offer-card::after { content: "§"; position: absolute; right: -2%; bottom: -8%; font-family: var(--font-display); font-size: 280px; font-weight: 700; color: rgba(21, 32, 51, 0.04); line-height: 1; pointer-events: none; user-select: none; }
.offer-copy, .offer-side { position: relative; z-index: 1; }
.offer-copy { display: grid; gap: 22px; }
.offer-copy h2 { font-size: clamp(2.6rem, 4.8vw, 4.4rem); max-width: 12ch; line-height: 1.0; }
.offer-copy h2 span { color: var(--gold); }
.offer-copy p, .offer-copy li, .offer-proof span { color: var(--ink-soft); }

.offer-anchor { padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(196, 97, 74, 0.08); border: 1px solid rgba(196, 97, 74, 0.16); display: flex; gap: 12px; align-items: flex-start; }
.offer-anchor-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--terra-soft); border: 1px solid rgba(196, 97, 74, 0.24); margin-top: 2px; }
.offer-anchor p { font-size: 0.88rem; color: var(--ink-soft) !important; line-height: 1.6; }
.offer-anchor strong { color: var(--terra) !important; font-weight: 600; }

.offer-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.offer-list li { position: relative; padding-left: 16px; font-size: 0.95rem; }
.offer-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.offer-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.offer-side { display: grid; place-items: center; }
.offer-side-card { width: 100%; border-radius: var(--radius-md); background: linear-gradient(180deg, rgba(15,32,64,0.98), rgba(6,14,26,1)); padding: 28px; box-shadow: var(--shadow-lg); display: grid; align-content: center; gap: 20px; }
.offer-side-card img { width: min(100%, 300px); margin-inline: auto; filter: drop-shadow(0 28px 50px rgba(0,0,0,0.4)); }
.offer-price-box { padding: 20px; border-radius: var(--radius-sm); background: rgba(240,237,232,0.04); border: 1px solid var(--line-str); display: grid; gap: 3px; text-align: center; }
.offer-price-box span, .offer-price-box small { color: var(--text-muted); font-size: 0.86rem; }
.offer-price-box strong { font-size: 3rem; color: var(--gold-bright); line-height: 1; font-family: var(--font-display); font-weight: 700; }

.guarantee-block { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(184, 149, 58, 0.06); border: 1px solid rgba(184, 149, 58, 0.16); margin-top: 4px; }
.guarantee-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(184, 149, 58, 0.3); background: rgba(184, 149, 58, 0.08); display: grid; place-items: center; font-family: var(--font-display); font-size: 1rem; color: var(--gold-light); font-weight: 600; }
.guarantee-text strong { display: block; font-size: 0.92rem; color: var(--navy-deep); font-weight: 600; margin-bottom: 3px; }
.guarantee-text span   { font-size: 0.82rem; color: var(--ink-soft); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: var(--radius-md); background: rgba(255,255,255,0.8); border: 1px solid rgba(21, 32, 51, 0.07); overflow: hidden; box-shadow: 0 8px 24px rgba(32,37,49,0.05); transition: box-shadow var(--transition); }
.faq-item.is-open { box-shadow: 0 12px 36px rgba(32,37,49,0.09); }
.faq-trigger { width: 100%; background: transparent; border: 0; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; color: var(--ink); font-weight: 600; font-size: 0.97rem; text-align: left; transition: color var(--transition); }
.faq-trigger:hover { color: var(--gold); }
.faq-icon { position: relative; width: 20px; height: 20px; flex: 0 0 20px; border-radius: 50%; border: 1px solid rgba(21, 32, 51, 0.14); background: rgba(21, 32, 51, 0.04); transition: border-color var(--transition), background var(--transition); }
.faq-item.is-open .faq-icon { border-color: rgba(184, 149, 58, 0.3); background: var(--gold-soft); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 10px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); transition: transform var(--transition), opacity var(--transition); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq-content p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { padding: 0 0 120px; }
.footer-grid { padding-top: 40px; border-top: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr)); gap: 28px; }
.footer-brand { display: grid; gap: 14px; }
.footer-brand img { width: min(240px, 100%); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-copy { padding-top: 24px; margin-top: 16px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.82rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(0.22, 0.68, 0.2, 1), transform 700ms cubic-bezier(0.22, 0.68, 0.2, 1); transition-delay: var(--delay, 0ms); }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── RESPONSIVO ───────────────────────────────────────── */
@media (max-width: 1120px) {
  .split-grid,
  .authority-grid,
  .faq-grid,
  .offer-card,
  .kit-layout { 
    grid-template-columns: 1fr; 
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }
  .hero-copy > .eyebrow { order: 0; }
  .hero-copy > h1       { order: 1; max-width: 100%; }
  .hero-visual          { order: 2; margin-bottom: 16px; }
  .hero-copy > .hero-lead { order: 3; }
  .hero-copy > .hero-trust { order: 4; }
  .hero-copy > .hero-list { order: 5; }
  .hero-copy > .hero-actions { order: 6; }
  .hero-copy > .hero-guarantee { order: 7; }

  .media-stack-risk,
  .kit-aside,
  .authority-visual,
  .offer-side {
    order: -1;
    margin-bottom: 16px;
  }

  .authority-grid { gap: 36px; }
  .hero-stage { min-height: 580px; }
  .kit-aside { position: static; grid-template-columns: 1fr minmax(260px, 300px); align-items: stretch; }
  .faq-grid { gap: 32px; }
  .authority-copy h2 { max-width: 100%; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hero { padding-top: 32px; }
  
  .trust-grid, .comparison-grid, .risk-cards, .kit-grid, .footer-grid, .kit-aside { 
    grid-template-columns: 1fr; 
  }
  
  .hero-stage { min-height: 480px; padding: 24px; }
  .media-card-envelope, .media-card-standing, .media-card-desk { min-height: 380px; }
  
  .section, .section-offer { padding: 88px 0; }
  .sticky-bar { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article {
    border-right: 1px solid var(--line-str);
    border-bottom: 1px solid var(--line-str);
    text-align: center;
    padding: 32px 16px;
  }
  .trust-grid article:nth-child(2n) { border-right: none; }
  .trust-grid article:nth-child(3), .trust-grid article:nth-child(4) { border-bottom: none; }
}

@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  .header-wrap { min-height: 70px; gap: 16px; }
  .brand img { width: 160px; }
  .header-cta { display: none; }

  .hero { padding-top: 16px; }
  .hero-copy { gap: 22px; }
  
  .hero-copy > h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-visual { margin-bottom: 0; } 
  .hero-copy > .hero-lead { font-size: 0.95rem; }
  
  .hero-stage { 
    min-height: 340px; 
    border-radius: 20px; 
    padding: 16px; 
    border-color: rgba(240, 237, 232, 0.04);
  }
  .hero-glow-a, .hero-glow-b { display: none; }
  .pack-frame { max-width: 90%; }
  
  .offer-chip { padding: 10px 14px; border-radius: 12px; }
  .offer-chip strong { font-size: 0.95rem; }
  .offer-chip span { font-size: 0.75rem; }
  .offer-chip-price { left: 10px; top: 10px; }
  .offer-chip-safe  { right: 10px; bottom: 10px; }

  .offer-card { padding: 32px 20px; border-radius: 20px; }
  .offer-copy h2 { font-size: clamp(2.2rem, 10vw, 3rem); }

  .btn { white-space: normal; text-align: center; line-height: 1.3; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line-str);
    padding: 28px 16px;
  }
  .trust-grid article:last-child { border-bottom: none; }

  .media-card-envelope, .media-card-standing, .media-card-desk { min-height: 300px; }

  .section, .section-offer { padding: 64px 0; }
  .mobile-buy { display: flex; }
  .site-footer { padding-bottom: 96px; }
  
  .footer-grid { gap: 32px; }
  .footer-copy { flex-direction: column; text-align: center; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}