/* cochesdubai.es — Design system: blanco + dorado, conversión + SEO */
:root {
  --white: #ffffff;
  --bg: #f7f6f3;
  --bg-gold: #fdf9ee;
  --gold: #c9a227;
  --gold-hover: #b8921f;
  --gold-light: #ede0b8;
  --gold-dark: #8a6d12;
  --text: #121212;
  --muted: #5a5a5a;
  --border: #e4e0d8;
  --success: #0d7a3e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(18, 18, 18, 0.06);
  --shadow-gold: 0 12px 48px rgba(201, 162, 39, 0.28);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
  --max: 1140px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Typography */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.125rem; }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold-dark); }

/* Buttons — neuromarketing: contraste, acción clara */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-dark {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn-dark:hover { background: #333; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.logo span { color: var(--gold-dark); }
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta { display: none; }
.burger {
  display: flex;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.875rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .burger { display: none; }
}

/* Trust bar — prueba social */
.trust-bar {
  background: var(--bg-gold);
  border-bottom: 1px solid var(--gold-light);
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.trust-bar .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-bar strong { color: var(--text); }

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-gold) 100%);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 4.5rem 0 5.5rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}
@media (max-width: 899px) {
  .hero-grid .hero-visual { order: -1; margin-bottom: 0.5rem; }
}
.lead-lg {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 34rem;
}
.split-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; }
}
.quote-band {
  background: linear-gradient(135deg, var(--text) 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  max-width: 36rem;
  margin: 0 auto 1rem;
  line-height: 1.4;
}
.quote-band cite { font-size: 0.875rem; opacity: 0.7; font-style: normal; }

/* Rutas premium — sustituye el grid SEO feo */
.pathway-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .pathway-grid { grid-template-columns: repeat(2, 1fr); } }
.pathway-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.pathway-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.pathway-card:hover img { transform: scale(1.04); }
.pathway-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,18,18,0.88) 0%, rgba(18,18,18,0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.pathway-card-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.pathway-card-overlay p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.pathway-card-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.brand-pill {
  padding: 0.5rem 1.125rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.brand-pill:hover {
  border-color: var(--gold);
  background: var(--bg-gold);
  color: var(--gold-dark);
}
.seo-resources {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.seo-resources summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  color: var(--muted);
}
.seo-resources summary::-webkit-details-marker { display: none; }
.seo-resources[open] summary { border-bottom: 1px solid var(--border); color: var(--text); }
.seo-resources-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  columns: 2;
  column-gap: 2rem;
  font-size: 0.875rem;
}
@media (max-width: 600px) { .seo-resources-inner { columns: 1; } }
.seo-resources-inner a {
  display: block;
  padding: 0.35rem 0;
  color: var(--muted);
}
.seo-resources-inner a:hover { color: var(--gold-dark); }
.card-premium {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card-premium h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card-premium p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }
.stat-strip-wrap {
  width: 100%;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 2rem;
  background: var(--white);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}
@media (min-width: 700px) {
  .stat-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
}
.stat-item {
  text-align: center;
  padding: 0 0.5rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--gold-dark);
  font-weight: 800;
}
.stat-item span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 1.25rem 0 1.75rem;
  max-width: 32rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-micro {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.hero-micro span { display: flex; align-items: center; gap: 0.35rem; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-bottom: 1rem; font-size: 1rem; }
.savings-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.savings-row:last-child { border: none; }
.savings-row .old { text-decoration: line-through; color: var(--muted); }
.savings-row .new { font-weight: 700; color: var(--gold-dark); font-size: 1.125rem; }
.savings-total {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-gold);
  border-radius: var(--radius-sm);
  text-align: center;
}
.savings-total strong { display: block; font-size: 1.5rem; color: var(--gold-dark); }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header p { margin-top: 0.75rem; color: var(--muted); }

/* Cards grid */
.grid-3 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; color: var(--muted); }

/* Process steps */
.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SEO hub links */
.hub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.hub-link {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.hub-link:hover {
  border-color: var(--gold);
  background: var(--bg-gold);
}
.hub-link strong { display: block; font-family: var(--font-display); margin-bottom: 0.25rem; }
.hub-link span { font-size: 0.8125rem; color: var(--muted); }

/* Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial .stars { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.9375rem; margin-bottom: 1rem; }
.testimonial cite { font-size: 0.8125rem; font-style: normal; color: var(--muted); }

/* FAQ — SEO + conversión */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--gold-dark); font-size: 1.25rem; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.faq-item.open .faq-a { display: block; }

/* Form — conversión */
.form-section { background: var(--bg-gold); border-top: 1px solid var(--gold-light); }
.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-progress {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.3s;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 500px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--muted);
}
.form-check input { width: auto; margin-top: 0.2rem; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.form-success { text-align: center; padding: 2rem 0; }
.form-success h3 { margin-bottom: 0.5rem; }

/* Urgency strip */
.urgency {
  background: var(--text);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
}
.urgency strong { color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.875rem;
}
.site-footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.site-footer a:hover { color: var(--gold); }
.site-footer ul li { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* Images */
.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.content-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.content-figure img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: -1.75rem -1.75rem 1rem;
  width: calc(100% + 3.5rem);
}
.card.has-img { padding-top: 0; overflow: hidden; }

/* Landing subpages */
.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--bg-gold) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}
/* Hero landings: imagen arriba, texto abajo (sin solapamiento) */
.page-hero--image,
.page-hero--centered.page-hero--image {
  position: relative;
  padding: 0;
  min-height: 0;
  display: block;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
}
.page-hero-bg {
  position: relative;
  width: 100%;
  height: clamp(200px, 32vw, 320px);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: none;
}
.page-hero--image .page-hero-content,
.page-hero--centered .page-hero-content {
  position: relative;
  z-index: 1;
  padding: 2.25rem 0 2.5rem;
  background: var(--white);
}
.page-hero--centered .page-hero-content--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.page-hero--centered .hero-ctas { justify-content: center; }
.section-compact { padding: 1.25rem 0; }
.interlink-bar { background: var(--bg); border-bottom: 1px solid var(--border); }
.interlink-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
}
.interlink-pills a {
  color: var(--gold-dark);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 100px;
}
.interlink-pills a:hover { background: var(--bg-gold); }
.hub-group-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 2rem 0 1rem;
  grid-column: 1 / -1;
}
.hub-group-title:first-child { margin-top: 0; }
.footer-grid--seo { grid-template-columns: 1.2fr repeat(4, 1fr); }
@media (max-width: 900px) {
  .footer-grid--seo { grid-template-columns: 1fr 1fr; }
}
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold-dark); }
.content-prose { max-width: 720px; }
.content-prose p { margin-bottom: 1rem; color: var(--muted); }
.content-prose h2 { margin: 2rem 0 1rem; color: var(--text); }
.content-prose ul { margin: 1rem 0 1rem 1.25rem; list-style: disc; color: var(--muted); }
.content-prose li { margin-bottom: 0.5rem; }
.cta-box {
  background: var(--bg-gold);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.cta-box--large { padding: 3rem 2rem; }
.cta-final { background: var(--white); padding-bottom: 5rem; }
.related-links { margin-top: 2rem; }

/* Landing layouts — cada URL usa una variante distinta */
.lp-page .lp-container { max-width: var(--max); }
.lp-body { color: var(--muted); }
.block-prose { max-width: 68ch; }
.block-prose h2 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 2.25rem 0 0.85rem;
  font-size: 1.35rem;
}
.block-prose h2:first-child { margin-top: 0; }
.block-prose p { margin-bottom: 1.1rem; line-height: 1.75; font-size: 1.02rem; }
.lp-article .block-prose + .block-stats,
.lp-article .block-prose + .block-cards,
.lp-article .block-stats + .block-prose,
.lp-article .block-cards + .block-timeline { margin-top: 2.5rem; }
.consulta-stats { justify-content: center; flex-wrap: wrap; gap: 1.5rem 2rem; }
.consulta-trust .block-quote { border-left: 3px solid var(--gold); padding-left: 1.25rem; margin-left: 0; }
.consulta-trust .block-quote cite { display: block; margin-top: 0.5rem; font-size: 0.875rem; color: var(--text-muted); font-style: normal; }
.block-prose a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.block-prose ul { margin: 1rem 0 1.25rem 1.25rem; list-style: disc; }
.block-prose li { margin-bottom: 0.4rem; }

.page-hero--minimal {
  min-height: auto;
  background: linear-gradient(135deg, var(--bg-gold) 0%, var(--white) 70%);
  border-bottom: 1px solid var(--border);
}
.lp-card-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}
@media (min-width: 640px) {
  .lp-layout-cards .lp-card-grid,
  .lp-layout-split .lp-card-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-layout-magazine .lp-card-grid { grid-template-columns: repeat(2, 1fr); }
}
.lp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow); }
.lp-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.lp-card p { font-size: 0.9rem; margin: 0; }

.block-quote {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--gold);
  background: var(--bg-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.block-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.block-quote cite { font-size: 0.8125rem; color: var(--muted); font-style: normal; }

.block-stats h2, .block-cards h2, .block-timeline h2, .block-checklist h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.lp-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.lp-stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.lp-stat-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gold-dark);
}
.lp-stat-lbl { font-size: 0.8125rem; color: var(--muted); }

.lp-timeline {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  counter-reset: step;
}
.lp-timeline li {
  position: relative;
  padding: 0 0 1.5rem 2.75rem;
  border-left: 2px solid var(--gold-light);
  margin-left: 0.75rem;
}
.lp-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.lp-timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-timeline li strong { display: block; color: var(--text); margin-bottom: 0.25rem; }
.lp-timeline li span { font-size: 0.9375rem; }

.block-highlight {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, var(--bg-gold), var(--white));
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
}
.block-highlight p { margin: 0; font-weight: 500; color: var(--text); }

.block-checklist ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.block-checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.block-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* lp-crosslinks: ver bloque premium más abajo */

/* Layout: split — imagen a la izquierda, todo el texto a la derecha */
@media (min-width: 900px) {
  .lp-layout-split .lp-body {
    display: grid;
    grid-template-columns: minmax(260px, 40%) 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
  }
  .lp-layout-split .content-figure {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    margin-bottom: 0;
    align-self: start;
  }
  .lp-layout-split .content-figure img {
    max-height: none;
    min-height: 240px;
  }
  .lp-layout-split .lp-body > :not(.content-figure):not(.lp-crosslinks) {
    grid-column: 2;
  }
  .lp-layout-split .lp-crosslinks {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }
}
@media (max-width: 899px) {
  .lp-layout-split .content-figure {
    margin-bottom: 1.5rem;
  }
  .lp-layout-split .content-figure img {
    max-height: 280px;
  }
}

/* Layout: sidebar — contenido + rail */
@media (min-width: 900px) {
  .lp-layout-sidebar .lp-container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
  }
  .lp-layout-sidebar .lp-body { grid-column: 1; }
  .lp-layout-sidebar .cta-box { grid-column: 1 / -1; }
  .lp-layout-sidebar .related-links { grid-column: 1; }
}

/* Layout: magazine — bloques alternos ancho completo */
.lp-layout-magazine .block-prose { max-width: none; }
.lp-layout-magazine .block-cards,
.lp-layout-magazine .block-stats { max-width: none; }
.lp-layout-magazine .content-figure img { max-height: 480px; }

/* Layout: stack — columna estrecha centrada */
.lp-layout-stack .lp-body { max-width: 720px; margin-inline: auto; }

/* Layout: timeline — timeline destacada */
.lp-layout-timeline .block-timeline {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/* CTA variante por layout */
.lp-layout-quote .cta-box { text-align: left; }
.lp-layout-stats .cta-box { border-style: dashed; }
.lp-layout-cards .cta-box { background: var(--white); box-shadow: var(--shadow); }

/* ——— Landings premium: artículo, CTA y guías relacionadas ——— */
.lp-section {
  padding: 3.5rem 0 0;
  background: var(--white);
}
.lp-article {
  padding-bottom: 2.5rem;
}
.lp-container {
  max-width: var(--max);
}

.lp-cta-band {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin: 0 0 0;
  padding: 2.25rem 2rem;
  background: linear-gradient(135deg, var(--bg-gold) 0%, var(--white) 55%);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .lp-cta-band {
    grid-template-columns: 1fr auto;
    padding: 2.5rem 2.75rem;
    gap: 2.5rem;
  }
}
.lp-cta-band__copy h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.lp-cta-band__copy > p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 36rem;
}
.lp-cta-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.lp-cta-trust li::before {
  content: '✓ ';
  color: var(--gold-dark);
  font-weight: 700;
}
.lp-cta-band__action {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: min(100%, 220px);
}

/* Chips de enlaces internos (con miniatura) */
.lp-crosslinks {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.lp-link-chips {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 600px) {
  .lp-link-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .lp-link-chips { grid-template-columns: repeat(4, 1fr); }
}
.lp-link-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.lp-link-chip:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}
.lp-link-chip img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.lp-link-chip span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* Sección guías relacionadas (imagen + overlay) */
.lp-related {
  padding: 4rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.lp-related + .lp-related {
  padding-top: 3rem;
  border-top: none;
}
.lp-related__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.lp-related__header h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.lp-related__lead {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Hub de marcas */
.brand-hub-section {
  padding-top: 0;
  padding-bottom: 0;
}
.brand-hub {
  margin-bottom: 2rem;
}
.brand-hub__intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.brand-hub__intro h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.brand-hub__intro p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.brand-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .brand-hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .brand-hub-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.brand-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.2s, box-shadow 0.22s;
}
.brand-hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 0 14px 40px rgba(18, 18, 18, 0.09);
}
.brand-hub-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg);
}
.brand-hub-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.brand-hub-card:hover .brand-hub-card__photo {
  transform: scale(1.04);
}
.brand-hub-card__logo {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.brand-hub-card__logo img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}
.brand-hub-card__body {
  padding: 0.75rem 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.brand-hub-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.25;
}
.brand-hub-card__cta {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.guide-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .guide-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  height: 100%;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(18, 18, 18, 0.1);
  border-color: var(--gold-light);
}
.guide-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}
.guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.guide-card:hover .guide-card__media img {
  transform: scale(1.06);
}
.guide-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 18, 18, 0.35) 100%);
  pointer-events: none;
}
.guide-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}
.guide-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.guide-card__body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guide-card__body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0.75rem;
}
.guide-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: auto;
}

.content-figure figcaption {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.65rem 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* Página consulta */
.page-consulta .form-wrap { max-width: none; margin: 0; }
.consulta-hero {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-gold) 0%, var(--white) 100%);
  min-height: calc(100vh - var(--nav-h) - 80px);
}
.consulta-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .consulta-layout { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .consulta-form { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
}
.consulta-benefits {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.consulta-benefits li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  color: var(--muted);
  font-size: 0.9375rem;
}
.consulta-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.consulta-contact-alt { margin-top: 2rem; }
.consulta-contact-alt .btn { width: 100%; }
.form-step-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 90;
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 899px) {
  .sticky-cta.visible { display: block; }
  body.has-sticky-cta { padding-bottom: 72px; }
}
.page-consulta .sticky-cta { display: none !important; }
