:root {
  --bg: linear-gradient(180deg, #eef7ff 0%, #d8ecfb 52%, #d8ead8 100%);
  --panel: rgba(255,255,255,0.85);
  --ink: #173247;
  --muted: rgba(23,50,71,.68);
  --accent: #0b7285;
  --accent2: #f08c46;
  --line: rgba(23,49,38,.10);
  --card-alt: rgba(255,255,255,.72);
  --heading: "Copperplate", sans-serif;
  --body: "Bookman Old Style", serif;
  --radius: 22px;
  --shadow: 0 22px 55px rgba(0,0,0,.18);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.65; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); background: color-mix(in srgb, var(--panel) 88%, transparent); border-bottom: 1px solid var(--line); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--heading); font-weight: 700; }
.brand-mark { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), var(--accent2)); box-shadow: var(--shadow); }
.nav-links { display: flex; gap: 18px; align-items: center; font-size: .9rem; }
.menu-button { display: none; border: 0; padding: 10px 14px; border-radius: 999px; background: var(--card-alt); color: var(--ink); }
.shell { padding: 28px 0 54px; }
.hero,.grid-2,.grid-3,.faq,.timeline,.footer-grid,.stats { display: grid; gap: 18px; }
.hero { grid-template-columns: 1.05fr .95fr; }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.stats { grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 22px; }
.hero-copy,.hero-aside,.section-card,.quote,.feature-card,.faq-item,.timeline-item,.footer-box,.stat,.page-intro {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy,.hero-aside,.section-card,.quote,.footer-box,.page-intro { padding: 28px; }
.feature-card,.faq-item,.timeline-item,.stat { padding: 22px; }
.feature-card,.faq-item,.timeline-item,.stat { background: var(--card-alt); }
.eyebrow { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
h1,h2,h3 { margin: 0 0 14px; font-family: var(--heading); line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
p { margin: 0 0 16px; }
.lead,.muted { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-width: 168px; padding: 13px 20px; border-radius: 999px; font-weight: 700; }
.button-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }
.button-secondary { background: var(--card-alt); border: 1px solid var(--line); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.tag { padding: 8px 12px; border-radius: 999px; background: var(--card-alt); border: 1px solid var(--line); font-size: .86rem; }
.section { padding: 16px 0; }
.table-list { display: grid; gap: 12px; }
.table-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px 16px; border-radius: 16px; background: var(--card-alt); border: 1px solid var(--line); }
@media (max-width: 900px) {
  .hero,.grid-2,.grid-3,.footer-grid,.stats { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 76px; right: 1rem; min-width: 220px; padding: 14px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); }
  .nav-links.is-open { display: grid; }
  .menu-button { display: inline-flex; }
}
@media (max-width: 640px) {
  .container { width: min(1180px, calc(100% - 1.2rem)); }
  h1 { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .hero-copy,.hero-aside,.section-card,.quote,.footer-box,.page-intro,.feature-card,.faq-item,.timeline-item,.stat { padding: 22px; }
}
.quote::after { content: "parrilla tv"; position: absolute; right: 18px; bottom: 10px; font-family: var(--heading); font-size: 3rem; opacity: .08; }
.quote { position: relative; overflow: hidden; }
