@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --void: #070b12;
  --panel: #0f1623;
  --panel-2: #151e2e;
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --violet: #a78bfa;
  --text: #e8eef7;
  --muted: #8b9bb4;
  --line: #243044;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --radius: 18px;
  --glow: 0 0 40px rgba(34,211,238,.18);
}

*, *::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(--text); background: var(--void); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--violet); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: #fff; }
.container { width: min(1140px, 92vw); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; z-index: 9999; background: var(--cyan); color: var(--void); padding: 8px 16px; font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }

.strip-bar { background: #05080f; color: var(--muted); font-size: .74rem; padding: 8px 0; border-bottom: 1px solid var(--line); }
.strip-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; width: min(1140px, 92vw); margin-inline: auto; }
.tasa-bcv { color: var(--cyan); font-size: .72rem; }

.site-header {
  position: sticky; top: 12px; z-index: 200;
  width: min(1140px, 94vw); margin: 12px auto 0;
  background: rgba(15,22,35,.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--glow);
}
.header-inner { display: flex; align-items: center; gap: 16px; padding: 10px 18px; }
.logo img { height: 36px; 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: 999px; }
.nav-panel a:hover, .nav-panel a.active { background: rgba(34,211,238,.12); color: var(--cyan); }
.nav-btn { display: none; margin-left: auto; background: var(--cyan); color: var(--void); 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: 999px; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-copper { background: var(--cyan); color: var(--void); box-shadow: var(--glow); }
.btn-copper:hover { background: #67e8f9; color: var(--void); }
.btn-slate { background: var(--violet); color: #fff; }
.btn-slate:hover { background: #c4b5fd; color: var(--void); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-block { width: 100%; }

/* Portada: foto full-bleed + panel izquierdo (no centrada) */
.hero-portada {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--text);
}
.hero-portada-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-portada-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-portada-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,11,18,.97) 0%, rgba(7,11,18,.88) 42%, rgba(7,11,18,.35) 68%, rgba(7,11,18,.55) 100%);
}
.hero-portada-grid {
  position: relative;
  z-index: 1;
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 32px;
  align-items: center;
  padding: 88px 0 72px;
}
.hero-copy {
  text-align: left;
  max-width: 560px;
  margin: 0;
  padding: 0;
}
.hero-kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cyan);
  margin-bottom: 16px;
  border-left: 3px solid var(--violet);
  padding-left: 12px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.12;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.hero-side {
  background: rgba(15,22,35,.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: var(--glow);
}
.hero-stat {
  background: var(--void);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cyan);
  line-height: 1.1;
}
.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.hero-side .btn-block {
  grid-column: 1 / -1;
  margin-top: 4px;
}


.metrics-slate {
  background: linear-gradient(90deg, rgba(34,211,238,.12), rgba(167,139,250,.12));
  color: #fff; padding: 28px 0;
  border-block: 1px solid var(--line);
}
.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.9rem; color: var(--cyan); }
.metrics-row span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

.section { padding: 80px 0; }
.section-paper { background: var(--void); }
.section-mist { background: var(--panel); }
.section-slate { background: var(--panel-2); color: var(--text); }
.section-slate h2, .section-slate 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: .14em;
  color: var(--cyan); display: block; margin-bottom: 10px;
}
.section-slate .section-intro .label { color: var(--violet); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card {
  background: var(--panel);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  border-left: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: var(--glow); }
.svc-card-img { height: 130px; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.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(--panel); border-radius: var(--radius); padding: 14px;
  border: 1px solid var(--line);
}
.feat-row:hover { border-color: rgba(34,211,238,.4); }
.feat-row img { width: 120px; height: 90px; object-fit: cover; border-radius: 12px; }
.feat-row .sku { font-size: .68rem; font-weight: 700; color: var(--cyan); }
.feat-row h3 { font-size: .98rem; margin: 4px 0; color: #fff; }
.feat-row p { font-size: .82rem; color: var(--muted); }
.feat-price { text-align: right; min-width: 100px; }
.feat-price strong { display: block; color: var(--cyan); }

.steps-h { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-h {
  background: var(--void); border-radius: var(--radius); padding: 22px 18px;
  border: 1px solid var(--line); border-top: 3px solid var(--violet);
}
.step-h .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--cyan); line-height: 1; }
.step-h h3 { font-size: .95rem; margin: 10px 0 8px; }
.step-h p { font-size: .82rem; color: var(--muted); }

.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-item { background: var(--panel); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--line); 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: #fff; cursor: pointer; display: flex; justify-content: space-between; gap: 12px; }
.faq-q::after { content: "+"; color: var(--cyan); 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(--panel); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; border: 1px solid var(--line); border-left: 3px solid var(--cyan); }
.contact-card h3 { font-size: .95rem; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: .9rem; }
.map-wrap iframe { width: 100%; height: 360px; border: none; border-radius: var(--radius); filter: grayscale(.3) contrast(1.05); }

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

.method-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.method-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--glow); }
.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; border: 1px solid var(--line); }
.about-visual img { width: 100%; min-height: 260px; object-fit: cover; }

.contact-banner { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; border: 1px solid var(--line); }
.contact-banner img { width: 100%; height: 180px; object-fit: cover; }
.contact-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,11,18,.92), rgba(15,22,35,.75)); 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: 100px 4vw 70px; text-align: center; overflow: hidden; }
.cat-hero-bg { position: absolute; inset: 0; }
.cat-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.cat-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(7,11,18,.95), rgba(15,22,35,.88)); }
.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.8rem); }
.hero-eyebrow-light { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--cyan); 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: 1px solid var(--line); background: var(--panel); color: var(--muted); cursor: pointer; }
.chip.active, .chip:hover { background: var(--cyan); color: var(--void); border-color: var(--cyan); }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cat-card { background: var(--panel); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.cat-card:hover { border-color: rgba(34,211,238,.45); }
.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(--cyan); }
.cat-body h2 { font-size: 1rem; margin: 6px 0; color: #fff; }
.cat-body p { color: var(--muted); font-size: .88rem; }
.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(--panel-2); border-radius: 999px; color: var(--muted); }
.modalidad-tag { font-size: .72rem; color: var(--violet); font-weight: 600; }
.precio-slot { margin-top: auto; padding-top: 12px; }
.precio-line strong { color: var(--cyan); }
.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; color: var(--text); }
.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; color: var(--muted); }
.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(--line); padding: 10px; text-align: left; color: var(--muted); }
.legal-page th { background: var(--panel); color: #fff; }
.legal-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.legal-hub-card { display: block; padding: 22px; background: var(--panel); border-radius: var(--radius); border: 1px solid var(--line); color: inherit; }
.legal-hub-card:hover { border-color: var(--cyan); 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: rgba(34,211,238,.08); border-left: 4px solid var(--cyan); padding: 16px 20px; margin: 32px auto; font-size: .86rem; max-width: 1140px; width: 92vw; border-radius: 0 var(--radius) var(--radius) 0; color: var(--muted); }
.ads-disclaimer a { color: var(--cyan); }
.legal-strip { background: #05080f; color: var(--muted); text-align: center; padding: 12px; font-size: .82rem; border-top: 1px solid var(--line); }
.legal-strip a { color: var(--cyan); }

.site-footer { background: var(--panel); color: var(--muted); padding: 48px 0 24px; border-top: 1px solid var(--line); }
.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: var(--muted); font-size: .84rem; margin-bottom: 6px; }
.footer-col a:hover { color: var(--cyan); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-legal a { color: var(--muted); 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(--panel); color: var(--text); padding: 16px; transform: translateY(100%); transition: transform .4s; border-top: 2px solid var(--cyan); }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1140px; 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: var(--muted); }
.cookie-inner a { color: var(--cyan); }
.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, rgba(34,211,238,.15), rgba(167,139,250,.15));
  color: #fff; padding: 56px 4vw; text-align: center;
  border-radius: var(--radius); margin: 0 4vw;
  border: 1px solid rgba(34,211,238,.3);
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { margin-bottom: 24px; color: var(--muted); }

@media (max-width: 900px) {
  .site-header { border-radius: 16px; top: 8px; }
  .nav-panel { position: fixed; inset: 0; top: 70px; background: var(--panel); flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform .3s; border-radius: 0; }
  .nav-panel.open { transform: translateX(0); }
  .nav-btn { display: block; }
  .header-cta { display: none; }
  .svc-grid, .steps-h, .cat-grid, .footer-grid-4, .legal-hub-grid, .contact-split, .contact-grid, .feat-row, .about-split, .method-split, .photo-trio { grid-template-columns: 1fr; }
  .feat-row img { width: 100%; height: 140px; }
  .feat-price { text-align: left; }
  .photo-trio img { height: 120px; }
  .hero-portada-grid { grid-template-columns: 1fr; padding: 72px 0 48px; }
  .hero-portada-bg::after {
    background: linear-gradient(180deg, rgba(7,11,18,.92) 0%, rgba(7,11,18,.88) 100%);
  }
  .hero-copy { max-width: none; }
}

