:root {
  --bg-black: #000000;
  --bg-dark: #111111;
  --white: #ffffff;
  --muted: #CCCCCC;
  --orange: #FF4500;
  --green: #00FF80;
  --red: #FF3B3B;
  --yellow: #FFD600;
  --radius: 12px;
  --shadow-soft: 0 8px 22px rgba(0,0,0,0.35);
  --shadow-card: 0 10px 28px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.theme-dark {
  background: var(--bg-black);
  color: var(--white);
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

.t-orange { color: var(--orange); }
.t-white { color: var(--white); }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* 1. Urgency bar */
.urgency-bar { background: var(--red); color: var(--white); box-shadow: var(--shadow-soft); }
.urgency-bar .container { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 0; }
.urgency-icon { color: var(--yellow); }
.urgency-text { font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.urgency-dot { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 14px rgba(255,214,0,0.8); }

/* 2. Hero */
.hero { background: var(--bg-black); }
.hero-inner { display: grid; grid-template-columns: 1fr; align-items: center; gap: 24px; }
.hero-inner { justify-items: center; }
.hero-content { text-align: center; }
.hero-title { font-size: clamp(28px, 5.4vw, 56px); line-height: 1.1; text-transform: uppercase; margin: 0 0 8px; font-weight: 800; }
.hero-sub { color: var(--muted); margin: 0 0 20px; }
.hero-visual { display: flex; justify-content: center; }
.mockups { position: relative; display: inline-block; }
.mock-img { width: min(900px, 100%); height: auto; border-radius: var(--radius); box-shadow: var(--shadow-card); background: #1a1a1a; display: block; margin: 0 auto; }
.mockups .extra-img { margin-top: 12px; display: block; }
.mockups .extra-img { width: min(900px, 100%); height: auto; border-radius: var(--radius); box-shadow: var(--shadow-card); background: #1a1a1a; }
.img-fallback { margin-top: 12px; padding: 12px; border-radius: var(--radius); background: #1a1a1a; color: var(--muted); box-shadow: var(--shadow-soft); }
.badge { position: absolute; top: 16px; left: 16px; padding: 8px 12px; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-soft); }
.badge-green { background: var(--green); color: #002b14; }
.badge-yellow { background: var(--yellow); color: #3a2b00; left: auto; right: 16px; }
.seal-100 { position: absolute; bottom: 16px; right: 16px; width: 72px; height: 72px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #ffe9a8, #e3b738); color: #111; display: grid; place-items: center; font-weight: 800; box-shadow: 0 10px 24px rgba(255,198,54,0.35); }

.price-line { display: flex; align-items: center; gap: 12px; margin: 16px 0 24px; font-size: 20px; }
.price-line { justify-content: center; }
.price-old { color: var(--red); text-decoration: line-through; font-weight: 700; }
.price-new { color: var(--green); font-weight: 800; }
.arrow { color: var(--muted); }

.hero-actions { display: flex; gap: 12px; }
.hero-actions { justify-content: center; }
.access-note { color: var(--green); font-weight: 700; margin: 8px 0 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: var(--radius); font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; box-shadow: 0 10px 24px rgba(255,69,0,0.35); transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); box-shadow: 0 8px 20px rgba(255,69,0,0.25); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-green { background: var(--green); color: #002b14; box-shadow: 0 10px 24px rgba(0,255,128,0.25); }
.btn-lg { height: 52px; padding: 0 28px; }
.btn-xl { height: 58px; padding: 0 32px; font-size: 18px; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; margin-top: 12px; }

/* 3. Métricas + Modelos */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.metric-card { background: #2a2a2a; border: 1px solid rgba(255,255,255,0.06); padding: 16px 18px; border-radius: 14px; display: flex; align-items: center; gap: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.35); color: var(--white); }

.metric-card:hover { border-color: rgba(255,255,255,0.12); box-shadow: 0 4px 18px rgba(0,0,0,0.45); }

.metric-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 30% 30%, rgba(255,69,0,0.25), rgba(255,69,0,0.06) 60%), #1e1e1e; border: 1px solid rgba(255,69,0,0.35); box-shadow: inset 0 0 0 6px rgba(255,69,0,0.05); }

.metric-content { display: grid; gap: 6px; }
.metric-label { color: #b6b6b6; font-size: 14px; letter-spacing: 0.2px; }
.metric-value { color: #ffffff; font-weight: 800; font-size: 18px; }

.models-feature { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
.model-feature-item { position: relative; }
.model-feature-item img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.model-feature-item figcaption { position: absolute; bottom: 12px; left: 12px; right: 12px; background: rgba(0,0,0,0.5); border-radius: 10px; padding: 10px 12px; font-weight: 800; text-transform: uppercase; }

.models-grid .grid-title { text-align: center; font-weight: 800; margin: 0 0 12px; }
.models-grid .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.models-grid img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* 4. Testimonios */
.testimonials { background: var(--bg-black); }
.testimonials .container { text-align: center; }
.section-title { font-weight: 800; text-transform: uppercase; margin: 0 0 18px; }
.bonuses .section-title { text-align: center; }
.phones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; justify-items: center; }
.testimonials .phones { justify-content: center; }
.phone-frame { background: #0d0d0d; border-radius: 22px; padding: 16px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; align-items: center; }
.phone-frame img { width: 100%; border-radius: 18px; }

/* 3. Modelos destacados */
.models-feature .model-feature-item img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .models-feature .model-feature-item img { width: 85%; }
}

/* 5. Bonos Exclusivos */
.bonuses .bonus-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 16px; }
.bonus-card { background: #1a1a1a; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); }
.bonus-card h3 { margin: 0 0 10px; }
.bonus-card img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); margin: 0 0 12px; }
.bonus-card .sub { color: var(--muted); margin: 0 0 10px; }
.tag.lightning { display: inline-block; background: var(--yellow); color: #3a2b00; font-weight: 800; padding: 6px 10px; border-radius: 999px; box-shadow: var(--shadow-soft); }
.bonus-action { text-align: center; margin-top: 10px; }

/* Centralizar somente o botão do segundo card (Madera) */
.bonuses .bonus-cards article:nth-child(2) { text-align: center; }

/* Centralizar somente o botão do primeiro card (Industriales) */
.bonuses .bonus-cards article:nth-child(1) { text-align: center; }

/* 6. Por qué elegir */
.why { background: linear-gradient(135deg, #0d0d0d 0%, #111111 60%, #0d0d0d 100%); }
.why .section-title { text-align: center; }
.why .muted { text-align: center; margin-bottom: 18px; }
.why-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.list-orange { list-style: none; padding: 0; margin: 12px 0 0; }
.list-orange li { padding: 10px 0 10px 28px; position: relative; color: var(--white); }
.list-orange li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--orange); position: absolute; left: 0; top: 50%; transform: translateY(-50%); box-shadow: 0 0 8px rgba(255,69,0,0.35); }
.box-gray { background: var(--bg-dark); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); }
.bullets-orange { list-style: none; padding: 0; margin: 0; }
.bullets-orange li { color: var(--white); font-weight: 700; padding: 12px 0 12px 28px; position: relative; }
.bullets-orange li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--orange); position: absolute; left: 0; top: 50%; transform: translateY(-50%); box-shadow: 0 0 8px rgba(255,69,0,0.35); }

/* 7. Lo que vas a recibir */
.receive { background: linear-gradient(135deg, #0d0d0d 0%, #111111 60%, #0d0d0d 100%); }
.receive-header { display: grid; grid-template-columns: 1fr; justify-items: center; align-items: center; row-gap: 12px; margin-bottom: 16px; }
.receive-header .section-title { text-align: center; }
.receive .bullets-orange { display: grid; grid-template-columns: 1fr; row-gap: 12px; margin: 12px 0 0; text-align: center; }
.receive .bullets-orange li { padding: 12px 0; position: relative; display: inline-flex; align-items: center; justify-content: center; }
.receive .bullets-orange li::before { position: static; margin-right: 10px; left: auto; top: auto; transform: none; }
.receive-action { display: flex; justify-content: center; margin-top: 32px; margin-bottom: 8px; }

@media (max-width: 640px) {
  .receive-header { grid-template-columns: 1fr; row-gap: 10px; }
  .receive-header .btn { justify-self: center; }
}

/* 8. Garantía y Urgencia */
.guarantee-inner { display: grid; grid-template-columns: 0.4fr 1fr; gap: 24px; align-items: center; }
.seal { display: grid; place-items: center; }
.seal-gold { width: 140px; height: 140px; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 0; background: none; box-shadow: 0 14px 36px rgba(217,168,50,0.35); }
.seal-gold img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.line-green { color: var(--green); font-weight: 700; }

/* 9. FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { background: var(--bg-dark); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-soft); }

/* 10. Final */
.final-inner { text-align: center; }
.final-phrase { font-weight: 800; margin: 10px 0 16px; }
.icon-green { color: var(--green); }

/* Responsividade */
@media (max-width: 992px) {
  .phones { grid-template-columns: 1fr 1fr; }
  .bonuses .bonus-cards { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .receive .inline { grid-template-columns: 1fr 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; }
  .models-grid .grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .metrics { grid-template-columns: 1fr; }
  .phones { grid-template-columns: 1fr; }
  .receive .inline { grid-template-columns: 1fr; }
  .models-grid .grid { grid-template-columns: 1fr; }
}

/* Popup de compras em tempo real */
.live-popup { position: fixed; top: 16px; right: 16px; z-index: 9999; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 10px 12px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 12px; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.live-popup.show { opacity: 1; transform: translateY(0); }
.live-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; position: relative; box-shadow: inset 0 0 0 6px rgba(255,255,255,0.06); }
.live-avatar::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--green); position: absolute; left: -2px; bottom: -2px; box-shadow: 0 0 10px rgba(0,255,128,0.45); border: 2px solid #0d0d0d; }
.live-text { display: grid; gap: 2px; }
.live-name { color: var(--white); font-weight: 800; }
.live-sub { color: #c7c7c7; }
.live-sub .t-orange { color: var(--orange); }
.live-check { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #002b14; display: grid; place-items: center; font-weight: 800; box-shadow: 0 8px 18px rgba(0,255,128,0.25); }