@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Bitter:wght@600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cobalt: #1a56a8;
  --cobalt-dark: #134080;
  --copper: #d4845a;
  --copper-dark: #b86a42;
  --sand: #f6f3ed;
  --sand-2: #ebe6dc;
  --ink: #1a2332;
  --muted: #5c6578;
  --mint: #5eb89a;
  --white: #fffefb;
  --line: #ddd6c8;
  --shadow: 0 16px 48px rgba(26,35,50,.1);
  --max: 1180px;
  --font-ui: 'Be Vietnam Pro', system-ui, sans-serif;
  --font-display: 'Bitter', Georgia, serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); color: var(--ink); background: var(--sand); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt); text-decoration: none; }
a:hover { color: var(--copper); }
ul { list-style: none; }
.skip-link { position: absolute; left: -9999px; z-index: 9999; background: var(--cobalt); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 12px; top: 12px; }

.top-bar { background: var(--ink); color: rgba(255,255,255,.85); font-size: .72rem; padding: 8px 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.tasa-bcv { color: var(--mint); font-weight: 600; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(246,243,237,.92); backdrop-filter: blur(10px); border-bottom: 2px solid var(--line); transition: box-shadow .25s; }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 14px 22px; display: flex; align-items: center; gap: 16px; }
.logo img { height: 36px; }
.nav-panel { display: flex; gap: 4px; margin-left: auto; }
.nav-panel a { padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: .85rem; color: var(--muted); }
.nav-panel a:hover, .nav-panel a.active { background: var(--white); color: var(--cobalt); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.header-cta { margin-left: 6px; }
.nav-btn { display: none; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 7px 11px; cursor: pointer; font-size: 1.1rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 10px; font-weight: 700; font-size: .88rem; border: 2px solid transparent; cursor: pointer; font-family: inherit; transition: transform .15s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-cobalt { background: var(--cobalt); color: #fff; }
.btn-cobalt:hover { background: var(--cobalt-dark); color: #fff; box-shadow: 0 8px 24px rgba(26,86,168,.35); }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--cobalt); color: var(--cobalt); }
.btn-block { width: 100%; }

/* Wave hero */
.hero-wave { position: relative; background: linear-gradient(165deg, var(--cobalt) 0%, var(--cobalt-dark) 55%, #0f3058 100%); color: #fff; padding: 72px 22px 140px; overflow: hidden; }
.hero-wave::before { content: ''; position: absolute; top: -20%; right: -10%; width: 55%; height: 80%; background: radial-gradient(circle, rgba(212,132,90,.25), transparent 65%); pointer-events: none; }
.hero-wave-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-tag { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 6px 14px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; color: var(--mint); }
.hero-wave h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.hero-wave h1 em { color: var(--copper); font-style: normal; }
.hero-lead { font-size: 1.05rem; opacity: .9; max-width: 500px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-note { font-size: .76rem; opacity: .75; max-width: 480px; border-left: 3px solid var(--copper); padding-left: 12px; }

.kpi-stack { position: relative; min-height: 340px; }
.kpi-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--copper);
  position: absolute;
  width: 58%;
  transition: transform .3s;
}
.kpi-card:hover { transform: translateY(-4px); }
.kpi-card:nth-child(1) { top: 0; left: 0; z-index: 3; }
.kpi-card:nth-child(2) { top: 90px; right: 0; z-index: 2; border-left-color: var(--cobalt); width: 52%; }
.kpi-card:nth-child(3) { bottom: 0; left: 12%; z-index: 1; border-left-color: var(--mint); width: 50%; }
.kpi-card strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--cobalt); line-height: 1; margin-bottom: 4px; }
.kpi-card span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

.wave-divider { display: block; width: 100%; height: 80px; margin-top: -1px; }
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* Pills strip */
.pill-strip { background: var(--white); padding: 28px 22px; border-bottom: 1px solid var(--line); }
.pill-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pill { padding: 10px 18px; border-radius: 999px; background: var(--sand); border: 1px solid var(--line); font-size: .78rem; font-weight: 600; color: var(--muted); }
.pill em { color: var(--cobalt); font-style: normal; font-weight: 700; }

.section { padding: clamp(56px, 8vw, 96px) 22px; }
.section-white { background: var(--white); }
.section-sand { background: var(--sand); }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }
.eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--copper); margin-bottom: 12px; display: block; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 12px; line-height: 1.15; }
.section-head p { color: var(--muted); max-width: 580px; }

/* Stagger cards */
.stagger-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.stagger-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .25s; }
.stagger-card:hover { transform: translateY(-5px); }
.stagger-card:nth-child(2) { margin-top: 32px; }
.stagger-card:nth-child(3) { margin-top: -16px; }
.stagger-card a { color: inherit; display: block; }
.stagger-img { height: 200px; overflow: hidden; }
.stagger-img img { width: 100%; height: 100%; object-fit: cover; }
.stagger-body { padding: 22px; }
.stagger-sku { font-size: .68rem; font-weight: 700; color: var(--copper); letter-spacing: .08em; }
.stagger-body h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 8px 0 10px; }
.stagger-body p { font-size: .86rem; color: var(--muted); margin-bottom: 12px; }
.precio-line strong { color: var(--cobalt); font-size: .9rem; }
.precio-line span { display: block; font-size: .76rem; color: var(--muted); }
.precio-note { font-size: .7rem; color: var(--mint); font-weight: 600; margin-top: 4px; }

/* Orbit */
.orbit-wrap { display: flex; justify-content: center; padding: 20px 0; }
.orbit { position: relative; width: 320px; height: 320px; }
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  background: var(--cobalt);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 0 8px rgba(26,86,168,.15);
  z-index: 2;
}
.orbit-ring { position: absolute; inset: 20px; border: 2px dashed var(--line); border-radius: 50%; }
.orbit-node {
  position: absolute;
  width: 130px;
  text-align: center;
  font-size: .78rem;
}
.orbit-node strong { display: block; font-weight: 700; color: var(--cobalt); margin-bottom: 4px; font-size: .82rem; }
.orbit-node span { color: var(--muted); font-size: .72rem; }
.orbit-node:nth-child(3) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-node:nth-child(4) { top: 50%; right: -10px; transform: translateY(-50%); }
.orbit-node:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-node:nth-child(6) { top: 50%; left: -10px; transform: translateY(-50%); }

/* Benefits */
.benefit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { background: var(--white); padding: 26px 20px; border-radius: 14px; text-align: center; border-top: 4px solid var(--cobalt); box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.benefit:nth-child(2) { border-top-color: var(--copper); }
.benefit:nth-child(3) { border-top-color: var(--mint); }
.benefit:nth-child(4) { border-top-color: var(--ink); }
.benefit-icon { font-size: 1.8rem; margin-bottom: 12px; }
.benefit h3 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.benefit p { font-size: .8rem; color: var(--muted); }

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 16px 20px; background: none; border: none; font-family: inherit; font-weight: 700; font-size: .92rem; cursor: pointer; display: flex; justify-content: space-between; color: var(--ink); }
.faq-q::after { content: '+'; color: var(--copper); font-size: 1.2rem; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 20px 16px; font-size: .88rem; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

.cta-wave {
  background: var(--cobalt);
  color: #fff;
  text-align: center;
  padding: 64px 28px;
  position: relative;
  overflow: hidden;
}
.cta-wave::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q300 0 600 60 T1200 60 L1200 120 L0 120Z' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E") bottom/cover no-repeat; }
.cta-wave h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; position: relative; }
.cta-wave p { opacity: .9; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.map-wrap iframe { width: 100%; height: 300px; border: 0; border-radius: 14px; border: 1px solid var(--line); }

.legal-strip { background: var(--ink); color: rgba(255,255,255,.8); text-align: center; padding: 14px 22px; font-size: .8rem; }
.legal-strip a { color: var(--mint); }
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 48px 22px 24px; }
.footer-grid { max-width: var(--max); margin: 0 auto 32px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer-grid h4 { color: var(--copper); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-grid a { color: rgba(255,255,255,.65); font-size: .85rem; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-base { max-width: var(--max); margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.footer-legal { margin-top: 8px; opacity: .65; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: #fff; padding: 16px 22px; z-index: 200; transform: translateY(110%); transition: transform .35s; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.cookie-inner p { font-size: .82rem; flex: 1; min-width: 220px; color: rgba(255,255,255,.8); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.fab-wa { position: fixed; bottom: 24px; right: 22px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; box-shadow: var(--shadow); transition: transform .2s; }
.fab-wa:hover { transform: scale(1.07); }

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

/* Catalog */
.catalog-hero { background: linear-gradient(135deg, var(--cobalt), var(--cobalt-dark)); color: #fff; padding: 64px 22px; text-align: center; }
.catalog-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 10px; }
.catalog-hero p { opacity: .9; max-width: 580px; margin: 0 auto; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 36px; }
.chip { padding: 9px 18px; border-radius: 999px; font-size: .78rem; font-weight: 600; font-family: inherit; cursor: pointer; background: var(--white); border: 1px solid var(--line); color: var(--muted); }
.chip.active, .chip:hover { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }

.mag-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 6px solid var(--copper);
  scroll-margin-top: 90px;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  transition: box-shadow .25s;
}
.mag-card:hover { box-shadow: var(--shadow); }
.mag-card:nth-child(even) { border-left-color: var(--cobalt); }
.mag-img img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.mag-body { padding: 26px 30px; }
.mag-body .sku { font-size: .7rem; font-weight: 700; color: var(--copper); letter-spacing: .08em; }
.mag-body h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 8px 0 12px; }
.mag-body p { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.feat-tags li { font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--sand); color: var(--cobalt); }
.modalidad-tag { font-size: .72rem; color: var(--mint); font-weight: 700; display: block; margin-bottom: 10px; }

.legal-page { max-width: 720px; margin: 0 auto; padding: 48px 22px 80px; }
.legal-page h1 { font-family: var(--font-display); font-size: 1.9rem; margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); font-size: .86rem; margin-bottom: 24px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.1rem; color: var(--cobalt); margin: 26px 0 10px; }
.legal-page p, .legal-page li { font-size: .9rem; color: var(--muted); margin-bottom: 10px; }
.legal-page ul { list-style: disc; padding-left: 22px; }
.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 12px; text-align: left; }
.legal-page th { background: var(--sand); color: var(--ink); font-weight: 700; }

.ads-disclaimer {
  background: var(--sand);
  border: 1px solid var(--line);
  border-left: 5px solid var(--cobalt);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: .86rem;
  color: var(--muted);
}
.ads-disclaimer strong { color: var(--ink); }
.ads-disclaimer a { font-weight: 600; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.contact-card { background: var(--white); padding: 24px; border-radius: 14px; border-top: 4px solid var(--copper); box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.contact-card h3 { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.nosotros-grid img { border-radius: 16px; box-shadow: var(--shadow); }

@media (max-width: 960px) {
  .hero-wave-inner, .stagger-grid, .contact-grid, .nosotros-grid { grid-template-columns: 1fr; }
  .kpi-stack { min-height: auto; position: relative; display: flex; flex-direction: column; gap: 14px; }
  .kpi-card { position: static !important; width: 100% !important; }
  .stagger-card:nth-child(2), .stagger-card:nth-child(3) { margin-top: 0; }
  .benefit-row, .footer-grid { grid-template-columns: 1fr 1fr; }
  .mag-card { grid-template-columns: 1fr; }
  .orbit { width: 280px; height: 280px; }
}
@media (max-width: 720px) {
  .nav-panel { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-panel.open { display: flex; }
  .nav-btn { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .stagger-grid, .benefit-row, .footer-grid, .contact-cards { grid-template-columns: 1fr; }
}
