/* ============================================================
   DESENTUPIDORA REI — Premium Emergency Landing
   Dark / Yellow neon / Glass
   ============================================================ */

/* SAFETY NET: if a third-party script (e.g. injected ad widget) delays
   or breaks the rest of this stylesheet, every icon SVG still has the
   width="24" height="24" attributes baked into its JSX as a baseline.
   This rule just keeps them from ever exceeding their container. */
svg { max-width: 100%; }

:root {
  --bg: #071018;
  --bg-2: #0a1622;
  --surface: #0f172a;
  --surface-2: #142036;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #f3f6fb;
  --ink-2: #b6c1d1;
  --ink-3: #6b7891;
  --accent: #facc15;
  --accent-glow: rgba(250, 204, 21, 0.35);
  --urgent: #ff6b00;
  --urgent-glow: rgba(255, 107, 0, 0.45);
  --wa: #25d366;
  --wa-glow: rgba(37, 211, 102, 0.45);
  --ok: #34d399;
  --maxw: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(250, 204, 21, 0.06), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(255, 107, 0, 0.05), transparent 55%),
    var(--bg);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: "Archivo", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
  margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 10px var(--accent-glow);
}

.section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}
.section-sub {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 640px;
  margin-top: 14px;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(7, 16, 24, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border-radius: 10px;
  box-shadow: 0 0 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  color: #0a0a0a;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.brand-crown {
  width: 46px; height: 38px;
  overflow: hidden;
  display: flex; align-items: flex-start; justify-content: center;
  filter: drop-shadow(0 0 14px var(--accent-glow));
}
.brand-crown img {
  width: 46px;
  height: auto;
  margin-top: -1px;
  /* Image is logo on transparent bg; crown occupies top ~58% */
  clip-path: inset(0 0 42% 0);
}
.brand-crown-lg {
  width: 64px; height: 52px;
}
.brand-crown-lg img {
  width: 64px;
}
.brand-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex; align-items: center; gap: 14px;
}

.badge-24h {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--ok);
  padding: 7px 12px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.badge-24h .live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  animation: livePulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px var(--ok);
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.tel-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.tel-link svg { width: 16px; height: 16px; color: var(--accent); }
.tel-link .pulse-ring {
  position: relative; width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.12);
}
.tel-link .pulse-ring::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; border: 1px solid var(--accent);
  animation: phonePulse 1.8s ease-out infinite;
}
@keyframes phonePulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2); opacity: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-wa {
  background: var(--wa);
  color: #052e16;
  box-shadow: 0 0 0 0 var(--wa-glow), 0 10px 30px -10px rgba(37, 211, 102, 0.6);
}
.btn-wa:hover { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.18), 0 14px 40px -10px rgba(37, 211, 102, 0.8); transform: translateY(-1px); }

.btn-urgent {
  background: var(--urgent);
  color: #1a0a00;
  box-shadow: 0 10px 36px -10px var(--urgent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  animation: urgentGlow 2.4s ease-in-out infinite;
}
.btn-urgent:hover { transform: translateY(-1px); box-shadow: 0 18px 50px -10px rgba(255, 107, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
@keyframes urgentGlow {
  0%, 100% { box-shadow: 0 10px 36px -10px var(--urgent-glow), inset 0 1px 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 10px 36px -10px var(--urgent-glow), 0 0 0 4px rgba(255, 107, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.25); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-urgent, .wa-float, .seal-outer, .live, .dot-pulse { animation: none !important; }
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }

.btn-yellow {
  background: var(--accent);
  color: #1a1505;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.btn-yellow:hover { transform: translateY(-1px); box-shadow: 0 18px 40px -10px var(--accent-glow); }

.btn-lg {
  padding: 18px 30px;
  font-size: 17px;
  min-height: 60px;
  border-radius: 14px;
}
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 75% 35%, rgba(250, 204, 21, 0.09), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(255, 107, 0, 0.05), transparent 55%),
    linear-gradient(180deg, #050b13 0%, #071018 60%, #0a1424 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  opacity: 0.5;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, var(--bg) 100%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: start;
}

.hero-left { max-width: 680px; }

.live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb37a;
}
.live-badge .dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--urgent);
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
  animation: dotPulse 1.4s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  filter: blur(0.5px);
}

.hero-sub {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.5;
  max-width: 540px;
}

.hero-bullets {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  max-width: 560px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink);
  list-style: none;
}
.hero-bullets .chk {
  width: 22px; height: 22px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 6px;
  color: var(--accent);
}
.hero-bullets ul, .hero-bullets { padding: 0; margin-block: 0; }

.hero-ctas {
  margin-top: 28px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-trust {
  margin-top: 26px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.stars-row { display: flex; align-items: center; gap: 10px; }
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.stars-row .meta { font-size: 13px; color: var(--ink-2); }
.stars-row .meta b { color: var(--ink); }

.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: linear-gradient(135deg, #facc15, #ff6b00);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: #1a0a00;
}
.avatar-stack .av:nth-child(1) { background: linear-gradient(135deg, #facc15, #f59e0b); margin-left: 0; }
.avatar-stack .av:nth-child(2) { background: linear-gradient(135deg, #34d399, #059669); color: #052e16; }
.avatar-stack .av:nth-child(3) { background: linear-gradient(135deg, #60a5fa, #2563eb); color: #0a1124; }
.avatar-stack .av:nth-child(4) { background: linear-gradient(135deg, #ff6b00, #c2410c); color: #1a0a00; }
.trust-pill { font-size: 13px; color: var(--ink-2); }
.trust-pill b { color: var(--ink); }

/* ============================================================
   CAPTURE CARD
   ============================================================ */
.capture-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 32, 54, 0.78), rgba(10, 18, 32, 0.78));
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(250, 204, 21, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.capture-card::before {
  content: ""; position: absolute; top: -1px; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 16px var(--accent-glow);
}
.capture-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.capture-head h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.capture-head .sub {
  font-size: 13px; color: var(--ink-2);
  margin-top: 6px;
}

.timer {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.timer .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--urgent);
}
.timer .clock {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 107, 0, 0.10);
  border: 1px solid rgba(255, 107, 0, 0.35);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(250, 204, 21, 0.04);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}
.field.err input { border-color: var(--urgent); }
.field .errmsg {
  margin-top: 6px; font-size: 12px; color: #ffb37a;
}

.capture-foot {
  margin-top: 6px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-3);
}
.capture-foot svg { width: 14px; height: 14px; color: var(--ok); }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  background: linear-gradient(180deg, #04090f, #060d17);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.proof-item {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.proof-item:first-child { border-left: none; padding-left: 0; }
.proof-item .num {
  font-family: "Archivo", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-item .num .pct { color: var(--accent); }
.proof-item .lbl {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}
.section-head .right { text-align: right; max-width: 360px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 32, 54, 0.6), rgba(10, 18, 32, 0.4));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  overflow: hidden;
  isolation: isolate;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(250, 204, 21, 0.14), transparent 60%);
  opacity: 0; transition: opacity 0.25s ease;
}
.svc-card:hover { border-color: rgba(250, 204, 21, 0.35); transform: translateY(-3px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.22);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h4 {
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.svc-card .svc-cta {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--wa);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc-card .svc-cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
.svc-card:hover .svc-cta svg { transform: translateX(4px); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
/* ============================================================
   SYMPTOM GRID (replaces before/after)
   ============================================================ */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.symptom-card {
  background: linear-gradient(180deg, rgba(20, 32, 54, 0.5), rgba(10, 18, 32, 0.4));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.symptom-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-3px);
}
.symptom-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-3);
}
.symptom-icon {
  width: 48px; height: 48px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--urgent);
  margin-bottom: 22px;
}
.symptom-icon svg { width: 24px; height: 24px; }
.symptom-card h4 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.symptom-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.symptom-cta {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.10), rgba(250, 204, 21, 0.05));
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}


/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.timeline::before {
  content: ""; position: absolute;
  left: 8%; right: 8%; top: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 12%, var(--accent) 88%, transparent);
  opacity: 0.4;
}
.tl-step {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.tl-num {
  position: relative; z-index: 1;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 18px;
  transition: all 0.2s;
}
.tl-step:hover .tl-num {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.tl-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.tl-step p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 180px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.test-card {
  background: linear-gradient(180deg, rgba(20, 32, 54, 0.45), rgba(10, 18, 32, 0.45));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.test-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.test-card .stars svg { width: 14px; height: 14px; }
.test-card .quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.test-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.test-meta .av {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #1a1505;
}
.test-meta .name { font-weight: 600; font-size: 14px; }
.test-meta .where { font-size: 12px; color: var(--ink-3); font-family: var(--mono); }
.test-tag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.25);
  color: var(--accent);
}

/* ============================================================
   B2B (CONDOMINIOS)
   ============================================================ */
.b2b-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.b2b-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.b2b-feat {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.b2b-feat .icon {
  width: 36px; height: 36px;
  background: rgba(250, 204, 21, 0.10);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 12px;
}
.b2b-feat .icon svg { width: 18px; height: 18px; }
.b2b-feat h5 { font-size: 14px; margin-bottom: 6px; font-family: "Archivo", sans-serif; }
.b2b-feat p { font-size: 13px; color: var(--ink-2); line-height: 1.4; }

.b2b-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.06), rgba(255, 107, 0, 0.04)),
    linear-gradient(180deg, #0c1828, #060b13);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.b2b-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(250,204,21,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(250,204,21,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 30%, black, transparent 70%);
  pointer-events: none;
}
.b2b-visual-top { position: relative; z-index: 1; }
.b2b-visual-top .eyebrow { color: var(--accent); }
.b2b-visual-top h3 {
  font-family: "Archivo", sans-serif;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-top: 14px;
  line-height: 1.05;
}
.b2b-visual-top ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.b2b-visual-top li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.b2b-visual-top li .chk {
  width: 18px; height: 18px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 5px;
  color: var(--accent);
}
.b2b-stats {
  position: relative; z-index: 1;
  background: rgba(7, 16, 24, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 18px;
  display: flex; gap: 20px;
}
.b2b-stat .n {
  font-family: "Archivo", sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.b2b-stat .l { font-size: 11px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   REGIONS
   ============================================================ */
.regions {
  background: linear-gradient(180deg, #050b13, #07121e);
}
.region-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}
.region-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.region-chip:hover {
  border-color: var(--accent);
  background: rgba(250, 204, 21, 0.08);
}
.region-chip .pin {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.guarantee-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 50% 50%, rgba(250, 204, 21, 0.10), transparent 70%),
    linear-gradient(180deg, #050b13, #07121e);
}
.seal {
  position: relative;
  width: 220px; height: 220px;
  margin: 0 auto 40px;
}
.seal-outer {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(250, 204, 21, 0.35);
  animation: sealSpin 24s linear infinite;
}
.seal-outer svg { width: 100%; height: 100%; }
.seal-outer text {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.3em;
  fill: var(--accent);
}
.seal-inner {
  position: absolute; inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #facc15, #f59e0b 70%);
  display: grid; place-items: center;
  color: #1a1505;
  font-family: "Archivo", sans-serif;
  text-align: center;
  box-shadow:
    inset 0 4px 12px rgba(255,255,255,0.4),
    inset 0 -4px 12px rgba(0,0,0,0.2),
    0 0 60px var(--accent-glow);
}
.seal-inner .big { font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.seal-inner .sm { font-size: 11px; font-family: var(--mono); letter-spacing: 0.2em; margin-top: 6px; }
@keyframes sealSpin { to { transform: rotate(360deg); } }

.guarantee h2 { font-size: clamp(34px, 4vw, 48px); max-width: 720px; margin: 0 auto; }
.guarantee p { margin-top: 16px; color: var(--ink-2); font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 18px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; color: var(--ink-2);
  transition: all 0.2s;
}
.faq-item.open .faq-q .icon {
  background: var(--accent); color: #1a1505;
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 0 22px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #fde047 0%, #facc15 50%, #f59e0b 100%);
  color: #1a1505;
  padding: 90px 0;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  opacity: 0.4;
}
.final-cta-inner { position: relative; text-align: center; }
.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1;
}
.final-cta p {
  margin-top: 18px;
  font-size: 18px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  opacity: 0.85;
}
.final-cta-ctas {
  margin-top: 38px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-dark {
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
}
.btn-dark:hover { transform: translateY(-1px); background: #1a1a1a; }
.final-cta .alarm {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10,10,10,0.12);
  border: 1px solid rgba(10,10,10,0.18);
  padding: 8px 14px;
  border-radius: 100px;
}
.final-cta .alarm .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--urgent); animation: dotPulse 1.4s ease-out infinite; box-shadow: 0 0 0 0 var(--urgent-glow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #03070c;
  padding: 70px 0 30px;
  color: var(--ink-2);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-brand .brand-name { color: var(--ink); }
.footer-brand p { margin-top: 14px; line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* ============================================================
   OVERLAYS
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 70;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
  color: #052e16;
  box-shadow: 0 14px 40px -10px var(--wa-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  animation: waPulse 2.2s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waRing 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 14px 40px -10px var(--wa-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 14px 40px -10px var(--wa-glow), 0 0 0 10px rgba(37, 211, 102, 0.15), inset 0 1px 0 rgba(255,255,255,0.3); }
}
@keyframes waRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 65;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  max-width: 320px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.6);
  font-size: 13px;
  color: var(--ink);
  animation: toastIn 0.4s ease;
  line-height: 1.4;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.toast.out { animation: toastOut 0.3s ease forwards; }
@keyframes toastOut {
  to { opacity: 0; transform: translateY(20px); }
}
.toast .av {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), #059669);
  display: grid; place-items: center;
  color: #052e16;
}
.toast .av svg { width: 16px; height: 16px; }
.toast b { color: var(--accent); font-weight: 600; }
.toast .time { font-family: var(--mono); font-size: 10px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.1em; }

.alert-bar {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 55;
  background: linear-gradient(90deg, rgba(255,107,0,0.16), rgba(250,204,21,0.10));
  border-bottom: 1px solid rgba(255,107,0,0.3);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb37a;
  text-align: center;
  backdrop-filter: blur(10px);
}
.alert-bar .dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--urgent);
  margin-right: 10px; vertical-align: middle;
  animation: livePulse 1.4s ease-in-out infinite;
}
.alert-bar b { color: var(--accent); }

.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: rgba(7, 16, 24, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-strong);
  padding: 12px;
  display: none;
  gap: 8px;
}
.sticky-mobile .btn { flex: 1; min-height: 52px; }

.exit-popup {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(3, 7, 12, 0.78);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.exit-popup-card {
  position: relative;
  max-width: 480px; width: 100%;
  background: linear-gradient(180deg, #142036, #0a1424);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } }
.exit-popup-card .close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ink-3);
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 18px;
}
.exit-popup-card .close:hover { color: var(--ink); border-color: var(--line-strong); }
.exit-popup-card .eyebrow { color: var(--urgent); }
.exit-popup-card h3 { font-size: 28px; margin: 14px 0 10px; letter-spacing: -0.02em; }
.exit-popup-card p { color: var(--ink-2); font-size: 15px; margin-bottom: 24px; line-height: 1.5; }
.exit-popup-card .btn { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .b2b-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .proof-item { padding-left: 0; border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { padding: 110px 0 60px; }
  .topbar-inner { height: 60px; }
  .topbar-actions .badge-24h { display: none; }
  .topbar-actions .tel-link span:last-child { display: none; }
  .topbar-actions .btn-wa { padding: 10px 14px; min-height: 42px; font-size: 13px; }
  .alert-bar { display: none; }
  .hero-bullets { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .right { text-align: left; }
  .b2b-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-mobile { display: flex; }
  .wa-float { bottom: 86px; }
  .toast { display: none; }
}
