*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --gold: #C8973A;
  --gold-light: #E8B85C;
  --gold-pale: #F5E8CF;
  --cream: #FAF7F2;
  --taxi-yellow: #F7C300;
  --taxi-dark: #1A1400;
  --gray-mid: #6B6560;
  --gray-light: #D4CFC8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,151,58,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(247,195,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.city-silhouette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220' preserveAspectRatio='none'%3E%3Cpath fill='%23C8973A' d='M0,220 L0,160 L40,160 L40,120 L60,120 L60,80 L80,80 L80,100 L100,100 L100,40 L110,40 L110,30 L115,20 L120,30 L120,40 L130,40 L130,100 L160,100 L160,60 L180,60 L180,100 L200,100 L200,140 L220,140 L220,80 L230,80 L235,60 L240,80 L240,140 L280,140 L280,120 L300,120 L300,100 L320,100 L320,160 L360,160 L360,80 L370,70 L375,50 L380,70 L380,80 L420,80 L420,120 L440,120 L440,80 L460,80 L460,120 L500,120 L500,60 L510,40 L515,20 L520,40 L520,60 L560,60 L560,100 L580,100 L580,60 L600,60 L600,100 L620,100 L620,80 L640,80 L640,160 L680,160 L680,100 L700,100 L700,60 L720,60 L720,100 L760,100 L760,140 L780,140 L780,80 L800,80 L800,140 L840,140 L840,100 L860,80 L870,60 L875,40 L880,60 L880,100 L920,100 L920,140 L960,140 L960,80 L980,80 L1000,80 L1000,140 L1040,140 L1040,100 L1060,60 L1070,40 L1075,20 L1080,40 L1080,100 L1120,100 L1120,120 L1140,120 L1140,80 L1160,80 L1160,120 L1200,120 L1200,160 L1240,160 L1240,100 L1260,100 L1260,80 L1280,80 L1280,100 L1320,100 L1320,160 L1360,160 L1360,120 L1380,120 L1400,120 L1400,160 L1440,160 L1440,220 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  position: relative;
  z-index: 10;
}

.nav-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.nav-contact {
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2rem 0;
  position: relative;
  z-index: 5;
}

.domain-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 300;
}

.domain-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
}

.domain-name .tld {
  color: var(--taxi-yellow);
  display: block;
}

.hero-tagline {
  margin-top: 2.5rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.65;
}

.hero-tagline strong { color: var(--white); font-weight: 500; }

.cta-group {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  display: inline-block;
  border-radius: 2px;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.15s;
  display: inline-block;
  border-radius: 2px;
}

.btn-secondary:hover { border-color: var(--gold); transform: translateY(-2px); }

.hero-stripe {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 4rem 3.5rem;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
}

.stripe-item { text-align: center; }

.stripe-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stripe-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 4px;
  display: block;
}

.stripe-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

/* ─── TAXI BAR ─── */
.taxi-bar {
  background: var(--taxi-yellow);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.taxi-bar-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taxi-dark);
  white-space: nowrap;
}

/* ─── SECTIONS ─── */
section { padding: 7rem 4rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 600px;
}

/* ─── PLANES ─── */
.planes {
  background: var(--cream);
  color: var(--black);
}

.planes .section-label { color: var(--gold); }
.planes .section-title { color: var(--black); }
.planes .section-body { color: #5A5550; }

.planes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  transition: box-shadow 0.3s, transform 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.plan-card.featured {
  border: 2px solid var(--gold);
}

.plan-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  font-size: 0.875rem;
  color: #7A7570;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.plan-divider {
  height: 1px;
  background: var(--gray-light);
  margin-bottom: 2rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #3A3530;
  font-weight: 300;
  line-height: 1.4;
}

.plan-feature-dot {
  width: 18px;
  height: 18px;
  background: rgba(200,151,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
}

.plan-cta {
  display: block;
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.plan-cta:hover { background: #222; transform: translateY(-1px); }

.plan-card.featured .plan-cta {
  background: var(--gold);
  color: var(--black);
}

.plan-card.featured .plan-cta:hover { background: var(--gold-light); }

/* ─── POR QUÉ ─── */
.porqué { background: #0e0e0e; }

.ventajas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.ventajas-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.ventaja-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ventaja-item:last-child { border-bottom: none; }

.ventaja-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  font-size: 18px;
}

.ventaja-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.ventaja-text {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.65;
  font-weight: 300;
}

.domain-showcase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
  position: sticky;
  top: 2rem;
}

.domain-showcase-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}

.domain-showcase-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.domain-showcase-tld { color: var(--taxi-yellow); }

.domain-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  text-align: left;
}

.domain-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
}

.feat-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTOR REGULADO ─── */
.regulado {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.regulado-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problema-block {
  background: rgba(247,195,0,0.04);
  border: 1px solid rgba(247,195,0,0.12);
  border-radius: 3px;
  padding: 2.5rem;
}

.problema-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taxi-yellow);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.igualacion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.igual-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  font-weight: 300;
}

.igual-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.igual-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  color: var(--gray-mid);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.igual-cross::before,
.igual-cross::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.solucion-block { }

.solucion-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.solucion-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(200,151,58,0.2);
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  position: relative;
}

.step-item:last-child { padding-bottom: 0; }

.step-num {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content { padding-top: 6px; }

.step-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.step-text {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.6;
  font-weight: 300;
}

.regulado-quote {
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,151,58,0.06);
  border-radius: 0 3px 3px 0;
}

.regulado-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.regulado-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── AUDIENCIA ─── */
.audiencia {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(255,255,255,0.06);
}

.audience-card {
  background: var(--black);
  padding: 3rem 2rem;
  transition: background 0.3s;
}

.audience-card:hover { background: #111; }

.audience-emoji { font-size: 2rem; margin-bottom: 1.5rem; }

.audience-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.audience-text {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CONTACTO ─── */
.contacto { background: var(--gold); color: var(--black); }
.contacto .section-label { color: rgba(0,0,0,0.45); }
.contacto .section-title { color: var(--black); }

.contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contacto .section-body { color: rgba(0,0,0,0.65); max-width: none; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 500;
}

.form-select,
.form-input,
.form-textarea {
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.9rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-select { cursor: pointer; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.12); }
.form-textarea { resize: vertical; min-height: 100px; }

.btn-dark {
  background: var(--black);
  color: var(--gold);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  align-self: flex-start;
  border-radius: 2px;
}

.btn-dark:hover { opacity: 0.85; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-domain {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-domain span { color: var(--taxi-yellow); }

.footer-note {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 300;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.8s ease backwards; }
.domain-label   { animation-delay: 0.1s; }
.domain-name    { animation-delay: 0.25s; }
.hero-tagline   { animation-delay: 0.4s; }
.cta-group      { animation-delay: 0.55s; }

/* ─── RESPONSIVE CORREGIDO ─── */
@media (max-width: 900px) {
  nav { 
    padding: 1.5rem 1.2rem; 
    flex-direction: column; 
    gap: 0.75rem; 
    text-align: center;
  }
  section { 
    padding: 4rem 1.2rem; 
  }
  .domain-name {
    font-size: clamp(2.2rem, 9vw, 5rem);
  }
  .hero-tagline {
    margin-top: 1.5rem;
    font-size: 1.05rem;
  }
  .hero-stripe { 
    padding: 2rem 1.2rem; 
    gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stripe-item {
    flex: 1 1 40%;
  }
  .stripe-number {
    font-size: 1.8rem;
  }
  .stripe-divider { display: none; }
  .planes-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .plan-card {
    padding: 2.5rem 1.5rem;
  }
  .ventajas-layout { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
  }
  .ventajas-list {
    margin-top: 2rem;
    gap: 1.5rem;
  }
  .domain-showcase { 
    position: static; 
    padding: 2rem 1.2rem;
  }
  .domain-showcase-main {
    font-size: 1.9rem;
  }
  .regulado-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .problema-block {
    padding: 1.5rem 1.2rem;
  }
  .audience-grid { 
    grid-template-columns: 1fr; 
    margin-top: 2.5rem;
  }
  .audience-card {
    padding: 2rem 1.2rem;
  }
  .contacto-layout { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
  }
  .form-row { 
    grid-template-columns: 1fr; 
    gap: 1rem;
  }
  .btn-dark {
    width: 100%;
    text-align: center;
  }
  footer { 
    flex-direction: column; 
    text-align: center; 
    padding: 2.5rem 1.2rem;
    gap: 1.5rem;
  }
  .taxi-bar { 
    padding: 1rem 1.2rem; 
    gap: 0.75rem; 
  }
  .taxi-bar-text { 
    white-space: normal; 
    text-align: center; 
    font-size: 12px;
    line-height: 1.4;
  }
}