/*
 * CODEX PROIBIDO — style.css
 * Landing Page: O Grande Flash Solar
 * Versão: 1.0 · Hostinger Static Export
 */

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

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:    #05070d;
  --deep:   #0a0f1e;
  --panel:  #0f1623;
  --edge:   #1a2436;
  --gold:   #b8973a;
  --gold2:  #d4af5a;
  --gold3:  #f0d080;
  --ash:    #8a96a8;
  --paper:  #dce4f0;
  --white:  #f5f8ff;
  --stamp:  #7a1515;
  --sol:    #e8600a;
  --sol2:   #ff8c35;
  --sol3:   #ffb86c;
}

/* ─── BASE ───────────────────────────────────────────────────── */
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .025;
  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;
}

section { position: relative; }

/* ─── URGENCY BAR ────────────────────────────────────────────── */
.urgency-bar {
  background: linear-gradient(90deg, #3d1200, #6b2400, #3d1200);
  padding: 11px 40px;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #ffc89a;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}

.blink {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sol2); animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 500;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}

.site-header.scrolled {
  background: rgba(5,7,13,.95);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(232,96,10,.15);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold2); text-decoration: none;
}
.logo span { color: var(--ash); font-weight: 300; }

.header-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sol2); border: 1px solid rgba(232,96,10,.45);
  padding: 9px 20px; text-decoration: none;
  transition: background .2s, color .2s;
}
.header-cta:hover { background: var(--sol); color: var(--ink); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 130px 40px 90px;
  position: relative; overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 38% at 50% 18%, rgba(232,96,10,.12) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 22%, rgba(184,151,58,.05) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(232,96,10,.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(184,151,58,.025) 80px, rgba(184,151,58,.025) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(184,151,58,.025) 80px, rgba(184,151,58,.025) 81px);
}

.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(232,96,10,.35), transparent);
  height: 1px; width: 60%; left: 20%;
  animation: scanline 9s ease-in-out infinite;
}
.hero-line:nth-child(1){top:18%;animation-delay:0s;opacity:.5}
.hero-line:nth-child(2){top:55%;animation-delay:3.5s;opacity:.28;width:40%;left:30%}
.hero-line:nth-child(3){top:78%;animation-delay:7s;opacity:.18}

@keyframes scanline {
  0%,100%{opacity:0;transform:scaleX(.2)}
  50%{opacity:1;transform:scaleX(1)}
}

.sun-bg {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(232,96,10,.07) 0%, rgba(232,96,10,.03) 40%, transparent 70%);
  animation: sun-pulse 6s ease-in-out infinite;
}

@keyframes sun-pulse {
  0%,100%{transform:translateX(-50%) scale(1);opacity:.6}
  50%{transform:translateX(-50%) scale(1.12);opacity:1}
}

.classified {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--stamp); border: 2px solid var(--stamp);
  padding: 4px 16px; display: inline-block; margin-bottom: 32px;
  transform: rotate(-1.5deg);
  opacity: 0; animation: fadeIn .6s .3s forwards;
}

.serie-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sol); margin-bottom: 20px; display: block;
  opacity: 0; animation: fadeIn .6s .2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7.5vw, 100px);
  font-weight: 300; line-height: 1;
  letter-spacing: -1px; color: var(--white);
  max-width: 860px;
  opacity: 0; animation: riseUp 1s .5s cubic-bezier(.16,1,.3,1) forwards;
}

.hero h1 em { font-style: italic; color: var(--gold2); }

.title-sol {
  display: block;
  background: linear-gradient(100deg, var(--sol), var(--sol2), var(--gold3), var(--sol2), var(--sol));
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  font-weight: 700;
}

@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }

.hero-deck {
  margin-top: 28px; font-size: 18px; line-height: 1.75;
  color: var(--ash); max-width: 580px;
  opacity: 0; animation: riseUp 1s .7s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-deck strong { color: var(--paper); }

.hero-quote {
  margin-top: 36px; max-width: 600px;
  border-left: 2px solid var(--sol);
  padding-left: 24px; text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; line-height: 1.55;
  color: var(--sol3);
  opacity: 0; animation: riseUp 1s .85s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-ctas {
  display: flex; gap: 14px; margin-top: 48px;
  flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: riseUp 1s .95s cubic-bezier(.16,1,.3,1) forwards;
}

/* ─── BOTÕES ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 17px 34px; text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden; transition: transform .2s;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent -50%, rgba(255,255,255,.12) 50%, transparent 150%);
  transform: translateX(-200%); transition: transform .55s;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateX(200%); }

.btn-primary {
  background: linear-gradient(135deg, var(--sol), var(--sol2));
  color: var(--ink); font-weight: 500;
  box-shadow: 0 0 50px rgba(232,96,10,.3), 0 4px 24px rgba(0,0,0,.6);
}
.btn-secondary {
  background: transparent; color: var(--gold2);
  border: 1px solid rgba(184,151,58,.35);
}
.btn-secondary:hover { border-color: var(--gold2); }

/* ─── SOCIAL PROOF ───────────────────────────────────────────── */
.sp {
  margin-top: 60px; display: flex; gap: 44px;
  flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeIn 1s 1.3s forwards;
}
.sp-item { text-align: center; }
.sp-num {
  font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600;
  color: var(--gold2); display: block; line-height: 1;
}
.sp-label {
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 2px;
  color: var(--ash); text-transform: uppercase; margin-top: 5px; display: block;
}
.sp-div { width: 1px; background: rgba(184,151,58,.18); align-self: stretch; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 3px;
  color: var(--ash); text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 2s forwards;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--sol), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes pulse{0%,100%{opacity:.25}50%{opacity:1}}
@keyframes fadeIn{to{opacity:1}}
@keyframes riseUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.inner { max-width: 1120px; margin: 0 auto; padding: 0 48px; }

.tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 4px;
  color: var(--sol); text-transform: uppercase; margin-bottom: 16px; display: block;
}

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 54px); font-weight: 300; line-height: 1.1;
  color: var(--white);
}
.h2 em { font-style: italic; color: var(--gold2); }

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}

/* ─── ALERTA CIENTÍFICO ──────────────────────────────────────── */
.alert {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(232,96,10,.06) 0%, rgba(10,15,30,0) 60%);
  border-top: 1px solid rgba(232,96,10,.18);
  border-bottom: 1px solid rgba(232,96,10,.18);
}
.alert-inner { max-width: 780px; margin: 0 auto; padding: 0 48px; text-align: center; }
.alert h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 300;
  color: var(--white); line-height: 1.25; margin-bottom: 20px;
}
.alert h2 em { color: var(--sol2); font-style: italic; }
.alert p { font-size: 16px; color: var(--ash); line-height: 1.85; }
.alert p strong { color: var(--paper); }

.sci-row { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.sci-item {
  background: var(--panel); border: 1px solid rgba(232,96,10,.15);
  padding: 20px 28px; text-align: center; min-width: 160px; position: relative;
}
.sci-item::before {
  content: ''; position: absolute; top:0; left:0; right:0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sol), transparent);
}
.sci-num {
  font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600;
  color: var(--sol2); line-height: 1; display: block;
}
.sci-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 1.5px;
  color: var(--ash); text-transform: uppercase; margin-top: 6px; display: block;
}

/* ─── CAPÍTULOS ──────────────────────────────────────────────── */
.inside { padding: 120px 0; background: var(--ink); }
.inside-intro { max-width: 620px; font-size: 16px; color: var(--ash); line-height: 1.85; margin: 20px 0 72px; }

.caps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

.cap {
  background: var(--panel); border: 1px solid var(--edge);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.cap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,96,10,.05) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.cap:hover { border-color: rgba(232,96,10,.3); transform: translateY(-4px); box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 30px rgba(232,96,10,.07); }
.cap:hover::after { opacity: 1; }

.cap-num { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2.5px; color: var(--sol); margin-bottom: 14px; display: block; }
.cap-ico { font-size: 26px; margin-bottom: 12px; display: block; }
.cap h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.cap p { font-size: 13px; color: var(--ash); line-height: 1.7; }
.cap-tag { display: inline-block; margin-top: 16px; font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sol); border: 1px solid rgba(232,96,10,.28); padding: 3px 10px; }

.pull-quote {
  margin: 64px 0 0;
  border-left: 2px solid var(--sol); padding: 28px 36px;
  background: linear-gradient(90deg, rgba(232,96,10,.05) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px); font-style: italic; line-height: 1.55; color: var(--sol3);
}
.pull-quote cite { display: block; margin-top: 16px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; color: var(--ash); font-style: normal; text-transform: uppercase; }

/* ─── URGÊNCIA ───────────────────────────────────────────────── */
.urgencia { padding: 120px 0; background: linear-gradient(to bottom, var(--ink), var(--deep) 50%, var(--ink)); }
.urg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.urg-text p { font-size: 16px; line-height: 1.9; color: var(--ash); margin-bottom: 20px; }
.urg-text p strong { color: var(--paper); }
.urg-text blockquote { border-left: 2px solid var(--sol); padding-left: 22px; margin: 32px 0; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-style: italic; color: var(--sol3); line-height: 1.5; }

.stats-col { display: flex; flex-direction: column; gap: 20px; }
.stat { background: var(--panel); border: 1px solid rgba(184,151,58,.1); padding: 26px 30px; position: relative; }
.stat::before { content: ''; position: absolute; top:0; left:0; right:0; height: 1px; background: linear-gradient(90deg, transparent, var(--sol), transparent); }
.stat .n { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; color: var(--sol2); line-height: 1; display: block; }
.stat .d { font-size: 13px; color: var(--ash); margin-top: 6px; line-height: 1.6; }

/* ─── ORDER BUMP ─────────────────────────────────────────────── */
.bump-strip { padding: 60px 0; background: linear-gradient(90deg, rgba(184,151,58,.035), rgba(10,15,30,0) 50%, rgba(184,151,58,.035)); border-top: 1px solid rgba(184,151,58,.12); border-bottom: 1px solid rgba(184,151,58,.12); }
.bump-inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.bump-ico { font-size: 52px; flex-shrink: 0; }
.bump-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.bump-body p { font-size: 14px; color: var(--ash); line-height: 1.75; }
.bump-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,151,58,.3); padding: 6px 14px; }

/* ─── OFERTA ─────────────────────────────────────────────────── */
.oferta { padding: 120px 0; background: linear-gradient(180deg, var(--ink) 0%, var(--deep) 100%); }
.oferta-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.check-list h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 30px; line-height: 1.3; }
.check-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--edge); }
.check-item:last-child { border-bottom: none; }
.check-icon { width: 20px; height: 20px; min-width: 20px; border: 1px solid var(--sol); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--sol); margin-top: 2px; }
.check-item h4 { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.check-item p { font-size: 12px; color: var(--ash); line-height: 1.6; }

.price-card { background: var(--panel); border: 1px solid rgba(232,96,10,.28); padding: 38px 34px; position: relative; overflow: hidden; box-shadow: 0 48px 100px rgba(0,0,0,.65), 0 0 70px rgba(232,96,10,.05); }
.price-card::before { content: ''; position: absolute; top:0; left:0; right:0; height: 2px; background: linear-gradient(90deg, transparent, var(--sol), var(--sol2), var(--gold3), var(--sol2), var(--sol), transparent); }
.price-badge { display: inline-block; margin-bottom: 22px; background: rgba(232,96,10,.1); border: 1px solid var(--sol); color: var(--sol2); font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; }
.price-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.price-sub { font-size: 13px; color: var(--ash); margin-bottom: 28px; line-height: 1.6; }
.price-was { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--ash); text-decoration: line-through; display: block; margin-bottom: 6px; }
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-cur { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold2); }
.price-val { font-family: 'Cormorant Garamond', serif; font-size: 76px; font-weight: 600; color: var(--sol); line-height: 1; }
.price-note { font-size: 11px; color: var(--ash); margin-bottom: 28px; }

.price-cta { display: block; width: 100%; padding: 18px; background: linear-gradient(135deg, var(--sol), var(--sol2)); color: var(--ink); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; text-align: center; text-decoration: none; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s; box-shadow: 0 0 50px rgba(232,96,10,.3); position: relative; overflow: hidden; }
.price-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent -50%, rgba(255,255,255,.18) 50%, transparent 150%); transform: translateX(-200%); transition: transform .55s; }
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 60px rgba(232,96,10,.45); }
.price-cta:hover::before { transform: translateX(200%); }

.guarantee { display: flex; gap: 12px; align-items: center; margin-top: 18px; padding: 14px; background: rgba(184,151,58,.04); border: 1px solid var(--edge); }
.guarantee .g-ico { font-size: 22px; }
.guarantee p { font-size: 11px; color: var(--ash); line-height: 1.5; }
.guarantee strong { color: var(--paper); }

.bonus-wrap { margin-top: 26px; border-top: 1px solid var(--edge); padding-top: 22px; }
.bonus-label { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 2px; color: var(--sol); text-transform: uppercase; margin-bottom: 12px; }
.bonus-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 8px; font-size: 12px; color: var(--ash); }
.bonus-item::before { content: '+'; color: var(--sol); font-family: 'DM Mono', monospace; font-weight: 500; flex-shrink: 0; }

/* ─── TIMER ──────────────────────────────────────────────────── */
.timer { margin-top: 26px; padding: 18px; text-align: center; border: 1px solid rgba(232,96,10,.22); background: rgba(232,96,10,.04); }
.timer-label { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 2px; color: var(--sol2); text-transform: uppercase; margin-bottom: 10px; display: block; }
.timer-digs { display: flex; gap: 7px; justify-content: center; align-items: center; }
.timer-unit { text-align: center; }
.timer-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; color: var(--white); display: block; line-height: 1; background: var(--panel); padding: 7px 12px; min-width: 54px; border: 1px solid rgba(232,96,10,.22); }
.timer-sub { font-family: 'DM Mono', monospace; font-size: 7px; letter-spacing: 1.5px; color: var(--ash); text-transform: uppercase; margin-top: 4px; display: block; }
.timer-colon { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: rgba(232,96,10,.5); margin-bottom: 16px; }

/* ─── DEPOIMENTOS ────────────────────────────────────────────── */
.testi { padding: 120px 0; background: var(--ink); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.testi-card { background: var(--panel); border: 1px solid var(--edge); padding: 30px; position: relative; overflow: hidden; transition: border-color .3s, transform .3s; }
.testi-card:hover { border-color: rgba(184,151,58,.22); transform: translateY(-3px); }
.testi-card::before { content: '"'; position: absolute; top: -12px; right: 18px; font-family: 'Cormorant Garamond', serif; font-size: 110px; font-weight: 700; color: rgba(184,151,58,.05); line-height: 1; pointer-events: none; }
.stars { color: var(--sol); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-txt { font-size: 13px; color: var(--ash); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testi-txt strong { color: var(--paper); font-style: normal; }
.testi-who { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--edge); padding-top: 18px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--sol), var(--edge)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600; color: var(--ink); }
.testi-name { font-size: 12px; color: var(--white); font-weight: 500; }
.testi-city { font-size: 10px; color: var(--ash); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 120px 0; background: linear-gradient(180deg, var(--ink), var(--deep)); }
.faq-list { margin-top: 60px; max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--edge); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; text-align: left; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 400; color: var(--paper); transition: color .2s; }
.faq-q:hover { color: var(--gold2); }
.faq-ico { width: 22px; height: 22px; border: 1px solid rgba(184,151,58,.28); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); flex-shrink: 0; margin-left: 18px; transition: transform .3s, background .3s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: rgba(184,151,58,.08); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-ans { max-height: 320px; }
.faq-ans p { font-size: 13px; color: var(--ash); line-height: 1.8; padding-bottom: 22px; }

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.final { padding: 140px 0; text-align: center; position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 65% at 50% 50%, rgba(232,96,10,.07) 0%, transparent 65%); pointer-events: none; }
.final .classified { margin-bottom: 22px; }
.final h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5.5vw, 68px); font-weight: 300; line-height: 1.1; color: var(--white); max-width: 760px; margin: 0 auto 20px; }
.final h2 em { color: var(--gold2); font-style: italic; }
.final-line { width: 72px; height: 1px; background: linear-gradient(90deg, transparent, var(--sol), transparent); margin: 0 auto 44px; }
.final p { font-size: 15px; color: var(--ash); max-width: 500px; margin: 0 auto 48px; line-height: 1.85; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--edge); padding: 44px; text-align: center; background: var(--ink); }
.site-footer p { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; color: var(--ash); text-transform: uppercase; margin-bottom: 7px; }
.site-footer a { color: rgba(184,151,58,.45); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 14px 22px; }
  .inner { padding: 0 22px; }
  .alert-inner { padding: 0 22px; }
  .hero { padding: 100px 22px 80px; }
  .urg-grid { grid-template-columns: 1fr; gap: 44px; }
  .oferta-grid { grid-template-columns: 1fr; gap: 44px; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 310px; justify-content: center; }
  .bump-inner { flex-direction: column; }
  .final-ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .sp { gap: 22px; }
  .sp-div { display: none; }
  .urgency-bar { font-size: 9px; gap: 10px; padding: 9px 16px; }
  .caps-grid { grid-template-columns: 1fr; }
  .sci-row { flex-direction: column; align-items: center; }
}
