/* ============================================================
   SPLASH LINK — Estilos principales
   ============================================================ */

:root {
  --navy: #001F39;
  --gold: #FDB814;
  --navy-light: #0a3a63;
  --navy-pale: #e8edf2;
  --white: #ffffff;
  --gray: #64748b;
  --light: #f7f9fb;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; }

/* ── NAV ──────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; height: 70px; background: var(--white); border-bottom: 1px solid rgba(0,31,57,0.08); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 20px rgba(0,31,57,0.08); }
.nav-logo img { height: 55px; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); text-decoration: none; position: relative; padding-bottom: 4px; transition: color 0.2s; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.nav-links a:hover { color: var(--navy-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 8px 16px; border-radius: 5px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: #e8a800; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--navy); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; padding: 110px 5vw 80px; position: relative; overflow: hidden; }
.hero-bg-shape { position: absolute; top: -120px; right: -140px; width: 640px; height: 640px; pointer-events: none; }
.hero-content { max-width: 520px; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.hero h1 { font-family: 'Lato', sans-serif; font-size: clamp(2.4rem, 4.8vw, 3.8rem); font-weight: 900; line-height: 1.15; color: var(--white); margin-bottom: 20px; letter-spacing: -0.01em; }
.hero p { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.hero-bullets { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 14px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.check-circle { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-circle svg { width: 12px; height: 12px; color: var(--navy); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: absolute; right: 5vw; top: 50%; transform: translateY(-50%); display: flex; gap: 20px; width: 420px; }
.hero-visual-col { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.hero-visual-col--offset { margin-top: 52px; }
.hero-stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px 22px; }
.hero-stat-card.accent { border-color: var(--gold); background: rgba(253,184,20,0.06); }
.stat-num { font-family: 'Lato', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.hero-stat-card.accent .stat-num { color: var(--white); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.45; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary { background: var(--gold); color: var(--navy); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-primary:hover { background: #ffc940; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(253,184,20,0.35); }
.btn-gold { background: var(--gold); color: var(--navy); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s; }
.btn-gold:hover { background: #ffc940; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(253,184,20,0.35); }
.btn-navy { background: var(--navy); color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 30px; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-navy:hover { background: var(--navy-light); }

/* ── SHARED SECTION ───────────────────────────────────────── */
section { padding: 100px 5vw; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.section-title { font-family: 'Lato', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.2; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.01em; }
.section-title.white { color: var(--white); }
.section-sub { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--gray); max-width: 600px; margin-bottom: 16px; }
.section-sub.white { color: rgba(255,255,255,0.85); }
.section-intro { font-size: 0.95rem; color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 52px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; line-height: 1.5; }

/* ── PHOTO BLOCK ──────────────────────────────────────────── */
.photo-block { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy); }
.photo-block img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.72) saturate(0.65); }
.photo-caption { position: absolute; left: 24px; bottom: 24px; right: 24px; z-index: 2; }
.caption-eyebrow { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.caption-titulo { font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.4; }
.full-bleed-foto { position: relative; min-height: 360px; background-size: cover; background-position: center; margin-left: -5vw; margin-right: -5vw; overflow: hidden; }
.full-bleed-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,31,57,0.45) 0%, rgba(0,31,57,0.2) 55%, rgba(253,184,20,0.08) 100%); }
.full-bleed-caption { position: absolute; left: 5vw; bottom: 32px; right: 5vw; z-index: 2; }
.full-bleed-caption p { font-size: 1.1rem; font-weight: 500; color: var(--white); max-width: 540px; line-height: 1.5; margin-top: 8px; }

/* ── NOSOTROS ─────────────────────────────────────────────── */
.about { background: var(--white); }
.about-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.about-p { font-size: 0.95rem; line-height: 1.75; color: var(--gray); margin-bottom: 16px; }
.nosotros-foto { aspect-ratio: 16 / 9; }
.about-card-text { background: var(--light); border-radius: var(--radius); padding: 28px; border: 1px solid var(--navy-pale); margin-top: 16px; }
.about-card-text p { font-size: 0.9rem; line-height: 1.7; color: var(--gray); margin-bottom: 12px; }
.about-card-text p:last-child { margin-bottom: 0; }
.about-frase { font-style: italic; color: var(--navy) !important; font-weight: 500; }

/* ── SERVICIOS ────────────────────────────────────────────── */
.services { background: var(--navy); overflow: hidden; padding-bottom: 0; }
.services-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; padding: 0 5vw; }
.service-card { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 38px 32px; transition: all 0.25s; }
.service-card:hover { border-color: var(--gold); background: rgba(253,184,20,0.04); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(253,184,20,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.service-link { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--gold); font-family: 'Inter', sans-serif; padding: 0; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }
.marcas-carrusel-wrap { padding: 0 5vw; margin-bottom: 40px; max-width: 100%; }
.marcas-carrusel { overflow: hidden; }
.marcas-track { display: flex; gap: 48px; will-change: transform; }
.marca-logo-item { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; flex-shrink: 0; opacity: 0.7; transition: opacity 0.25s; }
.marca-logo-item:hover { opacity: 1; }
.marca-logo-item img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.marca-nombre { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.45); white-space: nowrap; letter-spacing: 0.04em; }
.marcas-nota { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 16px; padding: 0 5vw; margin-bottom: 0; }

/* ── DISTRIBUIDORES ───────────────────────────────────────── */
.distrib { background: var(--white); overflow: hidden; padding-bottom: 0; }
.distrib-list { border: 1px solid var(--navy-pale); border-radius: var(--radius); overflow: hidden; margin-bottom: 48px; }
.distrib-row { display: flex; align-items: center; gap: 24px; padding: 24px 32px; border-bottom: 1px solid var(--navy-pale); transition: background 0.2s; }
.distrib-row:last-child { border-bottom: none; }
.distrib-row:hover { background: var(--light); }
.distrib-num { font-family: 'Lato', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--navy-pale); min-width: 48px; line-height: 1; }
.distrib-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.distrib-row-text p { font-size: 0.9rem; line-height: 1.65; color: var(--gray); }
.distrib-soporte { background: var(--light); border-radius: var(--radius); padding: 36px; }
.distrib-soporte h3 { font-family: 'Lato', sans-serif; font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.distrib-soporte p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }
.distrib-soporte .check-list li { color: var(--navy); }
.distrib-capture { background: var(--navy); padding: 32px 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.distrib-capture-text h3 { font-family: 'Lato', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.distrib-capture-text p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-layout { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--navy-pale); }
.faq-q { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; text-align: left; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--navy-light); }
.faq-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--navy-pale); position: relative; transition: all 0.2s; }
.faq-icon::before, .faq-icon::after { content:''; position:absolute; top:50%; left:50%; background: var(--navy); transition: all 0.3s; }
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--navy); }
.faq-a { font-size: 0.88rem; line-height: 1.75; color: var(--gray); max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── ACCESO A CLIENTES ────────────────────────────────────── */
.acceso { background: var(--gold); padding: 32px 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.acceso-text h3 { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.acceso-text p { font-size: 0.88rem; color: rgba(0,31,57,0.65); }

/* ── CONTACTO ─────────────────────────────────────────────── */
.contact { background: var(--navy); overflow: hidden; padding-bottom: 0; }
.contact-inner { max-width: 1440px; margin: 0 auto; }
.contact-sub { color: rgba(255,255,255,0.6) !important; }
.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.contact-col { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 36px 32px; transition: border-color 0.25s; }
.contact-col:hover { border-color: var(--gold); }
.contact-col-title { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(253,184,20,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.contact-item-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.contact-item-text a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.contact-item-text a:hover { color: var(--gold); }
.contact-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 36px; margin-bottom: 0; }
.contact-form-title { font-family: 'Lato', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-field input, .form-field textarea, .form-field select { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 13px 16px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--white); outline: none; transition: border-color 0.2s; appearance: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field select option { background: var(--navy); }
.form-nota { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.form-feedback { padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; margin-top: 8px; }
.form-feedback.success { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.form-feedback.error { background: rgba(239,68,68,0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: #000c16; padding: 64px 5vw 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 43px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-direccion { margin-top: 12px !important; font-size: 0.8rem !important; color: rgba(255,255,255,0.6) !important; }
.footer-col h4 { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }
.footer-bottom span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ── WHATSAPP ─────────────────────────────────────────────── */
.wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
.wa-btn svg { width: 28px; height: 28px; color: white; }

/* ── MODALES ──────────────────────────────────────────────── */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-box { position: relative; background: var(--white); border-radius: 16px; padding: 48px; max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto; z-index: 1; box-shadow: 0 24px 64px rgba(0,0,0,0.25); }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; color: var(--gray); cursor: pointer; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: var(--light); }
.modal-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.modal-title { font-family: 'Lato', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 24px; line-height: 1.25; }
.modal-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.modal-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--navy); line-height: 1.5; }
.modal-pasos { display: flex; flex-direction: column; margin-bottom: 24px; }
.modal-paso { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--navy-pale); }
.modal-paso:last-child { border-bottom: none; }
.paso-num { font-family: 'Lato', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--navy-pale); min-width: 44px; line-height: 1; }
.modal-paso strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.modal-paso p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }
.modal-after { background: var(--light); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
.modal-after strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.modal-after p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }
.modal-box .contact-form .form-field label { color: var(--gray); }
.modal-box .contact-form input, .modal-box .contact-form textarea, .modal-box .contact-form select { background: var(--light); border-color: var(--navy-pale); color: var(--navy); }
.modal-box .contact-form input::placeholder, .modal-box .contact-form textarea::placeholder { color: #aaa; }
.modal-box .contact-form input:focus, .modal-box .contact-form textarea:focus { border-color: var(--gold); }
.modal-box .form-nota { color: var(--gray); }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) { .hero-visual { display: none; } .hero-content { max-width: 640px; } }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 24px 5vw; gap: 20px; box-shadow: 0 8px 20px rgba(0,31,57,0.08); z-index: 99; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 64px 5vw; }
  .hero { padding-top: 90px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .distrib-capture { flex-direction: column; align-items: flex-start; }
  .acceso { flex-direction: column; align-items: flex-start; }
}
