:root {
  --bg: #0b0b0c;
  --bg-soft: #121215;
  --panel: #17171b;
  --paper: #f7f6f2;
  --paper-2: #efede6;
  --ink: #151515;
  --muted: #67645e;
  --line: rgba(20, 20, 20, .12);
  --line-dark: rgba(255, 255, 255, .12);
  --gold: #e3ad36;
  --gold-2: #ffcb59;
  --gold-dark: #9b6f16;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .18);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: var(--gold); color: var(--ink); padding: 12px 16px;
  border-radius: 12px; font-weight: 800; text-decoration: none;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  padding: 9px 0;
}
.nav-wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand {
  width: 190px; height: 70px; overflow: hidden;
  background: transparent; display: grid; place-items: center; text-decoration: none;
}
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; transform: none; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 24px; }
.main-nav a {
  color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; font-weight: 700;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-2); }
.nav-cta {
  text-decoration: none; color: var(--ink); background: var(--gold-2);
  padding: 12px 18px; border-radius: 999px; font-weight: 900; font-size: 14px;
}
.menu-button { display: none; }

.hero {
  min-height: 780px; position: relative; overflow: hidden; background:
    radial-gradient(circle at 72% 35%, rgba(226, 173, 54, .13), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(226, 173, 54, .07), transparent 32%),
    var(--bg);
  color: var(--white);
  display: flex; align-items: center;
  padding: 132px 0 88px;
}
.hero::before {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.28;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 76px; }
.hero-copy h1 {
  margin: 14px 0 24px; font-size: clamp(48px, 6.2vw, 82px); line-height: .98;
  letter-spacing: -.055em; max-width: 780px;
}
.hero-copy h1 strong { display: block; color: var(--gold-2); font-weight: 900; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900;
}
.hero .eyebrow, .eyebrow.light { color: var(--gold-2); }
.eyebrow span { display:inline-block; width: 30px; height: 2px; background: currentColor; border-radius: 99px; }
.eyebrow.centered { justify-content: center; }
.hero-lead { color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.72; max-width: 650px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 22px; border-radius: 14px; border: 1px solid transparent; text-decoration: none;
  font-weight: 900; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #17120a; box-shadow: 0 12px 28px rgba(226,173,54,.18); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.button-outline { color: var(--ink); border-color: rgba(20,20,20,.18); background: transparent; }
.button-dark { background: #111; color: #fff; }
.button.full { width: 100%; }

.hero-facts { display: flex; gap: 34px; margin-top: 52px; }
.hero-facts div { display: grid; gap: 4px; }
.hero-facts strong { font-size: 24px; color: var(--gold-2); }
.hero-facts span { color: rgba(255,255,255,.48); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { min-height: 520px; display: grid; place-items: center; position: relative; }
.logo-stage {
  width: min(520px, 94%); aspect-ratio: 1.338/1; position: relative; z-index: 3;
  background: transparent; border-radius: 34px; padding: 0; display:grid; place-items:center; overflow:hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  transform: rotate(-1deg);
}
.logo-stage img { width: 100%; height:100%; object-fit:contain; border-radius: 0; }
.signal-ring {
  position:absolute; border: 1px solid rgba(255,203,89,.25); border-radius:50%; z-index:1;
}
.ring-one { width: 510px; height: 510px; }
.ring-two { width: 620px; height: 620px; opacity:.45; }
.floating-chip {
  position:absolute; z-index:4; padding: 12px 15px; border-radius:999px;
  background: rgba(23,23,27,.92); border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 35px rgba(0,0,0,.28); font-size:13px; font-weight:900;
  display:flex; align-items:center; gap:8px; backdrop-filter:blur(10px);
}
.chip-top { top: 18%; right: 0; }
.chip-bottom { bottom: 16%; left: 2%; }
.chip-dot { width:8px; height:8px; border-radius:50%; background:var(--gold-2); box-shadow:0 0 0 5px rgba(255,203,89,.1); }
.hero-glow { position:absolute; width:420px; height:420px; border-radius:50%; right:8%; bottom:-300px; background:var(--gold); filter:blur(120px); opacity:.12; }

.quick-strip { background: #0f0f11; color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.quick-grid { display:grid; grid-template-columns: repeat(3,1fr); }
.quick-item { min-height: 108px; display:flex; align-items:center; gap:16px; padding: 22px 34px; border-right:1px solid rgba(255,255,255,.08); }
.quick-item:last-child { border-right:0; }
.quick-icon { width:42px; height:42px; border-radius:13px; display:grid; place-items:center; background:rgba(255,203,89,.1); color:var(--gold-2); }
.quick-icon svg { width:24px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.quick-item div:last-child { display:grid; gap:3px; }
.quick-item strong { font-size:15px; }
.quick-item span { color:rgba(255,255,255,.48); font-size:13px; }

.section { padding: 104px 0; }
.section-heading { max-width: 700px; margin-bottom: 46px; }
.section-heading.centered { text-align:center; margin: 0 auto 52px; }
.section-heading h2, .about-copy h2, .coverage-copy h2, .contact-copy h2, .payment-grid h2 {
  font-size: clamp(36px,4.5vw,56px); line-height:1.04; letter-spacing:-.045em; margin: 14px 0 18px;
}
.section-heading p, .about-copy > p, .contact-copy > p { color: var(--muted); line-height:1.75; font-size:16px; }

.plans-section { background: var(--paper); }
.plans-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; max-width:900px; margin:auto; }
.plan-card {
  position:relative; background:#fff; border:1px solid var(--line); border-radius:28px; padding:30px;
  box-shadow: 0 16px 50px rgba(0,0,0,.05); overflow:hidden;
}
.plan-card.featured { border-color: rgba(227,173,54,.6); }
.plan-card.featured::before { content:""; position:absolute; width:170px; height:170px; right:-70px; top:-80px; background:rgba(227,173,54,.11); border-radius:50%; }
.plan-badge { display:inline-block; padding:7px 11px; background:#151515; color:var(--gold-2); border-radius:999px; font-size:11px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.plan-badge.secondary { background:#ece9df; color:#2f2c26; }
.plan-name { margin:24px 0 4px; color:var(--muted); font-weight:800; }
.speed { display:flex; align-items:baseline; gap:10px; }
.speed strong { font-size:72px; letter-spacing:-.07em; line-height:1; }
.speed span { font-weight:900; font-size:14px; letter-spacing:.08em; color:var(--gold-dark); }
.share { color:var(--muted); margin:8px 0 24px; }
.plan-price { display:flex; align-items:baseline; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:20px 0; }
.plan-price > span { font-size:20px; font-weight:900; }
.plan-price strong { font-size:48px; line-height:1; letter-spacing:-.05em; }
.plan-price small { color:var(--muted); margin-left:7px; }
.plan-list { list-style:none; padding:20px 0; margin:0; display:grid; gap:12px; min-height:145px; }
.plan-list li { color:#44413c; line-height:1.5; font-size:14px; }
.plan-list li span { color:var(--gold-dark); font-weight:900; margin-right:7px; }
.plan-note { color:var(--muted); text-align:center; font-size:13px; margin:22px auto 0; }

.about-section { background:#ebe8df; }
.about-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:start; }
.about-copy { position:sticky; top:120px; }
.text-link { text-decoration:none; font-weight:900; display:inline-flex; gap:8px; align-items:center; margin-top:12px; }
.text-link span { color:var(--gold-dark); }
.purpose-grid { display:grid; gap:16px; }
.purpose-card { background:#fff; border-radius:22px; padding:26px 28px; border:1px solid rgba(20,20,20,.08); display:grid; grid-template-columns:60px 1fr; column-gap:18px; align-items:start; }
.purpose-number { grid-row:1/3; color:var(--gold-dark); font-weight:900; font-size:13px; padding-top:4px; }
.purpose-card h3 { margin:0 0 8px; font-size:22px; }
.purpose-card p { margin:0; color:var(--muted); line-height:1.65; }

.coverage-section { background:#f7f6f2; }
.coverage-card {
  min-height:500px; background:#111214; border-radius:34px; padding:54px; color:#fff;
  display:grid; grid-template-columns:1fr 1fr; overflow:hidden; position:relative; box-shadow:var(--shadow);
}
.coverage-copy { position:relative; z-index:2; align-self:center; max-width:580px; }
.coverage-copy p { color:rgba(255,255,255,.62); line-height:1.7; max-width:530px; }
.coverage-copy address { font-style:normal; line-height:1.65; color:var(--gold-2); margin:24px 0 30px; }
.coverage-actions { display:flex; gap:10px; flex-wrap:wrap; }
.coverage-art { position:relative; display:grid; place-items:center; min-height:380px; }
.coverage-art::before { content:""; position:absolute; inset:-80px; background:radial-gradient(circle, rgba(227,173,54,.16), transparent 58%); }
.coverage-art svg { width:100%; max-width:520px; position:relative; z-index:1; }
.map-line { fill:none; stroke:rgba(255,203,89,.62); stroke-width:5; stroke-linecap:round; stroke-dasharray:11 13; }
.map-line.faint { stroke:rgba(255,255,255,.13); stroke-width:3; }
.map-pin-ring { fill:none; stroke:var(--gold-2); stroke-width:4; }
.map-pin { fill:var(--gold-2); }
.map-pulse { fill:none; stroke:rgba(255,203,89,.36); stroke-width:2; animation:pulse 2.6s infinite; transform-origin:268px 183px; }
.location-label { position:absolute; z-index:2; left:50%; top:57%; transform:translate(-50%, -50%); margin-top:70px; text-align:center; }
.location-label strong { display:block; font-size:28px; }
.location-label span { color:rgba(255,255,255,.48); font-size:12px; text-transform:uppercase; letter-spacing:.12em; }
@keyframes pulse { 0% { transform:scale(.5); opacity:1;} 100% { transform:scale(1.5); opacity:0;} }

.documents-section { background:#eeece5; }
.documents-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.document-card {
  background:#fff; border:1px solid rgba(20,20,20,.08); border-radius:19px; padding:18px;
  display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:center;
  color:inherit; text-decoration:none; cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.document-card:hover { transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,0,0,.06); border-color:rgba(155,111,22,.28); }
.document-card:focus-visible { outline:3px solid rgba(227,173,54,.45); outline-offset:3px; }
.document-icon { width:46px; height:46px; border-radius:13px; background:#f4eddc; color:var(--gold-dark); display:grid; place-items:center; }
.document-icon svg { width:23px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linejoin:round; stroke-linecap:round; }
.document-copy h3 { font-size:14px; margin:0 0 4px; line-height:1.35; }
.document-copy p { font-size:12px; margin:0; color:var(--muted); line-height:1.45; }
.document-arrow { width:36px; height:36px; border-radius:50%; display:grid; place-items:center; color:var(--gold-dark); background:#f6f0e1; transition:transform .2s ease, background .2s ease; }
.document-arrow svg { width:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.document-card:hover .document-arrow { transform:translate(2px,-2px); background:#efe3c5; }

.contact-section { background:#faf9f6; }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.contact-details { display:grid; gap:10px; margin-top:34px; }
.contact-details a { display:flex; justify-content:space-between; gap:18px; text-decoration:none; border-bottom:1px solid var(--line); padding:12px 0; }
.contact-details span { color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.1em; }
.contact-details strong { font-size:14px; text-align:right; }
.contact-form { background:#fff; border:1px solid var(--line); border-radius:28px; padding:30px; box-shadow:0 18px 50px rgba(0,0,0,.06); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.contact-form label { display:grid; gap:8px; font-size:13px; font-weight:800; margin-bottom:14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width:100%; border:1px solid rgba(20,20,20,.14); border-radius:12px; background:#fbfaf7;
  padding:14px 15px; color:var(--ink); outline:none; transition:border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:var(--gold); box-shadow:0 0 0 4px rgba(227,173,54,.12); }
.contact-form textarea { resize:vertical; }
.contact-form small { display:block; color:var(--muted); margin-top:10px; line-height:1.5; text-align:center; }

.payment-section { background:linear-gradient(135deg,#171719,#0a0a0b); color:#fff; padding:70px 0; }
.payment-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.payment-grid h2 { margin-bottom:0; }
.payment-methods { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.payment-methods div { min-height:100px; border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.04); border-radius:18px; display:grid; place-items:center; align-content:center; gap:8px; font-weight:800; font-size:13px; }
.payment-methods span { color:var(--gold-2); font-size:24px; }

.site-footer { background:#080809; color:#fff; padding:58px 0 22px; }
.footer-grid { display:grid; grid-template-columns:1.7fr repeat(3,1fr); gap:44px; }
.footer-brand img { width:240px; height:auto; object-fit:contain; object-position:center; border-radius:0; background:transparent; }
.footer-brand p { color:rgba(255,255,255,.42); max-width:300px; line-height:1.65; font-size:13px; margin-top:16px; }
.footer-grid h3 { font-size:13px; margin:0 0 16px; color:var(--gold-2); text-transform:uppercase; letter-spacing:.08em; }
.footer-grid > div:not(.footer-brand) { display:flex; flex-direction:column; align-items:flex-start; }
.footer-grid a { text-decoration:none; color:rgba(255,255,255,.58); font-size:13px; margin:0 0 11px; line-height:1.4; }
.footer-grid a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.09); margin-top:42px; padding-top:20px; display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.34); font-size:11px; }

.whatsapp-float {
  position:fixed; z-index:900; right:22px; bottom:22px; width:58px; height:58px; border-radius:50%;
  background:#1ecf67; display:grid; place-items:center; box-shadow:0 14px 35px rgba(0,0,0,.24);
  transition:transform .2s ease;
}
.whatsapp-float:hover { transform:translateY(-3px) scale(1.02); }
.whatsapp-float svg { width:30px; fill:#fff; }

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

@media (max-width: 980px) {
  :root { --shell:min(100% - 30px, 760px); }
  .nav-wrap { grid-template-columns:auto 1fr auto; }
  .brand { width:170px; height:62px; }
  .menu-button {
    justify-self:end; display:grid; width:46px; height:46px; place-content:center; gap:5px;
    border:1px solid rgba(255,255,255,.12); border-radius:13px; background:rgba(255,255,255,.05);
  }
  .menu-button span { display:block; width:20px; height:2px; background:#fff; border-radius:9px; transition:.2s; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .main-nav {
    position:fixed; top:79px; left:15px; right:15px; padding:22px; border-radius:22px;
    background:rgba(16,16,18,.98); border:1px solid rgba(255,255,255,.1);
    flex-direction:column; align-items:stretch; gap:0; transform:translateY(-15px); opacity:0; pointer-events:none;
    transition:.2s ease; box-shadow:0 24px 70px rgba(0,0,0,.35);
  }
  .main-nav.open { transform:none; opacity:1; pointer-events:auto; }
  .main-nav a { padding:14px 4px; border-bottom:1px solid rgba(255,255,255,.07); }
  .main-nav a:last-child { border-bottom:0; }
  .nav-cta { display:none; }
  .hero { min-height:auto; padding-top:126px; }
  .hero-grid { grid-template-columns:1fr; gap:35px; }
  .hero-copy h1 { max-width:660px; }
  .hero-visual { min-height:430px; }
  .logo-stage { max-width:460px; }
  .ring-one { width:420px; height:420px; }
  .ring-two { width:520px; height:520px; }
  .quick-grid { grid-template-columns:1fr; }
  .quick-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.07); }
  .quick-item:last-child { border-bottom:0; }
  .about-grid, .contact-grid { grid-template-columns:1fr; gap:40px; }
  .about-copy { position:static; }
  .coverage-card { grid-template-columns:1fr; padding:40px; }
  .coverage-art { min-height:320px; }
  .documents-grid { grid-template-columns:1fr; }
  .payment-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2/4; }
}

@media (max-width: 640px) {
  :root { --shell:calc(100% - 28px); --radius:20px; }
  .site-header { padding:10px 0; }
  .site-header.scrolled { padding:7px 0; }
  .brand { width:158px; height:58px; }
  .menu-button { width:42px; height:42px; }
  .main-nav { top:67px; }
  .hero { padding:112px 0 64px; }
  .hero-copy h1 { font-size:48px; }
  .hero-lead { font-size:16px; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .hero-facts { gap:18px; justify-content:space-between; margin-top:38px; }
  .hero-facts strong { font-size:21px; }
  .hero-facts span { font-size:10px; }
  .hero-visual { min-height:320px; }
  .logo-stage { border-radius:24px; padding:0; }
  .logo-stage img { border-radius:0; }
  .ring-one { width:300px; height:300px; }
  .ring-two { width:370px; height:370px; }
  .floating-chip { font-size:11px; padding:9px 11px; }
  .chip-top { top:10%; }
  .chip-bottom { bottom:8%; }
  .quick-item { padding:18px 16px; min-height:90px; }
  .section { padding:78px 0; }
  .section-heading h2, .about-copy h2, .coverage-copy h2, .contact-copy h2, .payment-grid h2 { font-size:38px; }
  .plans-grid { grid-template-columns:1fr; }
  .plan-card { padding:24px; border-radius:22px; }
  .speed strong { font-size:62px; }
  .purpose-card { grid-template-columns:42px 1fr; padding:22px 20px; }
  .coverage-card { padding:28px 22px; border-radius:24px; }
  .coverage-actions { display:grid; }
  .coverage-art { min-height:260px; }
  .document-card { grid-template-columns:auto 1fr auto; gap:12px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .contact-form { padding:22px; border-radius:22px; }
  .payment-methods { grid-template-columns:1fr; }
  .payment-methods div { min-height:74px; grid-auto-flow:column; justify-content:center; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px 22px; }
  .footer-brand { grid-column:1/-1; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .whatsapp-float { width:54px; height:54px; right:16px; bottom:16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* ===== v3 · Tema claro con acentos HybridNetManú ===== */
:root {
  --paper: #fffdf8;
  --paper-2: #f8f2e6;
  --muted: #6b675f;
  --line: rgba(37, 31, 22, .11);
  --shadow: 0 22px 60px rgba(82, 63, 24, .10);
}

body {
  background: #fffdf8;
  background-image: radial-gradient(circle at 10% 12%, rgba(255,203,89,.09), transparent 25%);
}

.site-header {
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(35,28,18,.07);
}
.site-header.scrolled {
  background: rgba(255,253,248,.96);
  box-shadow: 0 8px 30px rgba(45,34,14,.08), 0 1px 0 rgba(35,28,18,.07);
}
.brand {
  background: #101012;
  border-radius: 18px;
  padding: 4px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.main-nav a { color: #34302b; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-dark); }
.nav-cta { box-shadow: 0 8px 22px rgba(227,173,54,.22); }

.hero {
  min-height: 760px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 34%, rgba(255,203,89,.30), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(227,173,54,.13), transparent 30%),
    linear-gradient(145deg,#fffdf8 0%,#fbf5e8 55%,#fffaf1 100%);
}
.hero::before {
  opacity: .8;
  background-image:
    linear-gradient(rgba(91,72,35,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,72,35,.035) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero .eyebrow { color: var(--gold-dark); }
.hero-copy h1 strong { color: #c58a16; }
.hero-lead { color: #625e56; }
.button-secondary { color:#24211d; border-color:rgba(37,31,22,.18); background:rgba(255,255,255,.72); }
.hero-facts strong { color:#b87908; }
.hero-facts span { color:#777168; }
.hero-glow { opacity:.18; bottom:-260px; }
.logo-stage {
  background:#0d0d0f;
  padding: 4px;
  border:1px solid rgba(227,173,54,.20);
  box-shadow:0 28px 70px rgba(78,58,20,.18);
}
.signal-ring { border-color:rgba(178,125,19,.24); }
.floating-chip {
  background:rgba(255,255,255,.94);
  border-color:rgba(40,34,24,.09);
  color:#2b2722;
  box-shadow:0 12px 30px rgba(67,49,18,.12);
}

.quick-strip {
  background: linear-gradient(90deg,#f6e6bd,#fff5db 48%,#f6e6bd);
  color:#28231c;
  border-top:1px solid rgba(151,105,18,.14);
  border-bottom:1px solid rgba(151,105,18,.14);
}
.quick-item { border-right-color:rgba(79,61,28,.12); }
.quick-icon { background:#fffaf0; color:#a86f08; border:1px solid rgba(168,111,8,.10); }
.quick-item span { color:#6b6254; }

.plans-section { background:#fffdf8; }
.plan-card { box-shadow:0 18px 48px rgba(96,72,23,.07); }
.plan-card.featured { background:linear-gradient(155deg,#fff 0%,#fff8e8 100%); }
.about-section { background:#faf5ea; }
.purpose-card { background:#fff; box-shadow:0 14px 34px rgba(86,64,22,.06); }

.testimonials-section {
  background:linear-gradient(180deg,#fffdf8 0%,#fff8e9 100%);
  overflow:hidden;
}
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.testimonial-card {
  position:relative;
  background:#fff;
  border:1px solid rgba(92,69,23,.10);
  border-radius:26px;
  padding:28px;
  box-shadow:0 18px 45px rgba(89,65,21,.07);
}
.testimonial-card::before {
  content:"“";
  position:absolute;
  right:22px;
  top:8px;
  font-size:72px;
  line-height:1;
  color:rgba(227,173,54,.12);
  font-family:Georgia,serif;
}
.featured-testimonial {
  background:linear-gradient(145deg,#fff8df,#fff);
  border-color:rgba(199,141,23,.28);
  transform:translateY(-8px);
}
.stars { color:#c78b17; letter-spacing:.11em; font-size:14px; margin-bottom:18px; }
.testimonial-card > p { position:relative; z-index:1; color:#4e4941; line-height:1.75; font-size:15px; margin:0 0 24px; }
.testimonial-person { display:flex; align-items:center; gap:12px; }
.testimonial-person > span {
  width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  background:#151515; color:var(--gold-2); font-size:12px; font-weight:900;
}
.testimonial-person div { display:grid; gap:2px; }
.testimonial-person strong { font-size:14px; }
.testimonial-person small { color:#8a8276; font-size:11px; }
.testimonials-note { text-align:center; color:#8a8276; font-size:11px; margin:22px 0 0; }

.coverage-section { background:#f6f0e4; }
.coverage-card {
  color:#201d18;
  background:linear-gradient(135deg,#fff8e4 0%,#f1d58c 100%);
  box-shadow:0 24px 60px rgba(102,73,19,.12);
  border:1px solid rgba(147,99,14,.12);
}
.coverage-copy p { color:#5e5649; }
.coverage-copy address { color:#76520f; }
.coverage-card .eyebrow.light { color:#8d6009; }
.coverage-art::before { background:radial-gradient(circle,rgba(255,255,255,.48),transparent 58%); }
.map-line { stroke:rgba(121,80,7,.58); }
.map-line.faint { stroke:rgba(74,59,34,.13); }
.map-pin-ring { stroke:#8c5e06; }
.map-pin { fill:#8c5e06; }
.map-pulse { stroke:rgba(140,94,6,.30); }
.location-label span { color:rgba(50,42,29,.55); }

.documents-section { background:#fbf7ef; }
.contact-section { background:#fffdf8; }
.payment-section {
  background:linear-gradient(135deg,#f8e8bd,#fff6de);
  color:#29231b;
  border-top:1px solid rgba(130,90,15,.10);
}
.payment-section .eyebrow.light { color:#8f610b; }
.payment-methods div {
  border-color:rgba(83,64,29,.12);
  background:rgba(255,255,255,.55);
  color:#2f2920;
}
.payment-methods span { color:#a8710a; }

/* El pie conserva contraste oscuro, pero ocupa solo el cierre del sitio. */
.site-footer { background:#121214; }

@media (max-width: 980px) {
  .menu-button { border-color:rgba(45,36,22,.14); background:#fff; }
  .menu-button span { background:#26221c; }
  .main-nav {
    background:rgba(255,253,248,.99);
    border-color:rgba(55,43,23,.10);
    box-shadow:0 24px 70px rgba(69,51,17,.16);
  }
  .main-nav a { color:#312d27; border-bottom-color:rgba(55,43,23,.08); }
  .testimonials-grid { grid-template-columns:1fr; }
  .featured-testimonial { transform:none; }
}

@media (max-width: 640px) {
  .brand { padding:3px 8px; border-radius:15px; }
  .hero { padding-top:112px; background:linear-gradient(165deg,#fffdf8 0%,#fff5dc 100%); }
  .hero-copy h1 { font-size:45px; }
  .hero-visual { min-height:300px; }
  .testimonial-card { padding:24px; }
}

/* ===== v4 · Logo transparente y presentación más limpia ===== */
.brand {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 210px;
  height: 68px;
  overflow: visible;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(83,57,14,.10));
}
.logo-stage {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  width: min(590px, 96%);
  transform: rotate(-1deg);
}
.logo-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(82,58,16,.16));
}
.footer-brand img {
  width: 270px;
  max-width: 100%;
  filter: drop-shadow(0 7px 20px rgba(0,0,0,.18));
}
.testimonials-section .section-heading { margin-bottom: 34px; }
.testimonial-person small { color:#8a8276; }

@media (max-width: 980px) {
  .brand { width: 185px; height: 62px; }
  .logo-stage { max-width: 520px; }
}
@media (max-width: 640px) {
  .brand { width: 168px; height: 58px; }
  .logo-stage { width: 96%; }
}

/* ===== v6 · Logo dentro de la barra de navegación ===== */
.site-header {
  padding: 8px 0;
}
.site-header.scrolled {
  padding: 6px 0;
}
.nav-wrap {
  min-height: 64px;
}
.brand {
  width: auto !important;
  height: 56px !important;
  max-height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden !important;
  flex-shrink: 0;
}
.brand img {
  width: auto !important;
  height: 52px !important;
  max-height: 52px;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 9px rgba(83,57,14,.10));
}
.logo-stage img,
.footer-brand img {
  object-fit: contain;
}

@media (max-width: 980px) {
  .nav-wrap { min-height: 60px; }
  .brand {
    height: 52px !important;
    max-height: 52px;
  }
  .brand img {
    height: 48px !important;
    max-height: 48px;
    max-width: 140px;
  }
  .main-nav { top: 70px; }
}

@media (max-width: 640px) {
  .site-header { padding: 6px 0; }
  .site-header.scrolled { padding: 5px 0; }
  .nav-wrap { min-height: 54px; }
  .brand {
    height: 46px !important;
    max-height: 46px;
  }
  .brand img {
    height: 43px !important;
    max-height: 43px;
    max-width: 126px;
  }
  .menu-button { width: 42px; height: 42px; }
  .main-nav { top: 62px; }
  .hero { padding-top: 92px; }
}

/* ===== v7 · Órbitas animadas + selector de tema ===== */
html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.theme-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(45,36,22,.13);
  background: rgba(255,255,255,.78);
  color: #2a261f;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(66,48,15,.07);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover { transform: translateY(-2px); background:#fff; }
.theme-toggle:focus-visible { outline: 3px solid rgba(227,173,54,.42); outline-offset: 3px; }
.theme-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle .icon-sun { display:none; }

/* Los círculos se comportan como órbitas: giran a velocidades distintas y llevan un punto luminoso. */
.signal-ring {
  border-style: dashed;
  border-width: 1px;
  transform-origin: 50% 50%;
  will-change: transform;
}
.signal-ring::before,
.signal-ring::after {
  content:"";
  position:absolute;
  left:50%;
  top:-5px;
  border-radius:50%;
  transform:translateX(-50%);
}
.signal-ring::before {
  width:10px;
  height:10px;
  background:#e3ad36;
  box-shadow:0 0 0 5px rgba(227,173,54,.13), 0 0 22px rgba(227,173,54,.55);
}
.signal-ring::after {
  width:5px;
  height:5px;
  top:calc(100% - 2px);
  background:#ffcb59;
  box-shadow:0 0 15px rgba(255,203,89,.55);
}
.ring-one { animation: hybridOrbit 14s linear infinite; }
.ring-two { animation: hybridOrbitReverse 22s linear infinite; }
.floating-chip { animation: chipFloat 4.2s ease-in-out infinite; }
.chip-bottom { animation-delay:-2.1s; }

@keyframes hybridOrbit {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}
@keyframes hybridOrbitReverse {
  from { transform:rotate(360deg); }
  to { transform:rotate(0deg); }
}
@keyframes chipFloat {
  0%,100% { translate:0 0; }
  50% { translate:0 -7px; }
}

/* Tema oscuro: se activa con el botón de la barra y se recuerda en el navegador. */
html[data-theme="dark"] {
  --paper:#101114;
  --paper-2:#18191d;
  --ink:#f5f2ea;
  --muted:#aaa59b;
  --line:rgba(255,255,255,.10);
  --shadow:0 22px 60px rgba(0,0,0,.30);
}
html[data-theme="dark"] body {
  background:#101114;
  color:var(--ink);
  background-image:radial-gradient(circle at 10% 12%, rgba(227,173,54,.06), transparent 25%);
}
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-header.scrolled {
  background:rgba(12,13,15,.94);
  box-shadow:0 1px 0 rgba(255,255,255,.07), 0 8px 30px rgba(0,0,0,.16);
}
html[data-theme="dark"] .main-nav a { color:rgba(255,255,255,.78); }
html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a:focus-visible { color:var(--gold-2); }
html[data-theme="dark"] .theme-toggle {
  background:#1a1b1f;
  border-color:rgba(255,255,255,.12);
  color:#ffcb59;
  box-shadow:none;
}
html[data-theme="dark"] .theme-toggle:hover { background:#222329; }
html[data-theme="dark"] .theme-toggle .icon-moon { display:none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display:block; }

html[data-theme="dark"] .hero {
  color:#fff;
  background:
    radial-gradient(circle at 78% 34%, rgba(227,173,54,.16), transparent 26%),
    radial-gradient(circle at 16% 78%, rgba(227,173,54,.08), transparent 30%),
    linear-gradient(145deg,#0c0d0f 0%,#111216 58%,#0b0c0e 100%);
}
html[data-theme="dark"] .hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
}
html[data-theme="dark"] .hero .eyebrow { color:var(--gold-2); }
html[data-theme="dark"] .hero-copy h1 strong { color:var(--gold-2); }
html[data-theme="dark"] .hero-lead { color:rgba(255,255,255,.66); }
html[data-theme="dark"] .button-secondary { color:#fff; border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.055); }
html[data-theme="dark"] .hero-facts strong { color:var(--gold-2); }
html[data-theme="dark"] .hero-facts span { color:rgba(255,255,255,.48); }
html[data-theme="dark"] .signal-ring { border-color:rgba(255,203,89,.25); }
html[data-theme="dark"] .floating-chip { background:rgba(23,23,27,.92); border-color:rgba(255,255,255,.12); color:#fff; box-shadow:0 12px 35px rgba(0,0,0,.28); }

html[data-theme="dark"] .quick-strip { background:#111216; color:#fff; border-color:rgba(255,255,255,.07); }
html[data-theme="dark"] .quick-item { border-right-color:rgba(255,255,255,.08); }
html[data-theme="dark"] .quick-icon { background:rgba(255,203,89,.09); color:var(--gold-2); border-color:rgba(255,203,89,.08); }
html[data-theme="dark"] .quick-item span { color:rgba(255,255,255,.50); }

html[data-theme="dark"] .plans-section,
html[data-theme="dark"] .contact-section { background:#101114; }
html[data-theme="dark"] .plan-card,
html[data-theme="dark"] .purpose-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .document-card,
html[data-theme="dark"] .contact-form {
  background:#18191d;
  border-color:rgba(255,255,255,.08);
  box-shadow:0 18px 48px rgba(0,0,0,.16);
}
html[data-theme="dark"] .plan-card.featured,
html[data-theme="dark"] .featured-testimonial { background:linear-gradient(145deg,#1e1b14,#18191d); border-color:rgba(227,173,54,.25); }
html[data-theme="dark"] .plan-badge.secondary { background:#27282d; color:#ddd7ca; }
html[data-theme="dark"] .plan-list li { color:#d2cec5; }
html[data-theme="dark"] .about-section { background:#141519; }
html[data-theme="dark"] .testimonials-section { background:linear-gradient(180deg,#111216 0%,#171710 100%); }
html[data-theme="dark"] .testimonial-card > p { color:#cbc7bd; }
html[data-theme="dark"] .testimonial-person > span { background:#0d0e10; }
html[data-theme="dark"] .testimonial-person small,
html[data-theme="dark"] .testimonials-note { color:#8f8a81; }

html[data-theme="dark"] .coverage-section { background:#0e0f12; }
html[data-theme="dark"] .coverage-card { color:#fff; background:linear-gradient(135deg,#17181c,#0c0d0f); border-color:rgba(255,203,89,.12); box-shadow:0 24px 60px rgba(0,0,0,.30); }
html[data-theme="dark"] .coverage-copy p { color:rgba(255,255,255,.62); }
html[data-theme="dark"] .coverage-copy address { color:var(--gold-2); }
html[data-theme="dark"] .coverage-card .eyebrow.light { color:var(--gold-2); }
html[data-theme="dark"] .coverage-art::before { background:radial-gradient(circle,rgba(227,173,54,.14),transparent 58%); }
html[data-theme="dark"] .map-line { stroke:rgba(255,203,89,.62); }
html[data-theme="dark"] .map-line.faint { stroke:rgba(255,255,255,.13); }
html[data-theme="dark"] .map-pin-ring { stroke:var(--gold-2); }
html[data-theme="dark"] .map-pin { fill:var(--gold-2); }
html[data-theme="dark"] .map-pulse { stroke:rgba(255,203,89,.34); }
html[data-theme="dark"] .location-label span { color:rgba(255,255,255,.48); }

html[data-theme="dark"] .documents-section { background:#141519; }
html[data-theme="dark"] .document-icon,
html[data-theme="dark"] .document-arrow { background:#27251f; color:var(--gold-2); }
html[data-theme="dark"] .document-card:hover .document-arrow { background:#332d20; }
html[data-theme="dark"] .contact-details a { border-bottom-color:rgba(255,255,255,.09); }
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form select,
html[data-theme="dark"] .contact-form textarea { background:#111216; border-color:rgba(255,255,255,.12); color:#f5f2ea; }
html[data-theme="dark"] .payment-section { background:linear-gradient(135deg,#18191d,#0b0c0e); color:#fff; border-color:rgba(255,255,255,.07); }
html[data-theme="dark"] .payment-section .eyebrow.light { color:var(--gold-2); }
html[data-theme="dark"] .payment-methods div { border-color:rgba(255,255,255,.10); background:rgba(255,255,255,.04); color:#fff; }
html[data-theme="dark"] .payment-methods span { color:var(--gold-2); }
html[data-theme="dark"] .site-footer { background:#07080a; }

@media (max-width:980px) {
  .nav-wrap { grid-template-columns:auto 1fr auto; }
  .main-nav { grid-column:1/-1; }
  .nav-actions { grid-column:3; grid-row:1; }
  .theme-toggle { width:42px; height:42px; flex-basis:42px; }
  html[data-theme="dark"] .menu-button { border-color:rgba(255,255,255,.13); background:#1a1b1f; }
  html[data-theme="dark"] .menu-button span { background:#fff; }
  html[data-theme="dark"] .main-nav { background:rgba(17,18,22,.99); border-color:rgba(255,255,255,.10); box-shadow:0 24px 70px rgba(0,0,0,.35); }
  html[data-theme="dark"] .main-nav a { color:#eee9df; border-bottom-color:rgba(255,255,255,.07); }
}

@media (max-width:640px) {
  .nav-actions { gap:7px; }
  .theme-toggle { width:42px; height:42px; flex-basis:42px; border-radius:13px; }
}
