@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,600;7..72,700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --ink: #0a0e12;
  --ink-soft: #151c28;
  --emerald: #047857;
  --emerald-light: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --amber: #d97706;
  --amber-light: #fbbf24;
  --bg: #f0f4f8;
  --white: #fff;
  --muted: #64748b;
  --border: #e2e8f0;
  --max: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(10, 14, 18, 0.1);
  --shadow-lg: 0 32px 64px rgba(10, 14, 18, 0.16);
  --font-ui: 'Sora', system-ui, sans-serif;
  --font-display: 'Literata', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--emerald); color: #fff; padding: 8px 16px; }
.skip-link:focus { left: 0; }

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

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .3s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none !important; color: var(--ink); }
.logo-mark svg { width: 44px; height: 44px; }
.logo-word { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 700; font-size: .95rem; letter-spacing: -.02em; }
.logo-sub { font-family: var(--font-display); font-size: 1.05rem; color: var(--emerald); font-weight: 700; }

.nav-panel { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.nav-panel a {
  padding: 9px 16px; border-radius: 999px; font-size: .85rem; font-weight: 500;
  color: var(--muted); transition: .2s;
}
.nav-panel a:hover, .nav-panel a.active { background: rgba(4,120,87,.08); color: var(--emerald); }
.nav-btn { display: none; border: 0; background: var(--bg); padding: 10px 14px; border-radius: 8px; font-size: 1.2rem; cursor: pointer; margin-left: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  border: 0; cursor: pointer; transition: .25s; text-decoration: none !important;
}
.btn-primary { background: linear-gradient(135deg, var(--emerald), #065f46); color: #fff; box-shadow: 0 8px 24px var(--emerald-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--emerald-glow); color: #fff; }
.btn-amber { background: linear-gradient(135deg, var(--amber), #b45309); color: #fff; box-shadow: 0 8px 24px rgba(217,119,6,.3); }
.btn-amber:hover { transform: translateY(-2px); color: #fff; }
.btn-glass { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--emerald); color: var(--emerald); }
.btn-outline:hover { background: rgba(4,120,87,.08); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-block { width: 100%; }

/* ===== HERO PREMIUM ===== */
.hero-premium {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 48px 20px 120px;
  background: var(--ink);
  overflow: hidden;
}
.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(4,120,87,.35), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(217,119,6,.15), transparent);
  z-index: 1;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
}
.hero-premium-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 960px) {
  .hero-premium-inner { grid-template-columns: 1.05fr 1fr; }
}
.hero-copy .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #6ee7b7; margin-bottom: 20px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(110,231,183,.1); border: 1px solid rgba(110,231,183,.2);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.08; color: #fff; margin-bottom: 22px;
}
.hero-copy h1 em { font-style: normal; color: var(--amber-light); }
.hero-copy .lead { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust span { font-size: .78rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: '✓'; color: #6ee7b7; font-weight: 700; }

.hero-visual { position: relative; }
.hero-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1);
  aspect-ratio: 4/5;
  max-height: 520px;
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-float {
  position: absolute; bottom: -24px; left: -24px;
  width: 45%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 3px solid var(--ink);
}
.hero-photo-float img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.hero-glass-card {
  position: absolute; top: 24px; right: -12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 20px; color: #fff;
  min-width: 160px;
}
.hero-glass-card strong { display: block; font-size: 1.5rem; color: var(--amber-light); }
.hero-glass-card span { font-size: .75rem; opacity: .8; }

.metrics-float {
  max-width: var(--max); margin: -56px auto 0; padding: 0 20px;
  position: relative; z-index: 10;
}
.metrics-row {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .metrics-row { grid-template-columns: repeat(4, 1fr); } }
.metric-item { text-align: center; padding: 8px; }
.metric-item strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--emerald); line-height: 1;
}
.metric-item span { font-size: .82rem; color: var(--muted); margin-top: 8px; display: block; }

.section { padding: 88px 20px; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 14px;
}
.section-label::after { content: ''; width: 40px; height: 2px; background: var(--amber); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-label::after { display: none; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 14px; line-height: 1.2;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

.bento {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 18px; grid-template-columns: repeat(12, 1fr);
}
.bento-card {
  grid-column: span 12;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-card.span-7 { grid-column: span 12; }
.bento-card.span-5 { grid-column: span 12; }
.bento-card.span-4 { grid-column: span 12; }
@media (min-width: 900px) {
  .bento-card.span-7 { grid-column: span 7; }
  .bento-card.span-5 { grid-column: span 5; }
  .bento-card.span-4 { grid-column: span 4; }
}
.bento-card.featured { background: linear-gradient(145deg, #065f46, var(--emerald)); color: #fff; }
.bento-card.featured p { color: rgba(255,255,255,.85); }
.bento-card-img { height: 200px; overflow: hidden; }
.bento-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bento-card:hover .bento-card-img img { transform: scale(1.06); }
.bento-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.bento-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.bento-card-body p { font-size: .9rem; color: var(--muted); flex: 1; }
.bento-card.featured .bento-card-body p { color: rgba(255,255,255,.8); }
.bento-link { margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--emerald); }
.bento-card.featured .bento-link { color: var(--amber-light); }

.showcase {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 64px;
}
.showcase-row {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 900px) {
  .showcase-row { grid-template-columns: 1fr 1fr; }
  .showcase-row.reverse { direction: rtl; }
  .showcase-row.reverse > * { direction: ltr; }
}
.showcase-media {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.showcase-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.showcase-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,120,87,.15), transparent 60%);
}
.showcase-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); padding: 12px 18px;
  border-radius: 12px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.showcase-text .tag { font-size: .75rem; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.showcase-text h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 16px; }
.showcase-text p { color: var(--muted); margin-bottom: 12px; }
.showcase-list { list-style: none; margin: 20px 0 24px; }
.showcase-list li {
  padding: 10px 0 10px 28px; position: relative;
  font-size: .92rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.showcase-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--emerald); font-weight: 700;
}

.dashboard-preview {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  max-width: var(--max); margin: 0 auto;
}
.dashboard-preview-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.dashboard-preview-header h3 { font-family: var(--font-display); font-size: 1.3rem; }
.dashboard-kpis {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .dashboard-kpis { grid-template-columns: repeat(4, 1fr); } }
.kpi-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
}
.kpi-box .label { font-size: .72rem; opacity: .6; text-transform: uppercase; letter-spacing: .06em; }
.kpi-box .value { font-size: 1.5rem; font-weight: 700; margin: 8px 0 4px; color: #6ee7b7; }
.kpi-box .delta { font-size: .78rem; color: var(--amber-light); }

.industries {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.industry-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: .25s;
}
.industry-pill:hover { border-color: var(--emerald); transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-pill .icon { font-size: 1.8rem; margin-bottom: 10px; }
.industry-pill span { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }

.testimonials {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-display); font-size: 4rem;
  color: rgba(4,120,87,.12); line-height: 1;
}
.testimonial-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .78rem; color: var(--muted); }
.stars { color: var(--amber); font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: 0; font-family: inherit;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--emerald); transition: .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  padding: 0 24px; color: var(--muted); font-size: .9rem;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

.marquee-wrap {
  background: var(--ink-soft);
  padding: 16px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,.45);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.timeline {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 24px;
}
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline-step {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: .3s;
}
.timeline-step:hover { border-color: var(--emerald); transform: translateY(-4px); }
.timeline-step .num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #065f46);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 16px; font-size: 1.1rem;
}
.timeline-step h4 { font-size: 1rem; margin-bottom: 8px; }
.timeline-step p { font-size: .82rem; color: var(--muted); }

.featured-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card-prog {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
}
.card-prog:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-prog-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--ink-soft); }
.card-prog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card-prog:hover .card-prog-img img { transform: scale(1.08); }
.badge-pop {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--amber), #b45309);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}
.card-prog-body { padding: 26px; }
.card-sku { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
.card-prog-body h3 { font-size: 1.08rem; margin: 10px 0; }
.card-prog-body p { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.card-precio { margin-bottom: 16px; }
.card-precio .usd { font-size: 1.35rem; color: var(--emerald); font-weight: 700; }
.card-precio .bs-ref { display: block; font-size: .78rem; color: var(--muted); }

.cta-premium {
  position: relative;
  margin: 0 20px 88px;
  max-width: calc(var(--max) + 40px);
  margin-left: auto; margin-right: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.cta-premium-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/cta-bg.jpg') center/cover no-repeat;
}
.cta-premium-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,95,70,.92), rgba(10,14,18,.85));
}
.cta-premium-inner { position: relative; z-index: 1; padding: 64px 32px; max-width: 640px; }
.cta-premium h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-premium p { opacity: .9; margin-bottom: 28px; font-size: 1.05rem; }

.contact-section { background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%); }
.contact-grid { max-width: var(--max); margin: 0 auto; display: grid; gap: 32px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-box label { display: block; font-size: .85rem; font-weight: 600; margin: 12px 0 6px; }
.contact-box input, .contact-box textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.contact-box input:focus, .contact-box textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}
.contact-box textarea { min-height: 130px; resize: vertical; }
.mapa iframe { width: 100%; height: 240px; border: 0; border-radius: 12px; margin-top: 16px; }
.legal-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }

.disclaimer-block {
  max-width: var(--max); margin: 0 auto; padding: 24px 20px 56px;
  font-size: .78rem; color: var(--muted); text-align: center;
}

.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 20px 32px; }
.footer-grid { max-width: var(--max); margin: 0 auto 40px; display: grid; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer ul { list-style: none; }
.site-footer li { margin: 10px 0; }
.site-footer a { color: rgba(255,255,255,.6); }
.site-footer a:hover { color: #6ee7b7; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; font-size: .85rem;
}
.logo--footer .logo-name, .logo--footer .logo-sub { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex;
  align-items: center; justify-content: center;
  color: #fff !important; font-size: .85rem;
}
.footer-social a:hover { background: var(--emerald); }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4); font-size: 1.5rem;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.scroll-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 150;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: var(--emerald); color: #fff; cursor: pointer;
  opacity: 0; pointer-events: none; transition: .2s;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 540px; margin: 0 auto; z-index: 300;
  background: var(--white); padding: 20px 24px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--border);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cookie-inner p { font-size: .82rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.page-hero-catalog {
  position: relative; color: #fff;
  padding: 120px 20px 80px; text-align: center;
  overflow: hidden;
}
.page-hero-catalog-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/catalog-hero.jpg') center/cover no-repeat;
}
.page-hero-catalog-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,18,.75), rgba(6,95,70,.88));
}
.page-hero-catalog > * { position: relative; z-index: 1; }
.page-hero-catalog h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero-catalog p { opacity: .9; max-width: 560px; margin: 0 auto; }

.chips-wrap { max-width: var(--max); margin: -32px auto 40px; padding: 0 20px; position: relative; z-index: 2; }
.chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  background: var(--white); padding: 16px 20px;
  border-radius: 999px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.chip {
  padding: 10px 20px; border-radius: 999px; border: none;
  background: transparent; cursor: pointer; font-size: .85rem; font-weight: 600;
  color: var(--muted); transition: .2s; font-family: inherit;
}
.chip.active, .chip:hover { background: var(--emerald); color: #fff; }
.catalogo-grid {
  max-width: var(--max); margin: 0 auto 80px; padding: 0 20px;
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.legal-page-header { background: var(--ink); color: #fff; padding: 100px 20px 48px; text-align: center; }
.legal-page-header h1 { font-family: var(--font-display); }
.pagina-legal { max-width: 720px; margin: 0 auto; padding: 48px 24px 88px; }
.pagina-legal h2 { margin: 32px 0 12px; font-size: 1.15rem; color: var(--emerald); }
.pagina-legal ul { margin: 12px 0 12px 1.25rem; }
.pagina-legal li { margin: 8px 0; }

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

@media (max-width: 900px) {
  .nav-btn { display: block; }
  .nav-panel {
    display: none; position: fixed; inset: 0; top: 64px;
    background: var(--white); flex-direction: column; padding: 32px;
  }
  .nav-panel.open { display: flex; }
  body.nav-open { overflow: hidden; }
  .header-inner .btn-primary.header-cta { display: none; }
  .hero-photo-float { display: none; }
  .hero-glass-card { right: 12px; top: 12px; }
  .hero-premium { min-height: auto; padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
