/* ═══════════════════════════════════════
   EL SUR EN LÍNEA — Estilos principales
   ═══════════════════════════════════════ */

:root {
  --azul: #1a5cff;
  --azul-claro: #3d78ff;
  --azul-suave: #e8eeff;
  --amarillo: #f5c800;
  --amarillo-claro: #ffe566;
  --fondo: #f4f6ff;
  --navy: #0a1a4a;
  --gris: #5a6a8a;
  --blanco: #ffffff;
  --sombra: 0 8px 32px rgba(26,92,255,0.15);
  --radio: 18px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--fondo);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── BARRA SUPERIOR ── */
.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.topbar span { margin: 0 14px; }
.topbar a { color: var(--amarillo); text-decoration: none; font-weight: 600; }

/* ── NAVBAR ── */
nav {
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #0a1a4a, #2e3a6e);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; overflow: hidden;
}
.logo-text { line-height: 1.15; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); font-weight: 900; }
.logo-text .sub { font-size: 11px; color: var(--gris); font-weight: 400; letter-spacing: 0.5px; }

.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--navy);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 30px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--azul-suave); color: var(--azul); }
.nav-links .envio-gratis a {
  background: linear-gradient(135deg, var(--amarillo), #e8b800);
  color: var(--navy); font-weight: 700;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-wa-nav {
  background: #25D366; color: #fff;
  text-decoration: none; padding: 8px 16px;
  border-radius: 30px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: transform .2s;
}
.btn-wa-nav:hover { transform: scale(1.04); }
.cart-btn {
  background: var(--azul-suave); border: none; border-radius: 30px;
  padding: 8px 16px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--azul);
  position: relative; transition: all .2s;
}
.cart-btn:hover { background: var(--azul); color: #fff; }
.cart-count {
  background: var(--amarillo); color: var(--navy);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ── */
.hero {
  background: radial-gradient(ellipse at 20% 50%, #1a3ab8 0%, #1247e0 30%, #1a5cff 55%, #2d6bff 80%, #4a7dff 100%);
  min-height: 92vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 80px 40px 60px; text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 4s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .5; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: .15; }
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-blob.b1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f5c800 0%, transparent 70%);
  opacity: 0.12; top: -200px; right: -150px;
  animation: blobFloat 7s ease-in-out infinite;
}
.hero-blob.b2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a0c0ff 0%, transparent 70%);
  opacity: 0.15; bottom: -100px; left: -100px;
  animation: blobFloat 9s ease-in-out infinite reverse;
}
.hero-blob.b3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  opacity: 0.07; top: 30%; right: 20%;
  animation: blobFloat 6s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute; width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,0,0.18); border: 1px solid rgba(245,200,0,0.55);
  color: #ffe566; padding: 8px 20px; border-radius: 30px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
  animation: fadeUp .6s ease forwards; backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: #fff; line-height: 1.1; margin-bottom: 22px;
  animation: fadeUp .7s .1s ease both; letter-spacing: -1px;
}
.hero h1 em { color: var(--amarillo); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.78); font-size: 18px;
  line-height: 1.75; margin-bottom: 40px; max-width: 560px;
  animation: fadeUp .7s .2s ease both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .7s .3s ease both; margin-bottom: 60px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amarillo), #e8b800);
  color: var(--navy); text-decoration: none;
  padding: 16px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 800;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 30px rgba(245,200,0,0.45);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,200,0,0.6); }
.btn-outline {
  background: rgba(255,255,255,0.1); color: #fff;
  text-decoration: none; padding: 16px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all .2s; cursor: pointer; backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.hero-stats {
  display: flex; gap: 0;
  animation: fadeUp .7s .4s ease both;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px; padding: 20px 10px; margin-bottom: 50px;
}
.hero-stat { flex: 1; text-align: center; padding: 0 28px; position: relative; }
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--amarillo); display: block; line-height: 1;
}
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 5px; display: block; font-weight: 500; }
.hero-cards { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeUp .8s .5s ease both; position: relative; z-index: 3; }
.hero-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px; padding: 16px 22px; color: #fff;
  display: flex; align-items: center; gap: 14px; min-width: 200px;
  transition: background .2s, transform .2s;
}
.hero-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.hero-card .hc-icon {
  font-size: 28px; background: rgba(255,255,255,0.15);
  border-radius: 10px; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card .hc-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.hero-card .hc-sub { font-size: 12px; opacity: .65; }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px;
  animation: fadeUp 1s 1s ease both; z-index: 3;
}
.hero-scroll-dot {
  width: 20px; height: 34px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px; display: flex; justify-content: center; padding-top: 5px;
}
.hero-scroll-dot::after {
  content: ''; width: 4px; height: 8px;
  background: rgba(255,255,255,0.5); border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .3; }
}

/* ── ASESORAS ── */
.asesoras {
  background: var(--azul); padding: 32px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 30px; flex-wrap: wrap;
}
.asesoras-title { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }
.asesor-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 10px 20px 10px 12px;
  text-decoration: none; transition: all .2s;
}
.asesor-card:hover { background: rgba(255,255,255,0.25); transform: scale(1.03); }
.asesor-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #25D366, #128c7e);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.asesor-info .name { color: #fff; font-size: 14px; font-weight: 700; }
.asesor-info .role { color: rgba(255,255,255,0.7); font-size: 12px; }

/* ── SECCIONES ── */
.section { padding: 70px 40px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
  display: inline-block; background: var(--azul-suave); color: var(--azul);
  padding: 5px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 700; margin-bottom: 12px;
  border: 1px solid rgba(26,92,255,0.2);
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); line-height: 1.25;
}
.section-header p { color: var(--gris); font-size: 16px; margin-top: 10px; }

/* ── CATEGORÍAS ── */
.categorias-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.cat-card {
  background: var(--blanco); border-radius: var(--radio);
  padding: 28px 20px; text-align: center; text-decoration: none;
  transition: all .25s; border: 2px solid transparent;
  cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.cat-card:hover { border-color: var(--azul-claro); transform: translateY(-4px); box-shadow: var(--sombra); }
.cat-icon { font-size: 36px; margin-bottom: 12px; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.cat-count { font-size: 12px; color: var(--gris); margin-top: 4px; }

/* ── PRODUCTOS ── */
.productos-section { background: var(--blanco); }
.productos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; max-width: 1200px; margin: 0 auto; }
.producto-card {
  background: var(--fondo); border-radius: var(--radio);
  overflow: hidden; transition: all .3s;
  border: 1px solid #dde4f0; position: relative;
}
.producto-card:hover { box-shadow: var(--sombra); transform: translateY(-5px); }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; z-index: 2;
}
.prod-badge.envio { background: var(--azul); color: #fff; }
.prod-badge.oferta { background: #e74c3c; color: #fff; }
.prod-img {
  width: 100%; height: 200px; background: #e8eeff;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; overflow: hidden;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.producto-card:hover .prod-img img { transform: scale(1.05); }
.prod-body { padding: 18px; }
.prod-cat { font-size: 11px; color: var(--azul); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.prod-name { font-size: 15px; font-weight: 600; margin: 5px 0 8px; line-height: 1.4; color: var(--navy); }
.prod-desc { font-size: 13px; color: var(--gris); line-height: 1.5; margin-bottom: 14px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.prod-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--azul); }
.prod-price .old { font-size: 13px; color: #aaa; text-decoration: line-through; font-family: 'DM Sans', sans-serif; font-weight: 400; display: block; }
.btn-add {
  background: var(--azul); color: #fff; border: none;
  border-radius: 12px; padding: 10px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.btn-add:hover { background: var(--navy); transform: scale(1.05); }
.btn-add.added { background: var(--amarillo); color: var(--navy); }

/* ── BENEFICIOS ── */
.beneficios { background: linear-gradient(135deg, #0a1a4a 0%, #0d2a80 100%); padding: 60px 40px; }
.beneficios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.bene-card {
  text-align: center; color: #fff; padding: 30px 20px;
  border-radius: var(--radio); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); transition: background .2s;
}
.bene-card:hover { background: rgba(255,255,255,0.1); }
.bene-icon { font-size: 36px; margin-bottom: 14px; }
.bene-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.bene-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── TESTIMONIOS ── */
.testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.test-card {
  background: var(--blanco); border-radius: var(--radio);
  padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #dde4f0;
}
.stars { color: var(--amarillo); font-size: 18px; margin-bottom: 14px; }
.test-text { font-size: 15px; color: var(--navy); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.test-name { font-weight: 600; font-size: 14px; }
.test-city { font-size: 12px; color: var(--gris); }

/* ── CTA WHATSAPP ── */
.cta-wa {
  background: linear-gradient(135deg, #0a1a4a, #1a5cff);
  padding: 70px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-wa::before {
  content: '💬'; position: absolute;
  font-size: 200px; opacity: .05; top: -30px; right: -30px;
}
.cta-wa h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 14px; }
.cta-wa p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.wa-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  background: #25D366; color: #fff; text-decoration: none;
  padding: 15px 30px; border-radius: var(--radio);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all .2s; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-wa .wa-asesor { font-size: 12px; font-weight: 400; opacity: .85; display: block; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 40px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, #1a1a2e, #2e3a6e); border-radius: 10px; overflow: hidden; }
.footer-brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 18px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 18px; transition: background .2s;
}
.social-link:hover { background: var(--azul); }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--azul-claro); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 13px; max-width: 1200px; margin: 0 auto; }

/* ── CARRITO LATERAL ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--blanco); z-index: 2001;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 50px rgba(0,0,0,0.15);
}
.cart-panel.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.cart-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.cart-close { background: #f0f0f0; border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cart-close:hover { background: #ddd; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gris); }
.cart-empty-icon { font-size: 60px; margin-bottom: 16px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item-img { width: 72px; height: 72px; border-radius: 12px; background: var(--azul-suave); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; overflow: hidden; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--azul); }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; background: var(--azul-suave); border: none; border-radius: 8px; font-size: 16px; cursor: pointer; color: var(--azul); font-weight: 600; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--azul); color: #fff; }
.qty-num { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { margin-left: auto; background: none; border: none; cursor: pointer; color: #ccc; font-size: 18px; transition: color .2s; }
.cart-item-remove:hover { color: #e74c3c; }
.cart-footer { padding: 20px 24px; border-top: 1px solid #eee; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.cart-envio { display: flex; justify-content: space-between; font-size: 13px; color: var(--gris); margin-bottom: 14px; }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; border-top: 2px solid #f0f0f0; padding-top: 14px; margin-bottom: 16px; }
.cart-total .amount { font-family: 'Playfair Display', serif; color: var(--azul); }
.asesora-select { margin-bottom: 14px; }
.asesora-select label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; color: var(--navy); }
.asesora-options { display: flex; gap: 10px; }
.asesora-opt { flex: 1; border: 2px solid #e0e0e0; border-radius: 12px; padding: 10px 12px; cursor: pointer; text-align: center; transition: all .2s; font-size: 13px; }
.asesora-opt.selected { border-color: #25D366; background: #f0fff5; }
.asesora-opt .opt-name { font-weight: 600; color: var(--navy); }
.asesora-opt .opt-num { font-size: 11px; color: var(--gris); }
.btn-pedido-wa { background: #25D366; color: #fff; border: none; border-radius: var(--radio); padding: 15px; width: 100%; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .2s; }
.btn-pedido-wa:hover { background: #1da851; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 3000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 24px; padding: 36px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: modalIn .3s ease; }
@keyframes modalIn { from { opacity:0; transform: scale(.9) } to { opacity:1; transform: scale(1) } }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; }
.modal p { color: var(--gris); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 2px solid #e0e0e0; border-radius: 12px; font-size: 14px; font-family: inherit; transition: border-color .2s; background: #fafafa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--azul); background: #fff; }
.modal-btns { display: flex; gap: 12px; margin-top: 24px; }
.btn-cancel { flex: 1; padding: 13px; border: 2px solid #e0e0e0; border-radius: var(--radio); background: none; cursor: pointer; font-size: 14px; font-weight: 600; transition: all .2s; }
.btn-cancel:hover { background: #f5f5f5; }
.btn-confirmar { flex: 2; padding: 13px; background: #25D366; color: #fff; border: none; border-radius: var(--radio); cursor: pointer; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; }
.btn-confirmar:hover { background: #1da851; }

/* ── WA FLOTANTE ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-float-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform .2s; border: none; }
.wa-float-btn:hover { transform: scale(1.1); }
.wa-float-menu { display: none; flex-direction: column; gap: 8px; }
.wa-float-menu.open { display: flex; }
.wa-float-option { background: #fff; border-radius: 50px; padding: 10px 18px 10px 14px; display: flex; align-items: center; gap: 10px; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: transform .2s; animation: fadeUp .2s ease; }
.wa-float-option:hover { transform: scale(1.04); }
.wa-float-option .opt-ava { width: 34px; height: 34px; background: linear-gradient(135deg, #25D366, #128c7e); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.wa-float-option .opt-info .opt-n { font-size: 13px; font-weight: 600; color: var(--navy); }
.wa-float-option .opt-info .opt-r { font-size: 11px; color: var(--gris); }

/* ── TIENDA ── */
.tienda-page { display: none; }
.page-active { display: block; }
.tienda-header { background: linear-gradient(135deg, var(--navy), var(--azul)); padding: 50px 40px 30px; color: #fff; }
.tienda-header h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 10px; }
.tienda-header p { opacity: .8; font-size: 15px; }
.tienda-filtros { display: flex; gap: 10px; flex-wrap: wrap; padding: 24px 40px; background: var(--blanco); border-bottom: 1px solid #eee; position: sticky; top: 72px; z-index: 100; }
.filtro-btn { background: var(--fondo); border: 2px solid #dde4f0; border-radius: 30px; padding: 8px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--navy); }
.filtro-btn:hover, .filtro-btn.active { background: var(--azul); color: #fff; border-color: var(--azul); }
.tienda-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; padding: 36px 40px; max-width: 1300px; margin: 0 auto; }

/* ── ANIMACIONES ── */
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform: translateX(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 50px 24px; }
  .hero-cards { flex-direction: column; align-items: center; }
  .section { padding: 50px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .asesoras { padding: 24px; flex-direction: column; align-items: flex-start; }
  .beneficios { padding: 50px 24px; }
  .tienda-filtros { padding: 16px 20px; }
  .tienda-grid { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; }
  .cart-panel { width: 100vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .asesora-options { flex-direction: column; }
}
