:root {
  --naranja: #FF7A00;
  --naranja-oscuro: #B35800;
  --negro: #080808;
  --gris1: #111111;
  --gris2: #1A1A1A;
  --gris3: #252525;
  --gris4: #333333;
  --texto: #F2F2F2;
  --subtexto: #888;
  --borde: #2A2A2A;
  --verde: #00A651;
  --rojo: #E8000D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--negro);
  color: var(--texto);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
}
@media (max-width: 640px) { nav { padding: 12px 20px; } nav img { height: 44px !important; } }

.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--subtexto);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--texto); }
.btn-nav {
  background: var(--naranja);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}
.btn-nav:hover { background: var(--naranja-oscuro) !important; }

.page-hero {
  position: relative;
  padding: 140px 24px 80px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 20px;
}
.page-title {
  font-family: 'A4Speed', 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 20px;
}
.page-title .dim { color: var(--subtexto); font-weight: 400; }
.page-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: #aaa;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.info-card {
  background: var(--gris1);
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 28px 24px;
}
.info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.info-card p { font-size: 14px; color: #888; line-height: 1.65; }
.info-card .icon { font-size: 28px; margin-bottom: 14px; display: block; }

.emotional-banner {
  background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(0,0,0,0.4));
  border: 1px solid rgba(255,122,0,0.35);
  border-radius: 14px;
  padding: 32px 28px;
  margin: 48px 0;
  text-align: center;
}
.emotional-banner p {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  color: #ddd;
}
.emotional-banner strong { color: #fff; font-weight: 600; }

.warning-block {
  background: linear-gradient(135deg, rgba(232,0,13,0.12), rgba(0,0,0,0.5));
  border: 2px solid rgba(232,0,13,0.45);
  border-radius: 14px;
  padding: 32px 28px;
  margin: 40px 0;
}
.warning-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #ff9999;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.warning-block p { font-size: 15px; color: #bbb; line-height: 1.7; margin-bottom: 10px; }
.warning-block p:last-child { margin-bottom: 0; }

.steps-list { display: flex; flex-direction: column; gap: 14px; }
.step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gris2);
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 18px 20px;
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--naranja);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step-row h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-row p { font-size: 14px; color: #aaa; line-height: 1.55; }

.btn-primary {
  display: inline-block;
  background: var(--naranja);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--naranja-oscuro); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--texto);
  border: 1px solid var(--gris4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--naranja); color: var(--naranja); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }

.legal-note {
  font-size: 11px;
  color: #666;
  line-height: 1.55;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--borde);
}

footer {
  border-top: 1px solid var(--borde);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
footer .footer-links a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--subtexto);
  text-decoration: none;
}
footer .footer-links a:hover { color: var(--naranja); }
footer .footer-copy { font-size: 12px; color: #555; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; justify-content: center; }
  footer .footer-links { justify-content: center; }
}
