/* ===== VARIABLES ===== */
:root {
  --gold: #F5A523;
  --gold-light: #FFD166;
  --orange: #E8750A;
  --dark-orange: #C4540A;
  --black: #0D0600;
  --dark-brown: #1A0800;
  --wood: #8B5E3C;
  --cream: #FFF8E1;
  --cream2: #FEF3C7;
  --white: #FFFFFF;
  --gray: #6B7280;
  --light-gray: #F9FAFB;
  --green-wsp: #25D366;
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s ease,
                background 0.25s ease,
                color 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); box-shadow: 0 4px 20px rgba(245,165,35,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,165,35,0.6); }
.btn-outline {
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.btn-wsp {
  background: var(--green-wsp); color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-wsp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.btn-card {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); font-weight: 700; padding: 10px 20px;
  border-radius: 50px; font-size: 0.85rem; width: 100%; justify-content: center;
  transition: var(--transition);
}
.btn-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,165,35,0.5); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ===== BTN DESCARGAR PRECIOS ===== */
.btn-download-precios {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #F5A523 0%, #E07B1A 50%, #F5A523 100%);
  background-size: 200% auto;
  color: #1A0800; font-weight: 800; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(245, 165, 35, 0.55), 0 0 0 0 rgba(245,165,35,0.4);
  animation: pulse-download 2.5s ease-in-out infinite, shimmer-bg 3s linear infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-download-precios::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shine-sweep 2.5s ease-in-out infinite;
}
.btn-download-precios:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(245,165,35,0.75), 0 0 0 8px rgba(245,165,35,0.15);
  animation: none;
}
.btn-download-precios .dl-icon {
  font-size: 1.2rem;
  animation: bounce-icon 1.2s ease-in-out infinite;
}
.btn-download-precios .dl-sub {
  font-size: 0.65rem; font-weight: 600; opacity: 0.75;
  display: block; letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 1px;
}
.btn-download-precios .dl-label { display: flex; flex-direction: column; }

/* Floating download CTA bar (after hero) */
.download-bar {
  background: linear-gradient(135deg, #2C1200, #1A0800);
  border-top: 2px solid rgba(245,165,35,0.3);
  border-bottom: 2px solid rgba(245,165,35,0.3);
  padding: 28px 20px;
  text-align: center;
  position: relative; overflow: hidden;
}
.download-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,165,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.download-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; position: relative; z-index: 1;
}
.download-bar-text strong {
  display: block; color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 4px;
}
.download-bar-text span {
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
}

/* Floating sticky download btn */
.download-sticky {
  position: fixed; left: 16px; bottom: 88px; z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.download-sticky-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #F5A523, #E07B1A);
  color: #1A0800; font-size: 20px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,165,35,0.6);
  animation: pulse-download 2.5s ease-in-out infinite;
  text-decoration: none; transition: transform 0.2s;
}
.download-sticky-btn:hover { transform: scale(1.15); animation: none; }
.download-sticky-label {
  font-size: 0.6rem; font-weight: 700; color: var(--gold);
  text-align: center; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(26,8,0,0.85); padding: 2px 6px; border-radius: 50px;
  white-space: nowrap;
}

@keyframes pulse-download {
  0%, 100% { box-shadow: 0 6px 30px rgba(245,165,35,0.55), 0 0 0 0 rgba(245,165,35,0.4); }
  50%       { box-shadow: 0 6px 30px rgba(245,165,35,0.55), 0 0 0 14px rgba(245,165,35,0); }
}
@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(3px); }
}
@keyframes shine-sweep {
  0%   { transform: translateX(-100%); }
  60%, 100% { transform: translateX(200%); }
}
@keyframes shimmer-bg {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@media (max-width: 640px) {
  .download-sticky { left: 12px; bottom: 80px; }
  .download-sticky-btn { width: 46px; height: 46px; font-size: 18px; }
  .btn-download-precios { font-size: 0.85rem; padding: 12px 22px; }
}

/* ===== SECTION STYLES ===== */
.section-label {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; margin-bottom: 16px; color: var(--white);
}
.section-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.section-header.reveal { text-align: center; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 100px; right: 24px; z-index: 999;
  width: 60px; height: 60px; background: var(--green-wsp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wsp 2s infinite;
}
.whatsapp-float:hover .wsp-tooltip { opacity: 1; transform: translateX(-10px); }
.wsp-tooltip {
  position: absolute; right: 70px; background: var(--green-wsp);
  color: white; padding: 6px 14px; border-radius: 8px; font-size: 0.8rem;
  white-space: nowrap; opacity: 0; transition: all 0.3s; transform: translateX(0);
  pointer-events: none;
}
.wsp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: var(--green-wsp);
}
@keyframes pulse-wsp {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.9), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13,6,0,0.95); backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(245,165,35,0.2);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo .logo-img { height: 50px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.9rem; transition: color 0.3s; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  color: var(--black) !important; padding: 10px 22px;
  border-radius: 50px; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,165,35,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,117,10,0.1) 0%, transparent 50%),
              var(--dark-brown);
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-parallax {
  position: relative; z-index: 2; width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 120px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  will-change: transform;
}
.hero-badge {
  display: inline-block; border: 1.5px solid var(--gold); color: var(--gold);
  padding: 6px 18px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 2px; margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 20px;
}
.hero-sub {
  font-family: 'Dancing Script', cursive; font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold-light); display: block;
}
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat span { font-size: 1.5rem; color: var(--gold); font-weight: 800; }
.stat small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Cheese orbit */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.cheese-orbit { position: relative; width: 420px; height: 420px; }
.orbit-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(245,165,35,0.2);
  animation: rotate-ring 20s linear infinite;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ring1 { width: 300px; height: 300px; }
.ring2 { width: 380px; height: 380px; animation-duration: 30s; animation-direction: reverse; border-color: rgba(232,117,10,0.15); }
.ring3 { width: 420px; height: 420px; animation-duration: 40s; }
@keyframes rotate-ring { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-product-img {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--gold); box-shadow: 0 0 60px rgba(245,165,35,0.4);
}
.floating { animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-20px); } }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.8rem;
  animation: bounce-hint 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4); transform: rotate(45deg);
  margin: 8px auto 0;
}
@keyframes bounce-hint { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== NOSOTROS ===== */
.nosotros {
  position: relative; padding: 120px 0;
  background: linear-gradient(135deg, #1A0800 0%, #0D0600 100%);
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: 0; background-size: cover; background-attachment: fixed;
  background-position: center; opacity: 0.04; pointer-events: none;
}
.nosotros-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.img-3d-frame {
  position: relative; transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease;
}
.img-3d-frame:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.nosotros-logo {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 2px solid rgba(245,165,35,0.3);
}
.frame-glow {
  position: absolute; inset: -2px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--orange), transparent);
  opacity: 0.3; z-index: -1; filter: blur(20px);
}
.badge-artesanal {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); padding: 16px 20px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px; font-size: 0.85rem;
  font-weight: 700; box-shadow: var(--shadow-card);
}
.badge-artesanal i { font-size: 1.4rem; }
.nosotros-text { padding-left: 20px; }
.nosotros-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.8; }
.nosotros-text strong { color: var(--gold); }
.valores-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0;
}
.valor {
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,165,35,0.08); border: 1px solid rgba(245,165,35,0.2);
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600;
}
.valor i { color: var(--gold); font-size: 1.1rem; }

/* ===== PRODUCTOS ===== */
.productos { padding: 120px 0; background: var(--dark-brown); }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,165,35,0.2); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); cursor: pointer;
  transform-style: preserve-3d; position: relative;
}
.product-card:hover {
  transform: translateY(-12px) rotateX(3deg);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(245,165,35,0.2), 0 0 0 1px rgba(245,165,35,0.3);
}
.card-inner { height: 100%; }
.card-img-wrap { position: relative; overflow: hidden; height: 220px; background: var(--dark-brown); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform 0.6s ease; }
.product-card:hover .card-img-wrap img { transform: scale(1.1) translateY(-4px); }
.card-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
}
.badge-new { background: linear-gradient(135deg, #667eea, #764ba2) !important; color: white !important; }
.card-info { padding: 20px; }
.card-info h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  margin-bottom: 10px; color: var(--gold);
}
.card-info p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.6; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.card-tags span {
  font-size: 0.7rem; padding: 4px 10px; border-radius: 50px;
  border: 1px solid rgba(245,165,35,0.4); color: var(--gold-light);
}
.card-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 14px;
}
.card-price .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.card-price .price-unit {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(10px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: linear-gradient(145deg, #2a1200, #1a0800);
  border: 1px solid rgba(245,165,35,0.4); border-radius: var(--radius);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; animation: modal-in 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes modal-in { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1);
  color: white; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
.modal-close:hover { background: rgba(245,165,35,0.3); }
.modal-content { padding: 32px; }
.modal-content img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 20px; }
.modal-content h2 { font-family: 'Playfair Display',serif; color: var(--gold); font-size: 1.8rem; margin-bottom: 12px; }
.modal-content p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.modal-content .modal-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ===== PRODUCTOS COMPLEMENTARIOS ===== */
.section-divider {
  text-align: center;
  padding: 56px 0 32px;
}
.complementarios-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 8px 0 12px;
}
.complementarios-grid {
  margin-top: 0 !important;
}
.product-comp .card-img-wrap img {
  object-fit: contain !important;
  padding: 16px;
}

/* ===== DESPACHO ===== */
.despacho {
  padding: 120px 0; position: relative;
  background: linear-gradient(135deg, #0D0600, #1A0800, #0D0600);
}
.despacho-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,165,35,0.08) 0%, transparent 70%);
}
.despacho-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 60px; flex-wrap: wrap;
}
.step {
  text-align: center; flex: 1; min-width: 160px; padding: 32px 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,165,35,0.15); border-radius: var(--radius);
  transition: var(--transition); position: relative;
}
.step:hover { transform: translateY(-8px); border-color: var(--gold); }
.step-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--black); margin: 0 auto 16px;
}
.step-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 8px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.4; padding: 0 8px; }
.despacho-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, rgba(245,165,35,0.1), rgba(232,117,10,0.05));
  border: 1px solid rgba(245,165,35,0.3); border-radius: var(--radius);
  padding: 40px 48px; gap: 32px; flex-wrap: wrap;
}
.despacho-info { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.info-item i { color: var(--gold); font-size: 1.2rem; width: 20px; }

/* ===== DISTRIBUCION ===== */
.distribucion { padding: 120px 0; background: var(--dark-brown); }
.dist-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px;
}
.dist-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,165,35,0.2); border-radius: var(--radius);
  padding: 36px 28px; transition: var(--transition); position: relative;
}
.dist-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(245,165,35,0.15); }
.featured-dist {
  background: linear-gradient(145deg, rgba(245,165,35,0.12), rgba(232,117,10,0.06));
  border-color: var(--gold);
}
.dist-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); padding: 4px 16px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 800; white-space: nowrap;
}
.dist-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--black); margin-bottom: 20px;
}
.dist-card h3 { font-family: 'Playfair Display',serif; color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }
.dist-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.dist-card ul { display: flex; flex-direction: column; gap: 10px; }
.dist-card li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.dist-card li i { color: var(--gold); }
.dist-cta {
  text-align: center; background: linear-gradient(135deg, rgba(245,165,35,0.1), rgba(232,117,10,0.05));
  border: 1px solid rgba(245,165,35,0.25); border-radius: var(--radius); padding: 40px;
}
.dist-cta p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: 1rem; }

/* ===== PROMOCIONES ===== */
.promociones {
  padding: 120px 0; position: relative;
  background: linear-gradient(135deg, #0D0600, #1A0800);
  overflow: hidden;
}
.promo-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.promociones .container { position: relative; z-index: 1; }

/* Gamification */
.gamification-wrap {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-bottom: 60px;
}
.points-board, .wheel-section, .levels-board {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,165,35,0.25); border-radius: var(--radius); padding: 28px;
}
.points-board h3, .wheel-section h3, .levels-board h3 {
  display: flex; align-items: center; gap: 10px; color: var(--gold);
  font-size: 1.1rem; margin-bottom: 20px;
}
.points-display { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.pts-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--black); font-weight: 900; flex-shrink: 0;
}
.pts-circle span { font-size: 1.8rem; line-height: 1; }
.pts-circle small { font-size: 0.65rem; font-weight: 600; }
.pts-level { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; }
.earn-ways { display: flex; flex-direction: column; gap: 10px; }
.earn-item {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
  border: 1px solid rgba(245,165,35,0.15);
}
.earn-item i { font-size: 1.3rem; color: var(--gold); width: 24px; text-align: center; }
.earn-item div { flex: 1; }
.earn-item strong { display: block; font-size: 0.8rem; }
.earn-item span { font-size: 0.75rem; color: var(--gold); font-weight: 700; }
.earn-btn {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); padding: 6px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; transition: var(--transition); flex-shrink: 0;
}
.earn-btn:hover { transform: scale(1.05); }
.earn-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Wheel */
.wheel-section { text-align: center; }
.wheel-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.wheel-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
.wheel-pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  font-size: 1.8rem; color: var(--gold); z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 40px rgba(245,165,35,0.3); display: block; }
.spin-btn { width: 100%; justify-content: center; }
.spin-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* Levels */
.level-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.level-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.level-item.active { border-color: var(--gold); background: rgba(245,165,35,0.08); }
.lvl-icon {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.bronze { background: linear-gradient(135deg,#CD7F32,#A0522D); }
.silver { background: linear-gradient(135deg,#C0C0C0,#808080); }
.gold { background: linear-gradient(135deg,var(--gold),var(--orange)); color: var(--black) !important; }
.diamond { background: linear-gradient(135deg,#667eea,#764ba2); }
.level-item div { flex: 1; }
.level-item strong { display: block; font-size: 0.85rem; }
.level-item small { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.lvl-reward { font-size: 0.72rem; color: var(--gold); font-weight: 600; text-align: right; flex-shrink: 0; max-width: 80px; }
.redeem-section { text-align: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.redeem-section p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }

/* Promos activas */
.promos-activas { margin-top: 20px; }
.promos-activas h3 { color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.promos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.promo-card {
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.promo-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0.07; z-index: 0;
}
.promo-fire { background: linear-gradient(145deg, rgba(255,60,0,0.15), rgba(255,100,0,0.08)); border-color: rgba(255,60,0,0.3); }
.promo-star { background: linear-gradient(145deg, rgba(245,165,35,0.15), rgba(232,117,10,0.08)); border-color: rgba(245,165,35,0.3); }
.promo-ig { background: linear-gradient(145deg, rgba(200,50,150,0.15), rgba(150,30,200,0.08)); border-color: rgba(200,50,150,0.3); }
.promo-card > * { position: relative; z-index: 1; }
.promo-icon { font-size: 2.5rem; margin-bottom: 12px; }
.promo-fire .promo-icon { color: #FF6B35; }
.promo-star .promo-icon { color: var(--gold); }
.promo-ig .promo-icon { color: #E1306C; }
.promo-card h4 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Playfair Display',serif; }
.promo-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.promo-discount {
  display: inline-block; font-size: 1.2rem; font-weight: 900;
  color: var(--gold); margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(245,165,35,0.6);
}
.promo-card:hover { transform: translateY(-8px); }

/* ===== TESTIMONIOS ===== */
.testimonios { padding: 120px 0; background: var(--dark-brown); overflow: hidden; }
.testimonios-slider { overflow: hidden; margin: 0 -12px; }
.testi-track {
  display: flex; gap: 24px; padding: 12px; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testi-card {
  min-width: calc(33.333% - 16px); background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,165,35,0.2); border-radius: var(--radius);
  padding: 32px; flex-shrink: 0; transition: var(--transition);
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.testi-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--black); font-size: 1.1rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,165,35,0.15); border: 1px solid rgba(245,165,35,0.3);
  color: var(--gold); font-size: 1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); color: var(--black); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.testi-cta { text-align: center; margin-top: 48px; }
.testi-cta p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* ===== CONTACTO ===== */
.contacto { padding: 120px 0; background: var(--dark-brown); overflow-x: hidden; }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contacto-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,165,35,0.2);
  padding: 20px; border-radius: var(--radius-sm); transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); transform: translateX(5px); }
.contact-card i { font-size: 1.6rem; color: var(--gold); width: 30px; text-align: center; }
.contact-card h4 { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-card a, .contact-card span { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.contact-card a:hover { color: var(--gold); }
.quick-order {
  background: linear-gradient(145deg, rgba(245,165,35,0.1), rgba(232,117,10,0.05));
  border: 1px solid rgba(245,165,35,0.25); border-radius: var(--radius); padding: 20px;
}
.quick-order h4 { font-size: 0.9rem; color: var(--gold); margin-bottom: 14px; font-weight: 700; }
.quick-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.quick-btn {
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3);
  color: #25D366; padding: 8px 14px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; transition: var(--transition);
}
.quick-btn:hover { background: var(--green-wsp); color: white; transform: scale(1.05); }
.contacto-form {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,165,35,0.2); border-radius: var(--radius); padding: 36px;
}
.contacto-form h3 { font-family: 'Playfair Display',serif; color: var(--gold); font-size: 1.5rem; margin-bottom: 8px; }
.contacto-form p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(245,165,35,0.25);
  border-radius: var(--radius-sm); padding: 14px 18px; color: white;
  font-family: inherit; font-size: 0.9rem; transition: border-color 0.3s; outline: none;
}
.form-group select option { background: #1A0800; color: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }

/* ===== FOOTER ===== */
.footer { background: #080300; border-top: 1px solid rgba(245,165,35,0.15); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .footer-logo { height: 60px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(245,165,35,0.3); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); }
.footer-col h4 { color: var(--gold); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li { font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col i { color: var(--gold); font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-tagline { margin-top: 4px; }

/* ===== CHATBOT ===== */
.chatbot-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 998; }
.chatbot-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); font-size: 1.5rem; box-shadow: 0 4px 20px rgba(245,165,35,0.5);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.1); }
.chat-badge {
  position: absolute; top: -4px; right: -4px; width: 20px; height: 20px;
  background: #EF4444; border-radius: 50%; color: white; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.chatbot-box {
  position: absolute; bottom: 72px; right: 0; width: 340px;
  background: #1A0800; border: 1px solid rgba(245,165,35,0.3);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: none; flex-direction: column;
  animation: chat-in 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.chatbot-box.open { display: flex; }
@keyframes chat-in { from { opacity:0; transform:scale(0.8) translateY(20px); } to { opacity:1; transform:scale(1) translateY(0); } }
.chat-header {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-header div { flex: 1; }
.chat-header strong { display: block; font-size: 0.85rem; color: var(--black); }
.chat-header small { font-size: 0.72rem; color: rgba(0,0,0,0.6); display: flex; align-items: center; gap: 4px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; display: inline-block; }
.chat-close { color: var(--black); font-size: 1rem; background: none; opacity: 0.7; }
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1; padding: 16px; overflow-y: auto; display: flex;
  flex-direction: column; gap: 10px; max-height: 280px;
  scrollbar-width: thin; scrollbar-color: rgba(245,165,35,0.3) transparent;
}
.msg { display: flex; }
.bot-msg { justify-content: flex-start; }
.user-msg { justify-content: flex-end; }
.msg-bubble {
  max-width: 80%; padding: 10px 14px; border-radius: 16px; font-size: 0.82rem; line-height: 1.5;
}
.bot-msg .msg-bubble {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
  border-bottom-left-radius: 4px;
}
.user-msg .msg-bubble {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); font-weight: 600; border-bottom-right-radius: 4px;
}
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chat-quick-replies button {
  background: rgba(245,165,35,0.15); border: 1px solid rgba(245,165,35,0.3);
  color: var(--gold); padding: 5px 12px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; transition: all 0.3s;
}
.chat-quick-replies button:hover { background: var(--gold); color: var(--black); }
.chat-input-area {
  display: flex; padding: 12px 16px; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.chat-input-area input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(245,165,35,0.25);
  border-radius: 50px; padding: 10px 16px; color: white; font-size: 0.82rem;
  outline: none; font-family: inherit;
}
.chat-input-area input:focus { border-color: var(--gold); }
.chat-input-area input::placeholder { color: rgba(255,255,255,0.35); }
.chat-send {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.chat-send:hover { transform: scale(1.1); }

/* ===== SPIN MODAL ===== */
.spin-modal {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(10px);
}
.spin-modal.open { display: flex; }
.spin-result-box {
  background: linear-gradient(145deg, #2a1200, #1a0800);
  border: 2px solid var(--gold); border-radius: var(--radius);
  padding: 40px; text-align: center; max-width: 400px; width: 100%;
  position: relative; overflow: hidden;
  animation: modal-in 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
#spinResultTitle { font-family: 'Playfair Display',serif; font-size: 2rem; margin-bottom: 20px; }
.spin-result-value {
  font-size: 3rem; font-weight: 900; color: var(--gold);
  text-shadow: 0 0 30px rgba(245,165,35,0.8); margin-bottom: 16px;
}
.spin-result-box p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.spin-result-box .btn { margin: 0 auto 12px; display: flex; justify-content: center; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black); padding: 12px 28px; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; z-index: 3000; opacity: 0; transition: all 0.4s;
  pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--dark-brown);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; letter-spacing: 6px;
  color: var(--white); margin-bottom: 10px;
  opacity: 0; animation: loader-up 0.7s 0.15s ease forwards;
}
.loader-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25rem; color: var(--gold);
  opacity: 0; animation: loader-up 0.7s 0.4s ease forwards;
  margin-bottom: 36px;
}
.loader-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; margin: 0 auto; overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px; width: 0%;
}
@keyframes loader-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  z-index: 200; width: 0%;
  box-shadow: 0 0 10px rgba(245,165,35,0.7);
  pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [onclick], label, select { cursor: none !important; }
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(245,165,35,0.65);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease,
              border-color 0.25s ease, background 0.25s ease,
              opacity 0.3s ease;
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  border-color: rgba(245,165,35,0.9);
  background: rgba(245,165,35,0.07);
}
.cursor-ring.hidden, .cursor-dot.hidden { opacity: 0; }

/* ===== NAV ACTIVE LINK ===== */
.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { transform: scaleX(1) !important; }

/* ===== CARD SHIMMER ===== */
.product-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255,255,255,0.07) 50%,
    transparent 62%
  );
  background-size: 220% 100%;
  background-position: -100% 0;
  border-radius: var(--radius);
  pointer-events: none;
  transition: background-position 0.65s ease;
}
.product-card:hover::after { background-position: 120% 0; }

/* ===== HERO MOBILE VISUAL ===== */
.hero-visual-mobile {
  display: none;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 32px;
}
.hero-mobile-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 50px rgba(245,165,35,0.35);
  animation: float-mobile 4s ease-in-out infinite;
}
@keyframes float-mobile {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ===== EL ORIGEN ===== */
.el-origen {
  padding: 120px 0 0;
  background: var(--black);
  overflow: hidden;
}
.origen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.origen-label { margin-bottom: 48px; }
.origen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.origen-quote { position: relative; margin-bottom: 28px; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}
.origen-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  color: var(--white);
}
.origen-body { margin-bottom: 36px; }
.origen-body p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.origen-kinetic {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  min-height: 1.3em;
  overflow: hidden;
}
.kinetic-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.kinetic-word.exit { opacity: 0; transform: translateY(-16px); }
.kinetic-word.enter { opacity: 0; transform: translateY(16px); }
.origen-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.origen-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.origen-img-wrap:hover img { transform: scale(1.04); }
.origen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,6,0,0.55) 0%, transparent 55%);
}
.origen-stat-strip {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(245,165,35,0.1), rgba(232,117,10,0.05));
  border: 1px solid rgba(245,165,35,0.25);
  border-radius: var(--radius-sm);
}
.origen-stat { text-align: center; }
.os-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.os-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.origen-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(245,165,35,0.12);
  border-bottom: 1px solid rgba(245,165,35,0.12);
  padding: 14px 0;
  background: rgba(245,165,35,0.025);
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.marquee-track span:nth-child(odd) { color: rgba(245,165,35,0.55); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { border-radius: 6px; }

/* ===== PREFERS-REDUCED-MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gamification-wrap { grid-template-columns: 1fr 1fr; }
  .levels-board { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero-parallax { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-visual-mobile { display: block; }
  .origen-grid { grid-template-columns: 1fr; gap: 40px; }
  .origen-visual { order: -1; }
  .origen-img-wrap { aspect-ratio: 16/9; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-text { padding-left: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-grid { grid-template-columns: 1fr 1fr; }
  .dist-grid .dist-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .testi-card { min-width: calc(50% - 12px); }
  .promos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contacto-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* NAV MOBILE */
  .navbar .nav-links {
    position: fixed; inset: 0; top: 70px;
    background: rgba(13,6,0,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; justify-content: flex-start; padding: 32px 24px;
    gap: 24px; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .navbar .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }

  /* SECTION PADDING */
  .nosotros, .productos, .despacho, .distribucion,
  .promociones, .testimonios, .contacto { padding: 80px 0; }
  .el-origen { padding: 80px 0 0; }
  .origen-container { padding: 0 20px 60px; }

  /* HERO */
  .hero-parallax { padding: 90px 24px 48px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .hero-badge { font-size: 0.7rem; }
  .hero-visual-mobile { max-width: 200px; margin-bottom: 24px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero-desc { font-size: 0.95rem; margin-bottom: 24px; }

  /* NOSOTROS */
  .img-3d-frame { transform: none !important; }
  .nosotros-img-wrap { overflow: visible; padding-bottom: 36px; }
  .badge-artesanal {
    position: static;
    display: inline-flex;
    margin-top: 16px;
    font-size: 0.78rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }
  .valores-grid { grid-template-columns: 1fr; }

  /* PRODUCTS */
  .products-grid { grid-template-columns: 1fr; }
  .product-card:hover { transform: translateY(-5px); }
  .product-card { transform-style: flat; }

  /* DESPACHO */
  .despacho-steps { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .despacho-cta { flex-direction: column; text-align: center; padding: 28px 20px; }

  /* DISTRIBUCION */
  .dist-grid { grid-template-columns: 1fr; }
  .dist-grid .dist-card:last-child { grid-column: auto; max-width: 100%; }
  .dist-cta { padding: 28px 20px; }

  /* GAMIFICACION */
  .gamification-wrap { grid-template-columns: 1fr; }
  .wheel-section { overflow: hidden; }
  .wheel-wrap { display: flex; justify-content: center; }
  .spin-btn { font-size: 0.85rem; padding: 12px 20px; }
  .promos-grid { grid-template-columns: 1fr; }
  .promo-card { padding: 24px 18px; }

  /* TESTIMONIOS */
  .testimonios { padding: 60px 0; }
  .testi-card { flex: 0 0 calc(100vw - 48px); min-width: unset; max-width: calc(100vw - 48px); padding: 24px 20px; }
  .testimonios-slider { margin: 0; }
  .testi-cta { margin-top: 28px; }

  /* CONTACTO */
  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-form { padding: 24px 20px; }
  .quick-btns { gap: 6px; }
  .quick-btn { font-size: 0.75rem; padding: 7px 12px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 60px 0 40px; }

  /* MISC */
  .chatbot-box { width: calc(100vw - 48px); right: 0; }
  .cheese-orbit { display: none; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 24px; right: 16px; bottom: 88px; }
  .chatbot-wrap { right: 16px; bottom: 16px; }
  .chatbot-toggle { width: 52px; height: 52px; font-size: 1.3rem; }
  .quote-mark { font-size: 4.5rem; }
  .origen-stat-strip { padding: 14px 16px; gap: 4px; }
  .os-num { font-size: 1.2rem; }
}

/* EXTRA SMALL (< 390px) */
@media (max-width: 390px) {
  .hero-title { font-size: 2.2rem; }
  .stat-num { font-size: 1.5rem; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .section-title { font-size: 1.75rem; }
  .loader-logo { letter-spacing: 2px; }
}
