* { margin: 0; padding: 0; box-sizing: border-box; }

img, video { max-width: 100%; height: auto; display: block; }

:root {
  --black: #080808;
  --black2: #111111;
  --black3: #1a1a1a;
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #aaaaaa;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TOP BANNER ANIMADO */
.top-banner {
  background: linear-gradient(90deg, #ff6030, #ff8c00, #ff6030);
  background-size: 200% auto;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(255,100,0,0.3);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  animation: banner-gradient 3s linear infinite;
}
.top-banner strong { font-weight: 800; color: #fff; }
.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}
.marquee-content {
  padding-right: 10px;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes banner-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.logo-accent { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.preventa-pill {
  background: rgba(255,80,0,0.15); border: 1px solid rgba(255,80,0,0.4);
  color: #ff6030; padding: 0.35rem 0.875rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  animation: pulse-badge 2s ease-in-out infinite;
}
.nav-cta {
  background: var(--gold); color: #000; padding: 0.5rem 1.25rem;
  border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.875rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%);
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.miami-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ccc; padding: 0.45rem 1.25rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-light); max-width: 540px; margin: 0 auto 2.5rem;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-primary {
  background: var(--gold); color: #000;
  padding: 0.875rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.875rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 500; font-size: 1rem;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-n { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.stat-l { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.05em; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* SECTIONS */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--black2); }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 3rem;
}

/* STEPS */
.steps { display: flex; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px;
  background: var(--black2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 2rem;
  transition: border-color 0.2s;
}
.step:hover { border-color: rgba(201,168,76,0.3); }
.step-num { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1rem; }
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.step p { color: var(--gray-light); font-size: 0.9rem; }
.step-arrow { font-size: 1.5rem; color: var(--gold); align-self: center; flex-shrink: 0; }

/* CASOS */
.casos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.caso {
  background: var(--black3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 1.5rem; text-align: center;
  transition: all 0.2s;
}
.caso:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.caso-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.caso h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.caso p { font-size: 0.85rem; color: var(--gray-light); }

/* VS GRID */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.vs-col { border-radius: 16px; padding: 2rem; }
.vs-bad { background: rgba(255,50,50,0.05); border: 1px solid rgba(255,50,50,0.15); }
.vs-good { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.25); }
.vs-label { font-weight: 700; font-size: 0.9rem; margin-bottom: 1.25rem; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.vs-list li { font-size: 0.9rem; color: var(--gray-light); }
.vs-divider { font-size: 1.5rem; font-weight: 900; color: var(--gray); text-align: center; flex-shrink: 0; }

/* SILICONA */
.silicona-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.silicona-casos { display: flex; flex-direction: column; gap: 1rem; }
.sc { display: flex; gap: 1rem; align-items: flex-start; }
.sc span { font-size: 1.5rem; flex-shrink: 0; }
.sc strong { font-size: 0.95rem; display: block; margin-bottom: 0.2rem; }
.sc small { color: var(--gray); font-size: 0.82rem; }
.silicona-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.silicona-card {
  background: var(--black2); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; padding: 1.75rem;
}
.sc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.silicona-card h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.silicona-card p { font-size: 0.875rem; color: var(--gray-light); margin-bottom: 1rem; }
.sc-badge {
  display: inline-block; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
  padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}

/* PREVENTA BANNER */
.preventa-banner {
  background: linear-gradient(135deg, rgba(255,80,0,0.1), rgba(255,80,0,0.05));
  border: 1px solid rgba(255,80,0,0.3); border-radius: 12px;
  padding: 1.25rem 2rem; display: flex; align-items: center;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.preventa-fire { font-size: 1.75rem; }
.preventa-banner strong { color: #ff6030; }
.preventa-timer { margin-left: 1rem; font-size: 0.875rem; color: var(--gray-light); }
#countdown { color: #ff6030; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.preventa-stock { margin-left: auto; font-size: 0.875rem; color: var(--gray-light); }
.preventa-stock strong { color: var(--white); }

/* PACKS */
.packs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.pack {
  background: var(--black2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2.5rem; position: relative;
  transition: all 0.3s;
}
.pack:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.pack-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,168,76,0.08) 0%, var(--black2) 60%);
  box-shadow: 0 0 40px rgba(201,168,76,0.1);
}
.pack-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000; padding: 0.3rem 1.25rem;
  border-radius: 0 0 10px 10px; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em; white-space: nowrap;
}
.pack-price-wrap { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem; }
.pack-price-old { font-size: 1.25rem; color: var(--gray); text-decoration: line-through; }
.pack-time { font-size: 0.78rem; color: var(--gray); margin-top: 0.5rem; }
.func-options { font-size: 0.78rem; color: var(--gold); display: block; margin-top: 0.25rem; }
.pack-no { margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.pack-no-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.pack-no span {
  display: inline-block; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray); font-size: 0.75rem; padding: 0.2rem 0.6rem;
  border-radius: 4px; margin: 0.15rem;
}
.pack-header { margin-bottom: 2rem; }
.pack-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.pack-price { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem; }
.pack-ideal { font-size: 0.85rem; color: var(--gray); }
.pack-items { list-style: none; margin-bottom: 2rem; }
.pack-items li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pack-items li:last-child { border: none; }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.btn-pack {
  display: block; text-align: center; text-decoration: none;
  padding: 0.875rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  transition: all 0.2s;
}
.btn-pack:hover { border-color: var(--gold); color: var(--gold); }
.btn-pack-gold { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-pack-gold:hover { background: var(--gold-light); color: #000; }

/* STOCK BAR */
.stock-bar {
  background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.stock-grid { display: flex; gap: 2rem; flex-wrap: wrap; }
.stock-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-light); }
.stock-item strong { color: var(--white); }
.stock-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.stock-note { font-size: 0.8rem; color: var(--gray); }

/* UPSELLS */
.upsell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.upsell-card {
  background: var(--black2); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.2s;
}
.upsell-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.upsell-icon { font-size: 2rem; margin-bottom: 1rem; }
.upsell-card h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.upsell-card p { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 1rem; }
.upsell-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* CTA FINAL */
.cta-final {
  background: var(--black2); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 24px; padding: 3.5rem 2.5rem; text-align: center;
  box-shadow: 0 0 80px rgba(201,168,76,0.05);
}
.cta-badge {
  display: inline-block; background: rgba(255,80,0,0.1);
  border: 1px solid rgba(255,80,0,0.3); color: #ff6030;
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.04em;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: transparent; border: none; color: var(--white);
  padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; text-align: left; transition: background 0.2s;
}
.faq-q:hover { background: rgba(201,168,76,0.05); }
.faq-q span:last-child { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; font-size: 1.25rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-q.open span:last-child { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }
.faq-a.show { display: block; }

/* CONTACTO */
.contact-options { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-wa { background: #25D366; color: #fff; border-radius: 8px; padding: 0.875rem 2rem; text-decoration: none; font-weight: 700; transition: all 0.2s; }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.footer-brand { text-align: center; color: var(--gray); font-size: 0.85rem; margin-top: 3rem; }

/* MODO AVANZADO ADD-ON */
.addon-card {
  background: var(--black2); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px; padding: 2.5rem;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(201,168,76,0.05);
}
.addon-left { display: flex; gap: 1.5rem; align-items: flex-start; flex: 1; min-width: 260px; }
.addon-icon { font-size: 2.5rem; flex-shrink: 0; }
.addon-right { text-align: center; flex-shrink: 0; }
.addon-price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.addon-note { font-size: 0.8rem; color: var(--gray); margin-top: 0.25rem; margin-bottom: 1rem; }
.btn-pack-sm { display: inline-block; padding: 0.6rem 1.5rem; border-radius: 8px; font-size: 0.875rem; font-weight: 600; }

/* FUNNEL GRID */
.funnel-grid {
  display: flex; align-items: stretch; gap: 0; flex-wrap: wrap;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.funnel-step {
  flex: 1; min-width: 200px; padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07); position: relative;
  transition: background 0.2s;
}
.funnel-step:last-child { border-right: none; }
.funnel-step:hover { background: rgba(201,168,76,0.04); }
.funnel-num { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1rem; }
.funnel-icon { font-size: 2rem; margin-bottom: 1rem; }
.funnel-step h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.75rem; }
.funnel-step p { font-size: 0.85rem; color: var(--gray-light); }
.funnel-arrow { display: flex; align-items: center; color: var(--gold); font-size: 1.5rem; padding: 0 0.5rem; align-self: center; flex-shrink: 0; }

/* ROADMAP */
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.roadmap-card {
  background: var(--black2); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 2rem; transition: all 0.25s;
}
.roadmap-card:hover { transform: translateY(-4px); }
.roadmap-active { border-color: rgba(201,168,76,0.3); background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, var(--black2) 60%); }
.roadmap-phase { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem; }
.roadmap-icon { font-size: 2rem; margin-bottom: 1rem; }
.roadmap-card h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.6rem; }
.roadmap-card p { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 1.25rem; }
.roadmap-status { font-size: 0.8rem; font-weight: 600; }
.status-live { color: #22c55e; }
.status-soon { color: #eab308; }
.status-future { color: #60a5fa; }

/* ─── 3D SYSTEM ─────────────────────────────────────────── */
/* Background depth mesh */
body::before {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 50% 50%, rgba(100,80,200,0.03) 0%, transparent 50%);
}
body > * { position:relative; z-index:1; }

/* Floating 3D orbs in hero */
.hero-3d-orb {
  position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none;
  animation:orb-float 8s ease-in-out infinite;
}
.orb-1 { width:400px;height:400px; background:rgba(201,168,76,0.07); top:-10%; left:-10%; animation-delay:0s; }
.orb-2 { width:300px;height:300px; background:rgba(150,100,255,0.05); top:20%; right:-5%; animation-delay:3s; }
.orb-3 { width:200px;height:200px; background:rgba(201,168,76,0.05); bottom:10%; left:30%; animation-delay:5s; }
@keyframes orb-float {
  0%,100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-30px) scale(1.05); }
}

/* Hero 3D product showcase */
.hero-showcase {
  margin-top:3rem; position:relative; width:100%; max-width:800px;
  border-radius:24px; overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,168,76,0.1);
  transform: perspective(1000px) rotateX(2deg);
  animation: float-showcase 8s ease-in-out infinite;
}
.hero-showcase-img {
  display:block; width:100%; height:auto;
  object-fit:contain;
}
.hero-showcase-glow {
  position:absolute; inset:0;
  box-shadow: inset 0 0 80px rgba(201,168,76,0.05);
  pointer-events:none;
}
@keyframes float-showcase {
  0%,100%{ transform:perspective(1000px) translateY(0) rotateX(2deg); }
  50%{ transform:perspective(1000px) translateY(-15px) rotateX(4deg); box-shadow: 0 60px 120px rgba(0,0,0,0.9), 0 0 40px rgba(201,168,76,0.15); }
}

/* 3D Pack cards — perspective tilt on hover */
.packs-grid { perspective:1200px; }
.pack {
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform 0.4s cubic-bezier(0.23,1,0.32,1),
             box-shadow 0.4s ease,
             border-color 0.3s ease;
}
.pack:hover {
  transform:translateY(-10px) rotateX(2deg) scale(1.01);
  box-shadow:0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
}
.pack-featured:hover {
  box-shadow:0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.2), 0 0 0 1px rgba(201,168,76,0.4);
}

/* 3D floating badge on pack-popular */
.pack-popular {
  box-shadow:0 4px 20px rgba(201,168,76,0.4);
  animation:badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100%{ box-shadow:0 4px 20px rgba(201,168,76,0.4); }
  50%{ box-shadow:0 4px 30px rgba(201,168,76,0.7); }
}

/* 3D silicona cards */
.silicona-card {
  transition:transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden; padding: 0;
  display: flex; flex-direction: column;
}
.silicona-card:hover {
  transform:translateY(-6px) rotateX(2deg);
  box-shadow:0 20px 50px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.1);
}
.silicona-img-wrap {
  width: 100%; height: 340px; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 80%);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.silicona-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.silicona-card:hover .silicona-img {
  transform: scale(1.05);
}
.silicona-card-body {
  padding: 1.75rem; flex: 1;
}

/* 3D step cards */
.step {
  transition:transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
}
.step:hover {
  transform:translateY(-8px) rotateX(3deg);
  box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

/* 3D upsell cards */
.upsell-card {
  transition:transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
}
.upsell-card:hover {
  transform:translateY(-8px) rotateX(3deg);
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

/* Section dividers with depth */
.section { position:relative; }
.section::before {
  content:''; position:absolute; top:0; left:10%; right:10%; height:1px;
  background:linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
}

/* ─── PREVENTA NEUROMARKETING ────────────────────────────── */
.preventa-banner {
  background:linear-gradient(135deg, rgba(255,60,0,0.12), rgba(255,140,0,0.08), rgba(255,60,0,0.06));
  border:1px solid rgba(255,100,0,0.4);
  border-radius:16px; padding:2rem 2.5rem;
  display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap;
  margin-bottom:2.5rem; position:relative; overflow:hidden;
  box-shadow:0 0 60px rgba(255,80,0,0.1), inset 0 1px 0 rgba(255,200,0,0.1);
}
.preventa-banner::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, transparent 0%, rgba(255,140,0,0.04) 50%, transparent 100%);
  animation:preventa-shimmer 3s ease-in-out infinite;
}
@keyframes preventa-shimmer {
  0%,100%{ opacity:0; } 50%{ opacity:1; }
}
.preventa-fire { font-size:2.5rem; animation:fire-shake 0.5s ease-in-out infinite alternate; }
@keyframes fire-shake {
  0%{ transform:rotate(-5deg) scale(1); }
  100%{ transform:rotate(5deg) scale(1.1); }
}
.preventa-main-text { flex:1; min-width:200px; }
.preventa-headline { font-family:'Space Grotesk',sans-serif; font-size:1.1rem; font-weight:800; color:#ff6030; letter-spacing:0.02em; margin-bottom:0.25rem; }
.preventa-sub { font-size:0.85rem; color:#aaa; }
.preventa-sub strong { color:#fff; }
.preventa-timer-block { text-align:center; }
.preventa-timer-label { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; color:#777; margin-bottom:0.25rem; }
#countdown { font-family:'Space Grotesk',sans-serif; font-size:1.5rem; font-weight:900; color:#ff6030; display:block; text-shadow:0 0 20px rgba(255,96,48,0.5); }
.preventa-urgency { background:rgba(255,60,0,0.1); border:1px solid rgba(255,60,0,0.25); border-radius:10px; padding:0.75rem 1.25rem; text-align:center; }
.preventa-urgency-n { font-family:'Space Grotesk',sans-serif; font-size:1.5rem; font-weight:900; color:#fff; display:block; }
.preventa-urgency-l { font-size:0.72rem; color:#ff9060; text-transform:uppercase; letter-spacing:0.08em; }

/* ─── REVIEW STAND VISUAL ───────────────────────────────── */
/* Legacy classes removed to accommodate new structure */

/* ─── CUSTOM PACK RESPONSIVE ────────────────────────────── */
.custom-pack-wrapper {
  margin-top: 4rem; background: linear-gradient(145deg, rgba(20,20,22,1) 0%, rgba(30,30,35,1) 100%);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 16px; padding: 2rem;
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); box-sizing: border-box; width: 100%;
}
.custom-pack-left {
  flex: 1 1 300px; max-width: 100%; box-sizing: border-box;
}
.custom-pack-right {
  flex: 1 1 250px; max-width: 100%; text-align: center;
  background: rgba(0,0,0,0.3); padding: 2rem 1.5rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05); box-sizing: border-box;
}

/* ─── ENTERPRISE PACK (Split Layout) ──────────────────── */
.enterprise-pack {
  margin-top: 2.5rem;
  background: linear-gradient(145deg, rgba(20,20,22,1) 0%, rgba(15,15,18,1) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.05);
  position: relative;
  overflow: hidden;
}
.enterprise-pack::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.enterprise-content {
  flex: 1 1 55%;
  min-width: 280px;
}
.enterprise-visual {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* CSS Phone Mockup */
.enterprise-phone-3d {
  transform: perspective(1200px) rotateY(-12deg) rotateX(4deg);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
  transform-style: preserve-3d;
  will-change: transform;
  animation: enterprise-float 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.7)) drop-shadow(0 0 15px rgba(201,168,76,0.08));
}
.enterprise-phone-3d:hover {
  animation-play-state: paused;
}
@keyframes enterprise-float {
  0%, 100% { transform: perspective(1200px) rotateY(-12deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-8deg) rotateX(6deg) translateY(-10px); }
}

.phone-frame {
  width: 240px;
  background: #1a1a1a;
  border-radius: 36px;
  border: 3px solid #2a2a2a;
  padding: 12px 10px 14px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 1px 0 0 rgba(255,255,255,0.08);
}
/* Side buttons */
.phone-btn {
  position: absolute;
  background: #2a2a2a;
  border-radius: 2px;
}
.phone-btn-vol-up {
  left: -5px; top: 90px;
  width: 3px; height: 28px;
  border-radius: 2px 0 0 2px;
}
.phone-btn-vol-down {
  left: -5px; top: 126px;
  width: 3px; height: 28px;
  border-radius: 2px 0 0 2px;
}
.phone-btn-power {
  right: -5px; top: 110px;
  width: 3px; height: 36px;
  border-radius: 0 2px 2px 0;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.phone-notch {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #0a0a0a;
  border-radius: 10px;
  z-index: 11;
}
.phone-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
}
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 12px 6px #0a0a0a;
  pointer-events: none;
  z-index: 4;
}
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  animation: screen-pan 10s ease-in-out infinite;
}
@keyframes screen-pan {
  0%, 12% { object-position: top center; }
  44%, 56% { object-position: bottom center; }
  88%, 100% { object-position: top center; }
}
/* Glass reflection */
.phone-glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255,255,255,0.03) 100%
  );
  pointer-events: none;
  z-index: 5;
  border-radius: 24px;
}

/* Enterprise Function Tags */
.enterprise-tags {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.enterprise-tag-3d {
  width: 82px;
  height: 82px;
  overflow: visible;
  transform: perspective(600px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
}
.enterprise-tag-3d:hover {
  transform: perspective(600px) rotateX(-8deg) rotateY(10deg) scale(1.15);
}
.enterprise-tag-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tag-appointment {
  transform: scale(1.23);
  clip-path: ellipse(35.3% 40.0% at 50% 50%);
}
.tag-review {
  transform: scale(1.05);
  clip-path: ellipse(41.3% 46.7% at 50% 50%);
}
.tag-listings {
  transform: scale(1.17);
  clip-path: ellipse(38.1% 41.9% at 50% 50%);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 3rem; }
  .nav-inner { padding: 0 1rem; }
  
  .funnel-grid { flex-direction: column; }
  .funnel-arrow { transform: rotate(90deg); align-self: center; padding: 0.5rem 0; }
  .funnel-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .funnel-step:last-child { border-bottom: none; }
  .addon-card { flex-direction: column; text-align: center; gap: 1.5rem; padding: 1.5rem; }
  .addon-left { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .roadmap-grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .hero-stats { gap: 1rem; }
  .stat-div { display: none; }
  .packs-grid { grid-template-columns: 1fr; }
  .pack { padding: 1.5rem; }
  .pack-price { font-size: 2.5rem; }
  
  .stock-bar { flex-direction: column; text-align: center; }
  .stock-grid { justify-content: center; gap: 1rem; }
  .vs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .vs-col { padding: 1.5rem; }
  .vs-divider { text-align: center; }
  
  .custom-pack-wrapper { flex-direction: column; padding: 2rem 1.25rem; gap: 1.5rem; }
  .custom-pack-left { flex: none; width: 100%; }
  .custom-pack-right { flex: none; width: 100%; padding: 2rem 1.25rem; }
  
  .silicona-feature { grid-template-columns: 1fr; gap: 2rem; }
  .preventa-banner { flex-direction: column; text-align: center; padding: 1.5rem 1rem; gap: 1rem; }
  .preventa-stock { margin-left: 0; margin-top: 1rem; }
  
  .nav-right { gap: 0.5rem; }
  .preventa-pill { display: none; }
  .upsell-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 2.5rem 1.5rem; }
  .enterprise-pack { flex-direction: column; padding: 2rem 1.25rem; gap: 2rem; }
  .enterprise-content { flex: none; width: 100%; min-width: 0; }
  .enterprise-visual { flex: none; width: 100%; }
  .enterprise-phone-3d { transform: perspective(1200px) rotateY(0deg) rotateX(5deg); }
  .phone-frame { width: 200px; margin: 0 auto; }
  @keyframes enterprise-float {
    0%, 100% { transform: perspective(1200px) rotateY(0deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1200px) rotateY(0deg) rotateX(7deg) translateY(-6px); }
  }
  .enterprise-tags { gap: 0.5rem; }
  .enterprise-tag-3d { width: 64px; height: 64px; }

}

/* SECTORES GRID */
.sectores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.sector-card-demo {
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}
.sector-card-demo:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 20px rgba(201,168,76,0.05);
}
.sector-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.sector-card-demo:hover .sector-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}
.sector-icon-wrap i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: color 0.3s;
}
.sector-card-demo:hover .sector-icon-wrap i {
  color: #000;
}
.sector-card-demo h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.sector-card-demo p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* NAV GHOST BUTTON */
.nav-ghost-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  display: inline-block;
}
.nav-ghost-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

@media (max-width: 768px) {
  .sectores-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .nav-ghost-btn {
    padding: 0.4rem 0.875rem;
    font-size: 0.75rem;
  }
}
