/* ═══════════════════════════════════════════════════════════
   MUVEON — Fixa style
   Paleta: Rojo #C0392B · Negro #111 · Blanco #fff · Gris #f5f5f5
═══════════════════════════════════════════════════════════ */

:root {
  --red:      #C0392B;
  --red-dark: #A93226;
  --dark:     #111111;
  --white:    #ffffff;
  --light:    #f5f5f5;
  --border:   #e8e8e8;
  --text:     #444444;
  --muted:    #888888;
  --font-d:   'Barlow Condensed', sans-serif;
  --font-b:   'Barlow', sans-serif;
  --max:      1160px;
  --r:        6px;
  --ease:     0.2s ease;
}

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

h1,h2,h3,h4 { font-family: var(--font-d); font-weight: 900; line-height: 1.1; color: var(--dark); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-d); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 24px; transition: all var(--ease); border: 2px solid transparent;
}
.btn--red     { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn--outline:hover { border-color: var(--red); color: var(--red); }
.btn--white   { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white:hover { background: var(--light); }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar { background: var(--dark); padding: 7px 40px; display: flex; justify-content: space-between; align-items: center; }
.topbar__horario { display: flex; align-items: center; gap: 6px; color: #666; font-size: 12px; }
.topbar__phone   { display: flex; align-items: center; gap: 6px; color: var(--white); font-family: var(--font-d); font-size: 13px; font-weight: 700; transition: color var(--ease); }
.topbar__phone:hover { color: var(--red); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav { background: var(--white); padding: 0 40px; height: 70px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-icon { width: 40px; height: 40px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo-text { font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--dark); letter-spacing: 1px; }
.nav__logo-text span { color: var(--red); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; transition: color var(--ease); }
.nav__links a:hover, .nav__link--active { color: var(--red) !important; }
.nav__cta { background: var(--red); color: var(--white) !important; padding: 9px 20px; font-size: 12px !important; }
.nav__cta:hover { background: var(--red-dark); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: rgba(8,8,8,.75); z-index: 1; }
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 64px 40px; width: 100%; display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; }

.hero__pre { font-family: var(--font-d); font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hero__pre::before { content: ''; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.hero__h1 { font-size: 54px; color: var(--white); letter-spacing: -1px; margin-bottom: 18px; }
.hero__h1 em { color: var(--red); font-style: normal; }
.hero__desc { font-size: 15px; color: #aaa; line-height: 1.8; margin-bottom: 28px; }
.hero__call { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); font-family: var(--font-d); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 13px 24px; transition: background var(--ease); }
.hero__call:hover { background: var(--red-dark); }

/* ── HERO FORM BOX ──────────────────────────────────────── */
.hero__form-box { background: var(--white); border-radius: var(--r); overflow: hidden; }
.hero__form-title { font-family: var(--font-d); font-size: 18px; font-weight: 900; color: var(--dark); padding: 20px 24px 4px; }
.hero__form-sub   { font-size: 12px; color: var(--muted); padding: 0 24px 16px; border-bottom: 1px solid var(--border); }

/* Tabs */
.htabs { display: flex; border-bottom: 1px solid var(--border); }
.htab  { flex: 1; padding: 12px 8px; font-family: var(--font-d); font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; border-bottom: 2px solid transparent; transition: all var(--ease); }
.htab.active { color: var(--red); border-bottom-color: var(--red); }
.htab:hover  { color: var(--red); }

/* Form inside hero */
.hform { padding: 18px 24px 20px; }
.hform__row   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hform__field { margin-bottom: 10px; }
.hform__field label { display: block; font-family: var(--font-d); font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.hform__field input,
.hform__field textarea,
.hform__field select {
  width: 100%; background: #f9f9f9; border: 1px solid var(--border);
  padding: 9px 12px; font-family: var(--font-b); font-size: 13px; color: var(--dark);
  transition: border-color var(--ease); border-radius: 3px;
}
.hform__field input:focus,
.hform__field textarea:focus { outline: none; border-color: var(--red); }
.hform__field textarea { resize: none; }
.hform__btn  { width: 100%; background: var(--red); color: var(--white); font-family: var(--font-d); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px; margin-top: 4px; transition: background var(--ease); }
.hform__btn:hover { background: var(--red-dark); }
.hform__note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 24px 28px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 32px; height: 32px; flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--dark); letter-spacing: .2px; }
.trust-item span   { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.section { padding: 80px 40px; }
.section--white { background: var(--white); }
.section--light { background: var(--light); }
.container { max-width: var(--max); margin: 0 auto; }
.container--narrow { max-width: 760px; }

.section__head { text-align: center; margin-bottom: 48px; }
.section__h2   { font-size: 36px; letter-spacing: -.5px; margin-bottom: 12px; }
.section__sub  { font-size: 15px; color: var(--muted); max-width: 560px; margin: 0 auto; }

.pretag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-d); font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; }
.pretag::before { content:''; width: 20px; height: 2px; background: var(--red); flex-shrink: 0; }

/* ── SERVICIOS ───────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform var(--ease), box-shadow var(--ease); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.svc-card__img  { position: relative; overflow: hidden; }
.svc-card__img img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.04); }
.svc-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); display: flex; align-items: flex-end; padding: 16px; }
.svc-card__num { font-family: var(--font-d); font-size: 48px; font-weight: 900; color: rgba(255,255,255,.2); line-height: 1; }
.svc-card__body { padding: 22px; }
.svc-card__body h3 { font-size: 18px; margin-bottom: 8px; }
.svc-card__body p  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.svc-card__link    { font-family: var(--font-d); font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 4px; }
.svc-card__link:hover { gap: 8px; }

/* ── POR QUÉ NOSOTROS ────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why__content { }
.why__desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.why__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.why__list li { display: flex; align-items: flex-start; gap: 12px; }
.why__icon { width: 22px; height: 22px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why__list strong { display: block; font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.why__list span   { font-size: 13px; color: var(--muted); }
.why__image { position: relative; }
.why__image img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r); }
.why__badge { position: absolute; bottom: 24px; left: -20px; background: var(--red); color: var(--white); padding: 16px 22px; border-radius: var(--r); text-align: center; }
.why__badge strong { display: block; font-family: var(--font-d); font-size: 36px; font-weight: 900; line-height: 1; }
.why__badge span   { font-size: 12px; opacity: .85; }

/* ── COUNTERS ────────────────────────────────────────────── */
.counters { background: var(--dark); display: grid; grid-template-columns: repeat(4,1fr); }
.counter  { text-align: center; padding: 48px 20px; border-right: 1px solid rgba(255,255,255,.06); }
.counter:last-child { border-right: none; }
.counter__n { display: inline; font-family: var(--font-d); font-size: 52px; font-weight: 900; color: var(--red); line-height: 1; }
.counter__s { font-family: var(--font-d); font-size: 36px; font-weight: 900; color: var(--red); }
.counter__n--star::after { content: '★'; font-size: 28px; vertical-align: super; color: var(--red); }
.counter__l { display: block; font-size: 13px; color: #555; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ── PROCESO ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step  { text-align: center; padding: 0 12px; }
.step__num { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: var(--white); font-family: var(--font-d); font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h4 { font-size: 15px; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step__arrow { font-size: 24px; color: var(--border); padding-top: 16px; align-self: start; }

/* ── PRECIOS ─────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; position: relative; transition: transform var(--ease), box-shadow var(--ease); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.price-card--featured { border-color: var(--red); border-width: 2px; background: #fff8f7; }
.price-card--featured .price-card__val { font-size: 48px; }
.price-card__badge { background: var(--red); color: var(--white); font-family: var(--font-d); font-size: 10px; font-weight: 700; padding: 4px 12px; text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-bottom: 12px; border-radius: 3px; }
.price-card__type { font-family: var(--font-d); font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.price-card__val  { font-family: var(--font-d); font-size: 40px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 12px; }
.price-card__val span { font-size: 18px; color: var(--muted); font-weight: 400; }
.price-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq__item  { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-family: var(--font-d); font-size: 16px; font-weight: 700;
  color: var(--dark); text-align: left; transition: color var(--ease);
}
.faq__q:hover { color: var(--red); }
.faq__q span  { font-size: 22px; color: var(--red); font-weight: 400; flex-shrink: 0; transition: transform var(--ease); line-height: 1; }
.faq__q.open span { transform: rotate(45deg); }
.faq__a { font-size: 14px; color: var(--muted); line-height: 1.8; padding-bottom: 18px; display: none; }
.faq__a.open { display: block; }

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final { background: var(--dark); padding: 64px 40px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-final__h2  { font-size: 34px; color: var(--white); margin-bottom: 8px; letter-spacing: -.5px; }
.cta-final__sub { font-size: 14px; color: #555; }
.cta-final__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #0a0a0a; padding: 60px 40px 20px; }
.footer__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__logo { font-family: var(--font-d); font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 12px; letter-spacing: 1px; }
.footer__logo span { color: var(--red); }
.footer__desc { font-size: 13px; color: #888; line-height: 1.8; }
.footer__col h5 { font-family: var(--font-d); font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; padding-bottom: 6px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer__col a, .footer__col span { display: block; font-size: 13px; color: #888; margin-bottom: 8px; transition: color var(--ease); }
.footer__col a:hover { color: var(--red); }
.footer__bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid #1e1e1e; padding-top: 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__bottom span { font-size: 12px; color: #666; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: #666; transition: color var(--ease); }
.footer__legal a:hover { color: var(--red); }

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 80px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; transition: transform var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float__tip { position: absolute; right: 66px; background: var(--dark); color: var(--white); font-size: 12px; padding: 6px 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--ease); border-radius: 3px; }
.wa-float:hover .wa-float__tip { opacity: 1; }

/* ── STICKY MÓVIL ────────────────────────────────────────── */
.phone-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; }
.phone-sticky__call, .phone-sticky__wa { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-family: var(--font-d); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.phone-sticky__call { background: var(--red);   color: var(--white); flex: 1; }
.phone-sticky__wa   { background: #25D366;       color: var(--white); flex: 1; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-box { max-width: 520px; }
  .svc-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid   { grid-template-columns: 1fr; gap: 40px; }
  .why__image { order: 2; }
  .trust-bar  { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { padding: 7px 20px; }
  .topbar__horario { display: none; }
  .nav { padding: 0 20px; height: 60px; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav__links.active { display: flex; }
  .nav__hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero__inner { padding: 48px 20px; }
  .hero__h1 { font-size: 38px; }
  .section { padding: 56px 20px; }
  .svc-grid   { grid-template-columns: 1fr; }
  .counters   { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr; }
  .step__arrow { display: none; }
  .trust-bar  { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 14px 16px; }
  .cta-final  { padding: 48px 20px; flex-direction: column; text-align: center; }
  .footer     { padding: 48px 20px 16px; }
  .footer__grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .phone-sticky { display: flex; }
  .wa-float { bottom: 72px; }
  .section__h2 { font-size: 28px; }
  .why__badge { left: 0; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 32px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .hform__row { grid-template-columns: 1fr; }
  .counter__n { font-size: 40px; }
}

/* ── WHATSAPP BUTTON ─────────────────────────────────────── */
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1da851; border-color: #1da851; }

/* ── FOOTER BRAND ────────────────────────────────────────── */
.footer__brand { }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social-btn { width: 34px; height: 34px; background: #1e1e1e; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #555; transition: color var(--ease), background var(--ease); }
.footer__social-btn:hover { background: var(--red); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   OFICINAS — estilos específicos
═══════════════════════════════════════════════════════════ */

/* Hero oficinas */
.hero--office { min-height: 520px; }
.hero__inner--centered { grid-template-columns: 1fr; max-width: 780px; }
.hero__text--wide { max-width: 100%; }

/* Trust bar dark */
.trust-bar--dark { background: var(--dark); border-bottom: none; }
.trust-bar--dark .trust-item { border-right-color: rgba(255,255,255,.08); }
.trust-bar--dark .trust-item strong { color: var(--white); }
.trust-bar--dark .trust-item span   { color: #aaa; }

/* Servicios de oficina */
.office-services { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.office-svc { background: var(--light); border-radius: var(--r); padding: 28px; border-left: 4px solid var(--red); transition: transform var(--ease), box-shadow var(--ease); }
.office-svc:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.office-svc__icon { width: 52px; height: 52px; background: #fff0ef; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.office-svc h3 { font-size: 16px; margin-bottom: 8px; }
.office-svc p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Section dark para formulario */
.section--dark { background: var(--dark); padding: 80px 40px; }
.section--dark .section__h2 { color: var(--white); }
.section--dark .section__sub { color: #888; }
.section--dark .pretag { color: #aaa; }
.section--dark .pretag::before { background: #aaa; }

/* Form grid dentro de section--dark */
.section--dark .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.section--dark .form-field--full { grid-column: 1 / -1; }
.section--dark .form-field label {
  display: block;
  font-family: var(--font-d);
  font-size: 10px; font-weight: 700;
  color: #888;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 5px;
}
.section--dark .form-field input,
.section--dark .form-field select,
.section--dark .form-field textarea {
  width: 100%;
  background: #1a1a1a;
  border: none;
  border-bottom: 2px solid #2a2a2a;
  padding: 11px 12px;
  font-family: var(--font-b); font-size: 14px;
  color: var(--white);
  transition: border-color var(--ease);
  appearance: none;
}
.section--dark .form-field input::placeholder,
.section--dark .form-field textarea::placeholder { color: #444; }
.section--dark .form-field select { color: #888; }
.section--dark .form-field input:focus,
.section--dark .form-field select:focus,
.section--dark .form-field textarea:focus { outline: none; border-bottom-color: var(--red); }
.section--dark .form-field textarea { resize: vertical; min-height: 70px; }
.section--dark .form-note { font-size: 11px; color: #444; text-align: center; margin-top: 10px; }

/* Responsive oficinas */
@media (max-width: 768px) {
  .office-services { grid-template-columns: 1fr; }
  .section--dark { padding: 56px 20px; }
  .section--dark .form-grid { grid-template-columns: 1fr; }
}

/* ── HERO BOTONES ────────────────────────────────────────── */
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  font-family: var(--font-d); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 24px; transition: background var(--ease);
}
.hero__wa:hover { background: #1da851; }

/* ── COBERTURA ───────────────────────────────────────────── */
.coverage-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 10px; margin-bottom: 28px;
}
.coverage-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 14px;
  font-family: var(--font-d); font-size: 13px; font-weight: 700;
  color: var(--dark); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.coverage-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%; flex-shrink: 0;
}
.coverage-note { text-align: center; font-size: 13px; color: var(--muted); }
.coverage-note a { color: var(--red); font-weight: 600; }

/* ── FOOTER META ─────────────────────────────────────────── */
.footer__meta { font-size: 11px; color: #555; margin-top: 10px; }
.footer__meta strong { color: #888; font-weight: 400; }

/* ── RESPONSIVE COBERTURA ────────────────────────────────── */
@media (max-width: 1024px) { .coverage-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 768px)  { .coverage-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px)  { .coverage-grid { grid-template-columns: repeat(2,1fr); } }
