@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap");

:root {
  --sky: #f0f7ff;
  --white: #ffffff;
  --navy: #1e3a5f;
  --azure: #2563eb;
  --azure-soft: #3b82f6;
  --ink: #0f172a;
  --muted: #64748b;
  --border: #dbe4f0;
  --font-display: "Sora", system-ui, sans-serif;
  --font-ui: "IBM Plex Sans", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 14px 36px rgba(30,58,95,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); font-size: 1rem; line-height: 1.65; color: var(--ink); background: var(--sky); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--azure); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--navy); }
.container { width: min(1120px, 92vw); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; z-index: 9999; background: var(--azure); color: #fff; padding: 8px 16px; font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }

.strip-bar { background: var(--navy); color: #c7d7ef; font-size: .74rem; padding: 8px 0; }
.strip-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; width: min(1120px, 92vw); margin-inline: auto; }
.tasa-bcv { color: #93c5fd; font-size: .72rem; }

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 10px rgba(30,58,95,.06); }
.header-inner { display: flex; align-items: center; gap: 18px; padding: 12px 4vw; max-width: 1120px; margin-inline: auto; }
.logo img { height: 38px; width: auto; }
.nav-panel { display: flex; gap: 4px; margin-left: auto; }
.nav-panel a { font-size: .84rem; font-weight: 600; color: var(--muted); padding: 8px 14px; border-radius: 8px; }
.nav-panel a:hover, .nav-panel a.active { background: var(--sky); color: var(--navy); }
.nav-btn { display: none; margin-left: auto; background: var(--navy); color: #fff; border: none; padding: 8px 12px; border-radius: 8px; cursor: pointer; font-weight: 700; }
.header-cta { white-space: nowrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; font-family: var(--font-ui); font-size: .86rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-azure { background: var(--azure); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,.28); }
.btn-azure:hover { background: #1d4ed8; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #152a45; color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-block { width: 100%; }

.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 86vh; background: var(--white); }
.hero-copy { padding: 72px 4vw 56px; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--azure); margin-bottom: 14px; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.hero-copy h1 em { font-style: normal; color: var(--azure); }
.hero-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag { font-size: .72rem; font-weight: 700; padding: 6px 12px; background: var(--sky); color: var(--navy); border-radius: 999px; border: 1px solid var(--border); }
.hero-visual { position: relative; overflow: hidden; background: var(--navy); }
.hero-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; opacity: .85; }
.hero-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,58,95,.25), rgba(37,99,235,.15)); }
.hero-badge { position: absolute; bottom: 28px; left: 24px; right: 24px; background: #fff; padding: 18px 20px; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--azure); }
.hero-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

.metrics-navy { background: var(--navy); color: #fff; padding: 26px 0; }
.metrics-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; text-align: center; }
.metrics-row strong { display: block; font-family: var(--font-display); font-size: 1.7rem; }
.metrics-row span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

.section { padding: 72px 0; }
.section-sky { background: var(--sky); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: #c7d7ef; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-intro { margin-bottom: 40px; }
.section-intro.center { text-align: center; }
.section-intro .label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--azure); display: block; margin-bottom: 10px; }
.section-navy .section-intro .label { color: #93c5fd; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card-img { height: 120px; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card-body { padding: 18px 20px 22px; }
.svc-card h3 { font-size: 1rem; margin-bottom: 8px; }
.svc-card p { font-size: .84rem; color: var(--muted); }

.feat-rows { display: flex; flex-direction: column; gap: 14px; }
.feat-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; align-items: center; background: var(--white); border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); }
.feat-row img { width: 120px; height: 90px; object-fit: cover; border-radius: 10px; }
.feat-row .sku { font-size: .68rem; font-weight: 700; color: var(--azure); }
.feat-row h3 { font-size: .98rem; margin: 4px 0; }
.feat-row p { font-size: .82rem; color: var(--muted); }
.feat-price { text-align: right; min-width: 100px; }
.feat-price strong { display: block; color: var(--navy); }

.steps-h { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-h { background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 22px 18px; border-top: 3px solid #60a5fa; }
.step-h .num { font-family: var(--font-display); font-size: 1.8rem; color: #93c5fd; line-height: 1; }
.step-h h3 { font-size: .95rem; margin: 10px 0 8px; }
.step-h p { font-size: .82rem; color: #a8bdd9; }

.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 16px 18px; font-family: var(--font-display); font-size: .95rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; gap: 12px; }
.faq-q::after { content: "+"; color: var(--azure); font-size: 1.2rem; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 18px 16px; font-size: .88rem; color: var(--muted); }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; border-left: 4px solid var(--azure); }
.map-wrap iframe { width: 100%; height: 360px; border: none; border-radius: var(--radius); }

.photo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1120px; margin: -20px auto 0; padding: 0 4vw; position: relative; z-index: 2; }
.photo-trio img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius); border: 3px solid #fff; box-shadow: var(--shadow); }

.method-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.method-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.method-visual img { width: 100%; min-height: 300px; object-fit: cover; }

.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; margin-bottom: 28px; }
.about-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-visual img { width: 100%; min-height: 260px; object-fit: cover; }

.contact-banner { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.contact-banner img { width: 100%; height: 180px; object-fit: cover; }
.contact-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,58,95,.9), rgba(37,99,235,.7)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; color: #fff; }
.contact-banner-overlay h2 { color: #fff; margin-bottom: 8px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.cat-hero { position: relative; color: #fff; padding: 90px 4vw 64px; text-align: center; overflow: hidden; }
.cat-hero-bg { position: absolute; inset: 0; }
.cat-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.cat-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,58,95,.92), rgba(37,99,235,.8)); }
.cat-hero-inner { position: relative; z-index: 2; max-width: 700px; margin-inline: auto; }
.cat-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.hero-eyebrow-light { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #93c5fd; display: block; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; justify-content: center; }
.chip { padding: 8px 16px; font-size: .76rem; font-weight: 700; border-radius: 999px; border: 2px solid var(--border); background: #fff; cursor: pointer; }
.chip.active, .chip:hover { background: var(--azure); color: #fff; border-color: var(--azure); }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cat-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; }
.cat-img img { width: 100%; height: 180px; object-fit: cover; }
.cat-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.cat-body .sku { font-size: .68rem; font-weight: 700; color: var(--azure); }
.cat-body h2 { font-size: 1rem; margin: 6px 0; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 10px 0; }
.feat-tags li { font-size: .68rem; padding: 3px 8px; background: var(--sky); border-radius: 999px; }
.modalidad-tag { font-size: .72rem; color: var(--azure); font-weight: 600; }
.precio-slot { margin-top: auto; padding-top: 12px; }
.precio-line strong { color: var(--navy); }
.precio-line span { display: block; font-size: .76rem; color: var(--muted); }
.precio-note { font-size: .72rem; color: var(--muted); font-style: italic; }

.legal-page { padding: 48px 0 72px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); margin-bottom: 24px; }
.legal-page h2 { font-size: 1.1rem; margin: 28px 0 12px; }
.legal-page p, .legal-page li { font-size: .92rem; 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: .84rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 10px; text-align: left; }
.legal-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.legal-hub-card { display: block; padding: 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); color: inherit; }
.legal-hub-card:hover { box-shadow: var(--shadow); color: inherit; }
.legal-hub-card h2 { font-size: .95rem; margin: 8px 0; }
.legal-hub-card p { font-size: .82rem; color: var(--muted); }

.ads-disclaimer { background: #e8f1ff; border-left: 4px solid var(--azure); padding: 16px 20px; margin: 32px auto; font-size: .86rem; max-width: 1120px; width: 92vw; border-radius: 0 var(--radius) var(--radius) 0; }
.legal-strip { background: #152a45; color: #c7d7ef; text-align: center; padding: 12px; font-size: .82rem; }
.legal-strip a { color: #93c5fd; }

.site-footer { background: var(--navy); color: #c7d7ef; padding: 48px 0 24px; }
.footer-grid-4 { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-brand p { font-size: .86rem; margin-top: 12px; }
.footer-col h4 { font-family: var(--font-display); color: #fff; margin-bottom: 12px; font-size: .92rem; }
.footer-col a { display: block; color: #c7d7ef; font-size: .84rem; margin-bottom: 6px; }
.footer-col a:hover { color: #93c5fd; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-legal a { color: #c7d7ef; font-size: .78rem; }
.footer-copy { text-align: center; font-size: .74rem; margin-top: 16px; opacity: .7; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--navy); color: #fff; padding: 16px; transform: translateY(100%); transition: transform .4s; border-top: 3px solid var(--azure); }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1120px; margin-inline: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.cookie-inner p { font-size: .86rem; flex: 1; min-width: 220px; color: #c7d7ef; }
.cookie-inner a { color: #93c5fd; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

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

.cta-band { background: linear-gradient(135deg, var(--navy), var(--azure)); color: #fff; padding: 52px 4vw; text-align: center; border-radius: var(--radius); margin: 0 4vw; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { margin-bottom: 24px; opacity: .9; }

@media (max-width: 900px) {
  .nav-panel { position: fixed; inset: 0; top: 62px; background: #fff; flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform .3s; }
  .nav-panel.open { transform: translateX(0); }
  .nav-btn { display: block; }
  .header-cta { display: none; }
  .hero-split, .svc-grid, .steps-h, .cat-grid, .footer-grid-4, .legal-hub-grid, .contact-split, .contact-grid, .feat-row, .about-split, .method-split, .photo-trio, .hero-badge { grid-template-columns: 1fr; }
  .feat-row img { width: 100%; height: 140px; }
  .feat-price { text-align: left; }
  .photo-trio img { height: 120px; }
}
