@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --abyss: #06100d;
  --panel: #0f1a16;
  --panel-2: #152420;
  --veridian: #059669;
  --glow: #34d399;
  --mercury: #a8b5b0;
  --parchment: #ede8df;
  --ink: #0a1210;
  --border: rgba(168, 181, 176, 0.18);
  --text: #e2ebe8;
  --muted: #7a8f88;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 24px 60px 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);
  background: var(--abyss);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--glow); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--glow); color: var(--ink); padding: 8px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

.vc-container { width: min(1140px, 92vw); margin: 0 auto; }

/* Topbar */
.vc-topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--mercury);
}
.vc-topbar-inner {
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center;
  justify-content: space-between; padding: 8px 0; width: min(1140px, 92vw); margin: 0 auto;
}
.vc-topbar a { color: var(--glow); }

/* Header */
.vc-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 16, 13, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.vc-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.vc-header-inner {
  display: flex; align-items: center; gap: 20px;
  width: min(1140px, 92vw); margin: 0 auto; padding: 14px 0;
}
.vc-logo img { height: 40px; width: auto; }
.vc-nav {
  display: flex; gap: 24px; margin-left: auto; font-size: 0.9rem; font-weight: 500;
}
.vc-nav a { color: var(--mercury); text-decoration: none; }
.vc-nav a:hover, .vc-nav a.active { color: var(--glow); }
.vc-nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); font-size: 1.2rem; padding: 6px 12px; border-radius: 6px; cursor: pointer;
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.9rem; border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform 0.15s, background 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-veridian { background: var(--veridian); color: #fff; border-color: var(--veridian); }
.btn-veridian:hover { background: var(--glow); border-color: var(--glow); color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-outline:hover { border-color: var(--glow); color: var(--glow); }
.btn-block { width: 100%; }
.header-cta { white-space: nowrap; }

/* Hero */
.vc-hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 10vw, 120px);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.vc-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(5, 150, 105, 0.22), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(52, 211, 153, 0.12), transparent);
  pointer-events: none;
}
.vc-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  width: min(1140px, 92vw); margin: 0 auto; position: relative;
}
.vc-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--glow);
  margin-bottom: 16px;
}
.vc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px;
  color: var(--parchment);
}
.vc-hero-lead { font-size: 1.05rem; color: var(--mercury); max-width: 52ch; margin-bottom: 28px; }
.vc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.vc-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.vc-hero-tags span {
  font-size: 0.75rem; padding: 6px 12px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--border); color: var(--mercury);
}
.vc-hero-visual { position: relative; }
.vc-hero-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 92%);
}
.vc-hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--panel-2); border: 1px solid var(--veridian);
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.82rem; color: var(--mercury);
}
.vc-hero-badge strong { display: block; font-size: 1.4rem; color: var(--glow); font-family: var(--font-display); }

/* Marquee */
.vc-marquee {
  background: var(--panel); border-block: 1px solid var(--border);
  overflow: hidden; padding: 14px 0;
}
.vc-marquee-track {
  display: flex; gap: 48px; animation: vc-scroll 28s linear infinite;
  white-space: nowrap; font-size: 0.82rem; color: var(--mercury); font-weight: 500;
}
.vc-marquee-track span::before { content: "◆"; color: var(--veridian); margin-right: 12px; }
@keyframes vc-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats */
.vc-stats {
  background: var(--parchment); color: var(--ink);
  padding: 48px 0; margin-top: -24px;
}
.vc-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  width: min(1140px, 92vw); margin: 0 auto; text-align: center;
}
.vc-stat-card strong {
  display: block; font-family: var(--font-display); font-size: 2.2rem;
  color: var(--veridian); margin-bottom: 4px;
}
.vc-stat-card span { font-size: 0.85rem; color: #4a5c56; }

/* Sections */
.vc-section { padding: clamp(56px, 8vw, 88px) 0; }
.vc-section-head { margin-bottom: 40px; max-width: 640px; }
.vc-section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--parchment); margin-bottom: 12px; }
.vc-section-head p { color: var(--muted); }

/* Service strips */
.vc-strips { display: flex; flex-direction: column; gap: 12px; }
.vc-strip {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: center;
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; transition: border-color 0.2s;
}
.vc-strip:hover { border-color: var(--veridian); }
.vc-strip-num {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--veridian);
  opacity: 0.7; line-height: 1;
}
.vc-strip h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--parchment); }
.vc-strip p { font-size: 0.88rem; color: var(--muted); }
.vc-strip-link { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }

/* Bento */
.vc-bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.vc-bento-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: relative; overflow: hidden;
}
.vc-bento-card.wide { grid-column: span 2; }
.vc-bento-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--parchment); }
.vc-bento-card p { font-size: 0.88rem; color: var(--muted); }
.vc-sku { font-size: 0.72rem; font-weight: 700; color: var(--glow); letter-spacing: 0.08em; }

/* Price table */
.vc-price-band { background: var(--parchment); color: var(--ink); padding: 56px 0; }
.vc-price-band h2 { color: var(--ink); margin-bottom: 8px; }
.vc-price-band .vc-section-head p { color: #4a5c56; }
.price-table-wrap { overflow-x: auto; margin-top: 24px; }
.price-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(6, 16, 13, 0.08);
}
.price-table th, .price-table td {
  padding: 14px 16px; text-align: left; border-bottom: 1px solid #e5e0d8;
}
.price-table th { background: var(--ink); color: var(--parchment); font-weight: 600; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 700; color: var(--veridian); white-space: nowrap; }

/* FAQ */
.vc-faq { display: flex; flex-direction: column; gap: 12px; }
.vc-faq-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px;
}
.vc-faq-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--parchment); }
.vc-faq-item p { font-size: 0.88rem; color: var(--muted); }

/* Contact */
.vc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.vc-contact-photo {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 4% 100%);
}
.vc-contact-list { list-style: none; margin: 20px 0; }
.vc-contact-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.vc-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 20px; }
.vc-map iframe { width: 100%; height: 260px; border: 0; display: block; }

/* CTA band */
.vc-cta-band {
  background: linear-gradient(135deg, var(--veridian), #047857);
  padding: 56px 0; text-align: center;
}
.vc-cta-band h2 { color: #fff; margin-bottom: 12px; }
.vc-cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 24px; max-width: 520px; margin-inline: auto; }
.vc-cta-band .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.vc-cta-band .btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Catalog */
.vc-cat-hero {
  position: relative; padding: 72px 0 56px; overflow: hidden;
}
.vc-cat-hero-bg {
  position: absolute; inset: 0; opacity: 0.25;
}
.vc-cat-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.vc-cat-hero .vc-container { position: relative; }
.vc-cat-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--parchment); }
.vc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.vc-chip {
  padding: 8px 16px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  background: var(--panel); border: 1px solid var(--border); color: var(--mercury);
  cursor: pointer; transition: all 0.2s;
}
.vc-chip.active, .vc-chip:hover { background: var(--veridian); border-color: var(--veridian); color: #fff; }
.vc-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.vc-cat-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.vc-cat-img { aspect-ratio: 16/10; overflow: hidden; }
.vc-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.vc-cat-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.vc-cat-body h2 { font-size: 1.05rem; color: var(--parchment); }
.vc-cat-body p { font-size: 0.86rem; color: var(--muted); flex: 1; }
.feat-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tags li {
  font-size: 0.72rem; padding: 4px 10px; border-radius: 999px;
  background: var(--panel-2); color: var(--glow);
}
.modalidad-tag { font-size: 0.75rem; color: var(--mercury); }
.precio-slot { margin: 8px 0; }
.precio-line strong { display: block; color: var(--glow); font-size: 1rem; }
.precio-line span { font-size: 0.78rem; color: var(--muted); }
.precio-note { font-size: 0.72rem; color: var(--muted); }

/* Legal */
.legal-page { padding: 48px 0 64px; }
.legal-page h1 { font-size: 2rem; color: var(--parchment); margin-bottom: 8px; }
.legal-page .fecha { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; }
.legal-page h2 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--glow); }
.legal-page p, .legal-page li { font-size: 0.92rem; color: var(--mercury); 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); color: var(--parchment); }

/* Disclaimer */
.ads-disclaimer {
  border-left: 4px solid var(--veridian); padding: 16px 20px; margin: 32px auto;
  font-size: 0.86rem; background: var(--panel); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--mercury); max-width: min(1140px, 92vw);
}
.ads-disclaimer strong { color: var(--parchment); }

/* Footer */
.vc-legal-strip {
  background: var(--panel-2); padding: 14px 0; font-size: 0.82rem; text-align: center; color: var(--muted);
  border-top: 1px solid var(--border);
}
.vc-footer {
  background: var(--ink); padding: 48px 0 24px; border-top: 1px solid var(--border);
}
.vc-footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 32px;
}
.vc-footer-brand p { font-size: 0.86rem; color: var(--muted); margin-top: 12px; max-width: 280px; }
.vc-footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--glow); margin-bottom: 14px; }
.vc-footer-col a {
  display: block; font-size: 0.86rem; color: var(--mercury); margin-bottom: 8px; text-decoration: none;
}
.vc-footer-col a:hover { color: var(--glow); }
.vc-footer-legal {
  display: flex; flex-wrap: wrap; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border);
  font-size: 0.8rem;
}
.vc-footer-legal a { color: var(--muted); text-decoration: none; }
.vc-footer-copy { font-size: 0.78rem; color: var(--muted); margin-top: 12px; }

/* Cookies */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--panel-2); border-top: 1px solid var(--veridian);
  padding: 16px; transform: translateY(110%); transition: transform 0.35s;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  width: min(1140px, 92vw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.cookie-inner p { font-size: 0.84rem; color: var(--mercury); flex: 1; min-width: 240px; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

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

/* Page hero inner */
.vc-page-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.vc-page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--parchment); }

/* Responsive */
@media (max-width: 900px) {
  .vc-hero-grid, .vc-contact-grid, .vc-footer-grid { grid-template-columns: 1fr; }
  .vc-stats-row { grid-template-columns: repeat(2, 1fr); }
  .vc-bento { grid-template-columns: 1fr; }
  .vc-bento-card.wide { grid-column: span 1; }
  .vc-strip { grid-template-columns: 48px 1fr; }
  .vc-strip-link { grid-column: 2; }
  .vc-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--panel-2); padding: 20px;
    border-bottom: 1px solid var(--border);
  }
  .vc-nav.open { display: flex; }
  .vc-header { position: relative; }
  .vc-header-inner { position: relative; flex-wrap: wrap; }
  .vc-nav-toggle { display: block; }
  .header-cta { display: none; }
}
@media (max-width: 520px) {
  .vc-stats-row { grid-template-columns: 1fr; }
  .vc-hero { clip-path: none; }
}
