/* ===== VARIABLES GLOBALES ===== */
:root {
  --gold: #B99566;
  --gold-dark: #8c704c;
  --gold-light: #d4b585;
  --cream: #F1EAE0;
  --cream-light: #FAF6EF;
  --ink: #242304;
  --ink-soft: #4a4530;
  --ink-muted: #7a7560;
  --dark: #1D160D;
  --dark-2: #2a200f;
  --white: #FFFFFF;
  --line: #E2D7C7;
  --red: #c41e1e;
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans-alt: "Roboto", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== SVG ICON SYSTEM ===== */
.icon {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
  flex-shrink: 0;
  display: inline-block;
}
.icon-fill { fill: currentColor; stroke: none; }

/* ===== TOP BAR ===== */
.topbar { background: var(--dark); color: var(--white); font-size: 13px; }
.topbar-inner { max-width: 1290px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-claim { font-family: var(--sans-alt); font-weight: 100; font-size: 16px; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 10px; }
.topbar-claim .icon { color: var(--gold); font-size: 18px; }
.topbar-phones { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.topbar-btn { padding: 7px 14px; color: var(--white); font-family: var(--sans-alt); font-weight: 100; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.25s; }
.topbar-btn .icon { font-size: 14px; }
.topbar-btn:hover { background: var(--gold); }
.topbar-btn-24h b { color: #FF5050; margin-right: 2px; }

/* ===== HEADER ===== */
.header { background: var(--white); border-bottom: 1px solid var(--line); padding: 14px 0; position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1290px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 115px; width: auto; object-fit: contain; }

/* Menú Estilo Amazon */
.nav-wrap { display: flex; align-items: center; gap: 20px; flex-grow: 1; }
.nav { display: flex; gap: 12px; align-items: center; list-style: none; width: 100%; }

.nav > li { position: relative; flex-shrink: 0; }
.nav > li > a { 
  font-family: var(--sans-alt); /* Cambiado a Roboto (Estilo Amazon) */
  font-size: 14px; 
  font-weight: 700; /* Letra más gruesa y rotunda */
  color: var(--ink); 
  padding: 8px 6px; 
  transition: color 0.2s; 
  display: inline-flex; 
  align-items: center; 
  gap: 5px; 
  white-space: nowrap; /* Evita cualquier rotura de línea */
}
.nav > li > a:hover { color: var(--gold); }
.nav > li.active > a { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 6px; }
.nav-arrow { width: 8px; height: 8px; fill: var(--gold); }

/* Botón TODO */
.nav-todo { cursor: pointer; gap: 6px !important; }
.nav-todo .icon { font-size: 20px; stroke-width: 2.2; }

/* Promoción (Derecha) */
.nav-promo { 
  margin-left: auto; /* Empuja el destacado a la derecha */
  font-family: var(--sans-alt);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap; /* Bloquea que salte de línea */
  display: flex;
  align-items: center;
  padding-right: 10px;
  flex-shrink: 0; /* Impide que se comprima y se vea feo */
}
.nav-promo strong { font-weight: 900; margin-right: 4px; color: var(--dark); }

.mobile-toggle { display: none; font-size: 32px; color: var(--ink); background: none; border: none; cursor: pointer; }

.submenu { position: absolute; top: 100%; left: -16px; background: var(--white); border-top: 2px solid var(--gold); box-shadow: 0 12px 32px rgba(36, 35, 4, 0.12); min-width: 240px; padding: 12px 0; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s; z-index: 60; }
.nav > li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 9px 22px; font-size: 13.5px; color: var(--ink-soft); font-family: var(--sans-alt); font-weight: 500; transition: all 0.2s; }
.submenu li a:hover { background: var(--cream-light); color: var(--gold-dark); padding-left: 28px; }

.header-cta { padding: 10px 18px; background: var(--gold); color: var(--white); font-family: var(--sans-alt); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: background 0.25s; white-space: nowrap; flex-shrink: 0; }
.header-cta:hover { background: var(--gold-dark); }

/* ===== MENÚ MÓVIL SUPERPUESTO ===== */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--gold); z-index: 99999; display: flex; flex-direction: column; padding: 30px; transform: translateX(100%); transition: transform 0.35s ease-in-out; overflow-y: auto; }
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 50px; }
.mobile-menu-logo { height: 70px; width: auto; filter: brightness(0) invert(1); }
.mobile-close { color: var(--white); font-size: 36px; background: none; border: none; cursor: pointer; line-height: 1; margin-top: 5px; }
.mobile-nav { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.mobile-nav > li > a { color: var(--white); font-family: var(--sans-alt); font-size: 16px; font-weight: 500; text-transform: uppercase; text-decoration: none; display: flex; justify-content: flex-start; align-items: center; gap: 12px; }
.mobile-nav-arrow { font-size: 20px; }
.mobile-menu-social { margin-top: auto; padding-top: 40px; display: flex; gap: 16px; }
.mobile-menu-social a { color: var(--white); font-size: 22px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 620px; background: linear-gradient(rgba(29, 22, 13, 0.62), rgba(29, 22, 13, 0.52)), url('https://navarroynavarro.es/wp-content/uploads/2025/01/por-que-contratar-buscaherederos.webp') center/cover; display: grid; grid-template-columns: 1.1fr 1fr; }
.hero-content { padding: 80px 60px 80px 8%; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--sans-alt); font-size: 11.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; }
.hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold-light); }
.hero h1 { font-family: var(--serif); font-size: clamp(36px, 4.4vw, 58px); font-weight: 500; line-height: 1.08; letter-spacing: -0.005em; margin-bottom: 26px; color: var(--white); }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero-sub { font-size: 17px; line-height: 1.7; color: #e8e2d5; margin-bottom: 32px; max-width: 580px; }
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 38px; flex-wrap: wrap; }
.btn-gold { padding: 16px 28px; background: var(--gold); color: var(--white); font-family: var(--sans-alt); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--gold); }
.btn-gold .icon { font-size: 15px; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost { padding: 16px 28px; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); font-family: var(--sans-alt); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px; }
.btn-ghost:hover { background: var(--gold); border-color: var(--gold); }
.hero-trust { display: flex; gap: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); flex-wrap: wrap; }
.hero-trust-item .num { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.hero-trust-item .lbl { font-size: 11.5px; color: #c5bca8; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--sans-alt); font-weight: 500; }

.hero-form { background: var(--dark); padding: 55px 50px; color: var(--white); display: flex; flex-direction: column; justify-content: center; border-left: 4px solid var(--gold); }
.hero-form-eyebrow { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-family: var(--sans-alt); font-weight: 700; margin-bottom: 12px; }
.hero-form h2 { font-family: var(--serif); font-size: 30px; line-height: 1.2; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.hero-form h2 em { color: var(--gold-light); font-style: italic; }
.hero-form .form-sub { font-size: 14px; color: #c5bca8; margin-bottom: 22px; }
.hero-form input, .hero-form textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(185, 149, 102, 0.3); color: var(--white); padding: 13px 16px; font-family: var(--sans); font-size: 14px; margin-bottom: 11px; transition: border-color 0.2s, background 0.2s; }
.hero-form input::placeholder, .hero-form textarea::placeholder { color: rgba(255,255,255,0.55); }
.hero-form input:focus, .hero-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.hero-form textarea { min-height: 95px; resize: vertical; }
.hero-form input[type="checkbox"] { width: auto; margin-bottom: 0; margin-top: 2px; }
.hero-form .form-check { font-size: 12px; color: #b8b0a0; display: flex; align-items: flex-start; justify-content: flex-start; gap: 10px; margin: 6px 0 16px; line-height: 1.5; cursor: pointer; }
.hero-form .form-check a { color: var(--gold-light); text-decoration: underline; }
.hero-form .form-btn { width: 100%; padding: 16px; background: var(--gold); color: var(--white); font-family: var(--sans-alt); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.25s; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.hero-form .form-btn:hover { background: var(--gold-dark); }
.form-reassure { margin-top: 14px; font-size: 11.5px; color: #a59c87; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-reassure .icon { color: var(--gold-light); font-size: 13px; }

/* ===== SECCIONES COMUNES ===== */
.authority-bar { background: var(--cream); padding: 36px 0; border-bottom: 1px solid var(--line); }
.authority-inner { max-width: 1290px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center; }
.authority-label { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--ink-soft); line-height: 1.3; max-width: 220px; }
.authority-label strong { color: var(--gold-dark); font-style: normal; font-weight: 700; }
.authority-logos { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; opacity: 0.7; }
.media-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.media-logo.italic { font-style: italic; }
.media-logo.uppercase { text-transform: uppercase; font-size: 17px; letter-spacing: 0.06em; }

section { padding: 100px 0; }
.container { max-width: 1290px; margin: 0 auto; padding: 0 30px; }
.section-head { max-width: 800px; margin-bottom: 60px; }
.section-head.center { margin: 0 auto 60px; text-align: center; }
.eyebrow { font-family: var(--sans-alt); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-head h2 { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 48px); font-weight: 500; line-height: 1.15; color: var(--ink); margin: 0 0 18px; letter-spacing: -0.005em; }
.section-head h2 em { color: var(--gold); font-style: italic; }
.section-head p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; }
.gold-divider { width: 60px; height: 1.5px; background: var(--gold); margin: 22px 0; }
.center .gold-divider { margin: 22px auto; }

/* ===== BLOQUES INTERNOS ===== */
.what-is { background: var(--white); }
.what-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 70px; align-items: start; }
.what-text p { margin-bottom: 20px; font-size: 17px; color: var(--ink-soft); line-height: 1.8; }
.what-text p strong { color: var(--ink); font-weight: 700; }
.definition-card { background: var(--cream); padding: 44px 40px; position: relative; border-top: 4px solid var(--gold); }
.definition-card h3 { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 24px; font-weight: 600; }
.definition-list { list-style: none; padding: 0; }
.definition-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; align-items: flex-start; }
.definition-list li:last-child { border-bottom: none; }
.definition-list li .bullet-icon { color: var(--gold); flex-shrink: 0; font-size: 14px; margin-top: 4px; }

.stats { background: var(--dark); color: var(--white); padding: 80px 0; }
.stats-inner { max-width: 1290px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat { text-align: center; }
.stat .num { font-family: var(--serif); font-size: 62px; font-weight: 500; line-height: 1; color: var(--gold); margin-bottom: 12px; }
.stat .lbl { font-size: 12.5px; line-height: 1.5; color: #c5bca8; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--sans-alt); font-weight: 500; }

.use-cases { background: var(--cream); }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.use-card { background: var(--white); padding: 38px 30px; border-top: 3px solid var(--gold); transition: transform 0.25s, box-shadow 0.25s; }
.use-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(36, 35, 4, 0.08); }
.use-icon { width: 56px; height: 56px; background: var(--cream-light); color: var(--gold); display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; }
.use-icon .icon { font-size: 24px; }
.use-card h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 12px; font-weight: 600; line-height: 1.25; }
.use-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

.process { background: var(--white); }
.process-timeline { position: relative; max-width: 940px; margin: 0 auto; padding-left: 70px; }
.process-timeline::before { content: ""; position: absolute; left: 28px; top: 14px; bottom: 14px; width: 1px; background: var(--line); }
.step { position: relative; padding-bottom: 48px; }
.step:last-child { padding-bottom: 0; }
.step-num { position: absolute; left: -70px; top: 0; width: 56px; height: 56px; background: var(--white); border: 1.5px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: 24px; font-weight: 700; display: grid; place-items: center; border-radius: 50%; }
.step-eyebrow { font-family: var(--sans-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.step h3 { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.step p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; }
.step p strong { color: var(--ink); font-weight: 700; }

.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 46px 70px; }
.why-item { display: grid; grid-template-columns: 62px 1fr; gap: 22px; }
.why-num { font-family: var(--serif); font-size: 46px; color: var(--gold); font-weight: 500; line-height: 1; }
.why-item h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 10px; font-weight: 600; }
.why-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; }

.cases { background: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case { background: var(--cream); padding: 36px 30px; border-left: 3px solid var(--gold); }
.case-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-family: var(--sans-alt); margin-bottom: 14px; }
.case h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 14px; line-height: 1.3; font-weight: 600; }
.case p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; }
.case-result { padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink); font-weight: 700; font-family: var(--sans-alt); }
.case-result span { color: var(--gold-dark); }

.testimonials { background: var(--dark); color: var(--white); }
.testimonials .section-head h2 { color: var(--white); }
.testimonials .section-head p { color: #c5bca8; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { background: rgba(255,255,255,0.04); border: 1px solid rgba(185, 149, 102, 0.2); padding: 38px 30px 30px; position: relative; }
.quote-mark { font-family: var(--serif); font-size: 70px; color: var(--gold); line-height: 0.5; opacity: 0.5; margin-bottom: 4px; display: block; }
.testimonial p { font-family: var(--serif); font-size: 17px; font-style: italic; color: #e8e2d5; line-height: 1.6; margin: 14px 0 22px; }
.testimonial-author { border-top: 1px solid rgba(185, 149, 102, 0.25); padding-top: 18px; }
.testimonial-author strong { display: block; font-family: var(--sans-alt); font-weight: 700; color: var(--white); font-size: 14.5px; margin-bottom: 4px; }
.testimonial-author span { font-size: 13px; color: var(--gold-light); }

.faq { background: var(--cream); }
.faq-grid { max-width: 920px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 12px; border-left: 3px solid var(--gold); transition: box-shadow 0.25s; }
.faq-item.open { box-shadow: 0 8px 24px rgba(36,35,4,0.06); }
.faq-q { padding: 22px 28px; font-family: var(--sans-alt); font-size: 15.5px; color: var(--ink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; display: flex; justify-content: space-between; align-items: center; gap: 30px; cursor: pointer; transition: color 0.2s; width: 100%; text-align: left; }
.faq-q:hover { color: var(--gold); }
.faq-toggle-icon { color: var(--gold); font-size: 22px; line-height: 1; flex-shrink: 0; transition: transform 0.25s; font-weight: 300; font-family: var(--sans-alt); }
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; font-size: 15px; color: var(--ink-soft); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 28px 24px; }

.final-cta { background: linear-gradient(rgba(29, 22, 13, 0.92), rgba(29, 22, 13, 0.92)), url('https://navarroynavarro.es/wp-content/uploads/2023/02/header-1.webp') center/cover; color: var(--white); padding: 90px 0; text-align: center; }
.final-cta h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); line-height: 1.1; font-weight: 500; color: var(--white); margin-bottom: 22px; max-width: 820px; margin-left: auto; margin-right: auto; }
.final-cta h2 em { color: var(--gold-light); font-style: italic; }
.final-cta p { font-size: 17px; color: #c5bca8; line-height: 1.75; max-width: 700px; margin: 0 auto 36px; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-gold { font-size: 14px; padding: 18px 32px; }

/* ===== BANNER FLOTANTE INFERIOR ===== */
.mg-cta-shell { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 100; transition: transform 0.4s ease, opacity 0.4s ease; width: max-content; max-width: 95%; font-family: var(--sans); }
.mg-cta-container { background: var(--white); padding: 10px 16px 10px 24px; border-radius: 60px; box-shadow: 0 10px 40px rgba(29, 22, 13, 0.15); display: flex; align-items: center; }
.mg-cta-copy { display: flex; align-items: center; gap: 12px; padding-right: 18px; margin-right: 18px; border-right: 1px solid var(--line); }
.mg-cta-dot { width: 10px; height: 10px; background-color: #25D366; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: mg-pulse 2s infinite; }
@keyframes mg-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.mg-cta-text { display: flex; flex-direction: column; line-height: 1.2; }
.mg-cta-text span { font-size: 11.5px; color: var(--ink-muted); }
.mg-cta-text strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.mg-cta-actions { display: flex; gap: 10px; align-items: center; }
.mg-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 18px; border-radius: 40px; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: transform 0.2s, filter 0.2s; }
.mg-cta-btn:hover { filter: brightness(0.95); transform: translateY(-1px); }
.mg-btn-whatsapp { background: #25D366; color: var(--white); }
.mg-btn-light { background: #F4F5F7; color: var(--ink); }
.mg-btn-primary { background: var(--gold); color: var(--white); }
.mg-cta-close { background: none; border: none; color: #b0a898; font-size: 18px; cursor: pointer; padding: 4px 4px 4px 8px; display: flex; align-items: center; transition: color 0.2s; }
.mg-cta-close:hover { color: var(--ink); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #b8b0a0; padding: 70px 0 100px; }
.footer-top { max-width: 1290px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(185, 149, 102, 0.18); }
.footer-brand .logo-footer { height: 130px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer h4 { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 22px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 11px; font-size: 14px; line-height: 1.55; display: flex; gap: 10px; align-items: flex-start; }
.footer ul li .icon { color: var(--gold); flex-shrink: 0; margin-top: 4px; font-size: 14px; }
.footer ul a:hover { color: var(--gold-light); }
.footer-social { margin-top: 22px; display: flex; gap: 9px; }
.footer-social a { width: 38px; height: 38px; background: rgba(185, 149, 102, 0.15); color: var(--gold-light); display: grid; place-items: center; border-radius: 50%; transition: all 0.25s; }
.footer-social a .icon { font-size: 16px; }
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-bot { max-width: 1290px; margin: 0 auto; padding: 28px 30px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: #7a7568; }
.footer-bot a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  /* Ocultamos la promo si no hay espacio suficiente antes del punto de corte móvil */
  .nav-promo { display: none; }
}
@media (max-width: 1100px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 36px; }
  .hero-form { padding: 50px 36px; }
  .what-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .use-grid, .cases-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .authority-inner { grid-template-columns: 1fr; gap: 28px; }
  .authority-label { max-width: none; text-align: center; }
  .authority-logos { justify-content: center; gap: 32px; }
}
@media (max-width: 900px) {
  .mg-cta-copy { display: none; }
  .mg-cta-container { padding: 8px 12px; }
  .mg-cta-btn { padding: 10px 16px; font-size: 13px; }
}
@media (max-width: 640px) {
  section { padding: 70px 0; }
  .use-grid, .cases-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat .num { font-size: 44px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .process-timeline { padding-left: 50px; }
  .step-num { left: -50px; width: 44px; height: 44px; font-size: 20px; }
  .logo img { height: 80px; }
}
@media (max-width: 480px) {
  .mg-cta-shell { width: 95%; max-width: 400px; }
  .mg-cta-container { justify-content: space-between; padding: 10px; width: 100%;}
  .mg-cta-actions { width: 100%; justify-content: space-between; gap: 6px; }
  .mg-cta-btn { padding: 10px 14px; font-size: 12.5px; }
  .mg-btn-whatsapp span { display: none; }
  .mg-btn-whatsapp { padding: 12px; border-radius: 50%; width: 42px; height: 42px; }
  .mg-cta-btn svg { width: 18px; height: 18px; }
}