@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --void: #080c14;
  --panel: #111827;
  --panel-2: #1a2332;
  --cobalt: #2563eb;
  --sky: #38bdf8;
  --coral: #fb7185;
  --mist: #e2e8f0;
  --text: #f8fafc;
  --muted: #94a3b8;
  --dim: #64748b;
  --border: rgba(56, 189, 248, 0.12);
  --radius: 18px;
  --font-ui: "Urbanist", system-ui, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); line-height: 1.65; color: var(--text); background: var(--void); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: var(--cobalt); color: #fff; padding: 8px 16px; font-weight: 600; }
.skip-link:focus { left: 8px; top: 8px; }

.top-bar { background: var(--void); border-bottom: 1px solid var(--border); color: var(--muted); font-size: 0.78rem; padding: 10px 4vw; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.tasa-bcv { color: var(--sky); font-weight: 600; }

.site-header { position: sticky; top: 0; z-index: 200; background: rgba(8, 12, 20, 0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { width: min(1180px, 92vw); margin: 0 auto; display: flex; align-items: center; gap: 24px; padding: 14px 0; }
.logo img { height: 40px; }
.nav-panel { display: flex; gap: 28px; margin-left: auto; font-size: 0.9rem; font-weight: 500; }
.nav-panel a { color: var(--muted); }
.nav-panel a.active, .nav-panel a:hover { color: var(--sky); }
.nav-btn { display: none; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; color: var(--text); width: 44px; height: 44px; font-size: 1.3rem; cursor: pointer; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font-ui); }
.btn:hover { transform: translateY(-2px); }
.btn-coral { background: linear-gradient(135deg, var(--coral), #f43f5e); color: #fff; box-shadow: 0 8px 28px rgba(251, 113, 133, 0.35); }
.btn-coral:hover { color: #fff; }
.btn-cobalt { background: linear-gradient(135deg, var(--cobalt), var(--sky)); color: #fff; box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35); }
.btn-outline { background: transparent; color: var(--sky); border: 2px solid rgba(56, 189, 248, 0.4); }
.btn-outline:hover { background: rgba(37, 99, 235, 0.1); color: var(--sky); }
.btn-block { width: 100%; margin-top: 16px; }
.header-cta { margin-left: 12px; }

.eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sky); margin-bottom: 14px; display: block; }
.sky-text { color: var(--sky); }

.hero-pulse { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-hex { position: absolute; inset: 0; opacity: 0.35; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0l28 16v32l-28 16L0 48V16z' fill='none' stroke='%232563eb' stroke-width='0.5' opacity='0.4'/%3E%3C/svg%3E"); animation: hexMove 30s linear infinite; }
@keyframes hexMove { 0% { background-position: 0 0; } 100% { background-position: 56px 100px; } }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%); top: -20%; right: -10%; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; width: min(1180px, 92vw); margin: 0 auto; padding: 48px 4vw 72px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 700; line-height: 1.08; margin-bottom: 20px; }
.hero-lead { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-disclaimer { font-size: 0.76rem; color: var(--dim); max-width: 480px; border-left: 3px solid var(--coral); padding-left: 14px; line-height: 1.5; }

.hero-panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.hero-panel-top { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.live-dot { color: var(--sky); display: flex; align-items: center; gap: 6px; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 10px var(--sky); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: 0.4; } }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.metric { background: var(--panel-2); border-radius: 12px; padding: 14px; text-align: center; border-top: 3px solid var(--cobalt); }
.metric strong { display: block; font-family: var(--font-display); font-size: 1.5rem; }
.metric span { font-size: 0.7rem; color: var(--dim); }
.hero-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.pill-strip { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill { padding: 10px 20px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--border); font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.pill em { color: var(--sky); font-style: normal; }

.section { padding: 80px 0; }
.section-dark { background: var(--void); }
.section-panel { background: var(--panel); }
.section-light { background: var(--mist); color: var(--void); }
.section-light .section-intro h2 { color: var(--void); }
.section-light .section-intro p { color: var(--dim); }
.section-light .eyebrow { color: var(--cobalt); }
.section-intro { margin-bottom: 44px; }
.section-intro.center { text-align: center; }
.section-intro h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-intro p { color: var(--muted); max-width: 560px; }
.section-intro.center p { margin: 0 auto; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, border-color 0.3s; border-top: 4px solid var(--sky); }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(56, 189, 248, 0.35); }
.svc-card a { color: inherit; display: block; }
.svc-img { aspect-ratio: 16/10; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 22px 24px 28px; }
.svc-sku { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--coral); }
.svc-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 8px 0 10px; }
.svc-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; }

.zigzag { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zig-item { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: 0 8px 24px rgba(8, 12, 20, 0.08); position: relative; }
.zig-item:nth-child(even) { transform: translateY(16px); }
.zig-num { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cobalt), var(--sky)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.zig-item h3 { font-size: 0.95rem; color: var(--void); margin-bottom: 6px; }
.zig-item p { font-size: 0.82rem; color: var(--dim); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 20px; text-align: center; }
.benefit-icon { font-size: 1.5rem; margin-bottom: 12px; }
.benefit h3 { font-size: 0.95rem; margin-bottom: 8px; }
.benefit p { font-size: 0.84rem; color: var(--muted); }

.quote-box { max-width: 700px; margin: 0 auto; text-align: center; padding: 40px; background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); }
.quote-box blockquote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; margin-bottom: 16px; }
.quote-box cite { font-size: 0.88rem; color: var(--dim); font-style: normal; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; background: var(--panel-2); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-weight: 600; cursor: pointer; color: var(--text); display: flex; justify-content: space-between; font-family: var(--font-ui); }
.faq-q::after { content: "+"; color: var(--sky); font-size: 1.3rem; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--muted); font-size: 0.9rem; padding: 0 22px; transition: max-height 0.35s, padding 0.35s; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 18px; }

.cta-band { text-align: center; padding: 56px 40px; border-radius: var(--radius); background: linear-gradient(135deg, var(--cobalt), #1d4ed8); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { opacity: 0.9; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-list { list-style: none; margin: 20px 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 280px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

.precio-line strong { display: block; }
.precio-line span { font-size: 0.82rem; color: var(--dim); }
.precio-note { font-size: 0.75rem; color: var(--sky); margin-top: 4px; }

.catalog-hero { padding: 68px 4vw 48px; text-align: center; background: var(--panel); border-bottom: 1px solid var(--border); }
.catalog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.chip { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--panel-2); color: var(--muted); font-size: 0.82rem; cursor: pointer; font-family: var(--font-ui); }
.chip.active, .chip:hover { background: rgba(37, 99, 235, 0.15); border-color: var(--cobalt); color: var(--sky); }

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.cat-card { background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; border-top: 4px solid var(--cobalt); transition: transform 0.3s; }
.cat-card:hover { transform: translateY(-4px); }
.cat-img { aspect-ratio: 16/10; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-body { padding: 26px; }
.cat-body h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 8px 0; }
.sku { font-size: 0.68rem; font-weight: 700; color: var(--sky); letter-spacing: 0.08em; }
.feat-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.feat-tags li { font-size: 0.72rem; padding: 4px 10px; background: rgba(37, 99, 235, 0.1); border-radius: 999px; color: var(--muted); }
.modalidad-tag { font-size: 0.78rem; color: var(--coral); font-weight: 600; display: block; margin-bottom: 10px; }

.legal-page { width: min(760px, 92vw); margin: 0 auto; padding: 52px 0 72px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.1rem; margin-bottom: 8px; }
.legal-page .fecha { color: var(--dim); font-size: 0.88rem; margin-bottom: 24px; }
.legal-page h2 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--sky); }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.94rem; margin-bottom: 10px; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal-page th { background: var(--panel-2); color: var(--text); }

.ads-disclaimer { background: var(--panel-2); border: 1px solid var(--border); border-left: 4px solid var(--coral); border-radius: 12px; padding: 18px 22px; margin: 0 auto 28px; max-width: min(1180px, 92vw); font-size: 0.86rem; color: var(--muted); }
.ads-disclaimer strong { color: var(--text); }
.ads-disclaimer a { color: var(--sky); font-weight: 600; }

.legal-strip { background: var(--panel); border-top: 1px solid var(--border); text-align: center; padding: 14px 4vw; font-size: 0.82rem; color: var(--muted); }
.site-footer { background: var(--void); border-top: 1px solid var(--border); padding: 52px 4vw 24px; }
.footer-grid { width: min(1180px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-grid h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky); margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--dim); font-size: 0.86rem; margin-bottom: 8px; }
.footer-base { width: min(1180px, 92vw); margin: 0 auto; border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: 0.8rem; color: var(--dim); }
.footer-legal { margin-top: 8px; font-size: 0.74rem; }

.fab-wa { position: fixed; bottom: 26px; right: 26px; z-index: 150; filter: drop-shadow(0 8px 20px rgba(37,211,102,0.4)); transition: transform 0.2s; }
.fab-wa:hover { transform: scale(1.08); }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--panel); border-top: 1px solid var(--border); padding: 18px 4vw; transform: translateY(110%); transition: transform 0.4s; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { width: min(1180px, 92vw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-inner p { font-size: 0.86rem; color: var(--muted); max-width: 640px; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s, transform 0.65s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .zigzag { grid-template-columns: 1fr 1fr; }
  .zig-item:nth-child(even) { transform: none; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .contact-split, .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(280px, 88vw); background: var(--panel); border-left: 1px solid var(--border); flex-direction: column; padding: 80px 28px 28px; transform: translateX(100%); transition: transform 0.35s; margin-left: 0; }
  .nav-panel.open { transform: translateX(0); }
  .nav-btn { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .header-cta { display: none; }
  .zigzag, .benefit-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-hex { animation: none; }
}
