/* ==========================================================================
   GRANILOKO - ESTILOS PRINCIPALES
   "El único con los toppings más locos | Granizados que te mueven"
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- VARIABLES Y DESIGN SYSTEM --- */
:root {
  /* Colores Principales de Marca */
  --color-brand-pink: #FF007F;
  --color-brand-pink-glow: rgba(255, 0, 127, 0.45);
  --color-brand-cyan: #00F2FE;
  --color-brand-cyan-glow: rgba(0, 242, 254, 0.45);
  --color-brand-blue: #0072FF;
  
  /* Mundos de Sabores */
  --mundo-acido: #9DFF00;
  --mundo-acido-glow: rgba(157, 255, 0, 0.45);
  --mundo-acido-orange: #FF8800;
  
  --mundo-dulce: #FF2A85;
  --mundo-dulce-glow: rgba(255, 42, 133, 0.45);
  --mundo-dulce-purple: #A855F7;
  
  --mundo-crema: #F59E0B;
  --mundo-crema-glow: rgba(245, 158, 11, 0.45);
  --mundo-crema-light: #FEF3C7;
  --mundo-crema-dark: #B45309;

  /* Fondos y Superficies (Dark Cosmic Theme) */
  --bg-dark: #090714;
  --bg-card: rgba(23, 18, 38, 0.7);
  --bg-card-hover: rgba(33, 26, 56, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-border: rgba(255, 255, 255, 0.1);
  --bg-glass-border-hover: rgba(255, 0, 127, 0.5);
  
  /* Tipografía */
  --font-display: 'Outfit', sans-serif;
  --font-fun: 'Fredoka', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Textos */
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  
  /* UI Helpers */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-neon-pink: 0 0 25px rgba(255, 0, 127, 0.5);
  --shadow-neon-cyan: 0 0 25px rgba(0, 242, 254, 0.5);
  --shadow-card: 0 15px 35px -5px rgba(0, 0, 0, 0.6);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Fondo con efecto de degradados ambientales neón */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.18) 0%, rgba(255, 0, 127, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px;
  right: -150px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0, 242, 254, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(90px);
}

img, picture, svg, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- UTILIDADES DE TEXTO Y EFECTOS --- */
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, #FF007F 70%, #00F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #FF66C4 0%, #FF007F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00F2FE 0%, #0072FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-lime {
  background: linear-gradient(135deg, #E4FF94 0%, #9DFF00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-fun);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 1rem;
  line-height: 1.15;
}

.section-desc {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 680px;
  margin: 0 auto;
}

/* --- BOTONES MODERNOS & CTA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #FF007F 0%, #E60067 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 0, 127, 0.6);
}

.btn-cyan {
  background: linear-gradient(135deg, #00F2FE 0%, #0072FF 100%);
  color: #06050C;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-cyan:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   HEADER & NAVEGACIÓN
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.65rem 0;
  background: rgba(9, 7, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 18px var(--color-brand-pink-glow);
  transition: var(--transition-bounce);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 25px var(--color-brand-pink);
}

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.brand-logo-text span {
  color: var(--color-brand-pink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-fun);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand-pink), var(--color-brand-cyan));
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.mobile-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-fast);
}

.mobile-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: rgba(14, 10, 29, 0.96);
  backdrop-filter: blur(25px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-fun);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-brand-cyan);
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  color: var(--color-brand-cyan);
  border-color: rgba(0, 242, 254, 0.35);
  margin-bottom: 1.5rem;
  background: rgba(0, 242, 254, 0.08);
}

.hero-badge i {
  color: #FFD700;
  animation: pulse-icon 1.5s infinite alternate;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .highlight-pink {
  color: var(--color-brand-pink);
  text-shadow: 0 0 30px rgba(255, 0, 127, 0.5);
  display: inline-block;
  position: relative;
}

.hero-title .highlight-cyan {
  color: var(--color-brand-cyan);
  text-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.75rem;
}

.hero-features-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-fun);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-feature-item i {
  color: var(--color-brand-cyan);
  font-size: 1.1rem;
}

/* Hero Visual Composition */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
}

.hero-halo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.4) 0%, rgba(0, 242, 254, 0.25) 45%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float-pulse 5s ease-in-out infinite alternate;
}

.hero-main-cup {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 0, 127, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s ease;
  transform: rotate(-2deg);
}

.hero-main-cup:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Floating Callout Badges */
.floating-tag {
  position: absolute;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(15, 12, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-fun);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 5;
  animation: float-slow 4s ease-in-out infinite alternate;
}

.floating-tag.tag-top-left {
  top: 5%;
  left: -12%;
  border-color: rgba(0, 242, 254, 0.6);
  animation-delay: 0s;
}

.floating-tag.tag-top-right {
  top: 8%;
  right: -10%;
  border-color: rgba(255, 0, 127, 0.6);
  animation-delay: 1.5s;
}

.floating-tag.tag-mid-right {
  top: 52%;
  right: -14%;
  border-color: rgba(245, 158, 11, 0.6);
  animation-delay: 0.8s;
}

.floating-tag.tag-bottom-left {
  bottom: 12%;
  left: -10%;
  border-color: rgba(157, 255, 0, 0.6);
  animation-delay: 2.2s;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-cyan { background: var(--color-brand-cyan); box-shadow: 0 0 8px var(--color-brand-cyan); }
.dot-pink { background: var(--color-brand-pink); box-shadow: 0 0 8px var(--color-brand-pink); }
.dot-gold { background: var(--mundo-crema); box-shadow: 0 0 8px var(--mundo-crema); }
.dot-lime { background: var(--mundo-acido); box-shadow: 0 0 8px var(--mundo-acido); }

/* Floating Stat Pill */
.hero-stat-pill {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 15, 40, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.hero-stat-pill .stars {
  color: #FFB800;
  font-size: 0.85rem;
}

.hero-stat-pill span {
  font-family: var(--font-fun);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   TICKER BANNER (MARQUEE DE IMPACTO)
   ========================================================================== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #FF007F, #8F00FF, #00F2FE, #FF007F);
  background-size: 300% 100%;
  animation: gradient-shift 8s ease infinite;
  padding: 0.85rem 0;
  transform: rotate(-1.5deg) scale(1.02);
  margin: 2rem 0 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-slide 22s linear infinite;
  gap: 2.5rem;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ticker-item span.icon {
  font-size: 1.25rem;
}

/* ==========================================================================
   SECCIÓN: LOS TRES MUNDOS (NUESTROS LOKOS)
   ========================================================================== */
.mundos-section {
  padding: 6rem 0;
  position: relative;
}

/* Filtros por pestaña */
.universe-tabs {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.universe-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-fun);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.universe-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.universe-tab-btn.active {
  background: #FFFFFF;
  color: #090714;
  border-color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
  transform: translateY(-2px) scale(1.02);
}

.universe-tab-btn.tab-acido.active {
  background: var(--mundo-acido);
  color: #090714;
  box-shadow: 0 6px 20px var(--mundo-acido-glow);
  border-color: var(--mundo-acido);
}

.universe-tab-btn.tab-dulce.active {
  background: var(--color-brand-pink);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--color-brand-pink-glow);
  border-color: var(--color-brand-pink);
}

.universe-tab-btn.tab-crema.active {
  background: var(--mundo-crema);
  color: #090714;
  box-shadow: 0 6px 20px var(--mundo-crema-glow);
  border-color: var(--mundo-crema);
}

/* Grid de Tarjetas de Sabores */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
  position: relative;
  backdrop-filter: blur(12px);
}

.product-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

/* Bordes activos según mundo */
.product-card[data-world="acido"]:hover {
  border-color: rgba(157, 255, 0, 0.6);
  box-shadow: 0 15px 35px rgba(157, 255, 0, 0.18);
}

.product-card[data-world="dulce"]:hover {
  border-color: rgba(255, 0, 127, 0.6);
  box-shadow: 0 15px 35px rgba(255, 0, 127, 0.2);
}

.product-card[data-world="crema"]:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
}

.product-image-box {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #110d24;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge-world {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-fun);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.badge-acido {
  background: var(--mundo-acido);
  color: #090714;
}

.badge-dulce {
  background: var(--color-brand-pink);
  color: #FFFFFF;
}

.badge-crema {
  background: var(--mundo-crema);
  color: #090714;
}

.product-badge-flagship {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(9, 7, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFD700;
  font-family: var(--font-fun);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Medidores de Sabor (Gauges) */
.product-gauges {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gauge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-family: var(--font-fun);
}

.gauge-label {
  color: var(--text-muted);
  min-width: 75px;
}

.gauge-bar-track {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.gauge-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
}

.fill-acido { background: linear-gradient(90deg, #9DFF00, #E4FF94); }
.fill-dulce { background: linear-gradient(90deg, #FF007F, #FF88C2); }
.fill-crema { background: linear-gradient(90deg, #F59E0B, #FEF3C7); }

.gauge-val {
  color: var(--text-secondary);
  min-width: 32px;
  text-align: right;
  font-weight: 600;
}

/* Toppings list pill tags */
.product-toppings-wrap {
  margin-bottom: 1.5rem;
}

.toppings-title {
  font-family: var(--font-fun);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  letter-spacing: 0.05em;
}

.toppings-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.topping-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.product-footer-actions {
  display: flex;
  gap: 0.75rem;
}

.product-btn-order {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.9rem;
}

.product-btn-customize {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   EXPERIENCIA INTERACTIVA: "CREA TU LOCURA" (SLUSHIE BUILDER)
   ========================================================================== */
.crea-locura-section {
  padding: 6.5rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(26, 18, 50, 0.8) 0%, rgba(9, 7, 20, 1) 75%);
}

.crea-locura-wrapper {
  background: rgba(18, 14, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

/* Pasos del Constructor */
.builder-steps-panel {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.step-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand-pink);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: var(--font-fun);
  font-weight: 700;
}

/* Opciones seleccionables tipo Card / Chips */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

.builder-option-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.65rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.builder-option-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.builder-option-card.selected {
  background: rgba(255, 0, 127, 0.15);
  border-color: var(--color-brand-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.35);
  transform: translateY(-2px);
}

.builder-option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand-pink);
  color: #FFFFFF;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.option-icon {
  font-size: 1.6rem;
}

.option-name {
  font-family: var(--font-fun);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.option-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Opciones de Toppings (Multi-selección) */
.toppings-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.topping-select-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.topping-select-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.topping-select-card.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--color-brand-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.topping-select-card.active::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand-cyan);
  color: #090714;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Panel de Vista Previa en Vivo (Live Cup Preview) */
.builder-preview-panel {
  position: sticky;
  top: 6rem;
  background: rgba(14, 10, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.preview-badge-status {
  font-family: var(--font-fun);
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 0, 127, 0.15);
  color: var(--color-brand-pink);
  border: 1px solid rgba(255, 0, 127, 0.35);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contenedor Visual del Vaso Graniloko Interactivo */
.interactive-cup-stage {
  position: relative;
  width: 220px;
  height: 310px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* Capas del vaso */
.cup-outer {
  position: relative;
  width: 160px;
  height: 240px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0 0 35px 35px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top: none;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

/* Borde escarchado superior */
.cup-rim-frosting {
  position: absolute;
  top: 65px;
  width: 172px;
  height: 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: 2px dashed rgba(255, 255, 255, 0.6);
  z-index: 10;
  transition: var(--transition-smooth);
}

.cup-rim-frosting.rim-chamoy {
  background: #C41C1C;
  border-color: #FF8800;
  box-shadow: 0 0 10px rgba(196, 28, 28, 0.8);
}

.cup-rim-frosting.rim-arequipe {
  background: #B45309;
  border-color: #F59E0B;
  box-shadow: 0 0 10px rgba(180, 83, 9, 0.8);
}

.cup-rim-frosting.rim-limon {
  background: #9DFF00;
  border-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(157, 255, 0, 0.8);
}

/* Líquido/Granizado interior */
.cup-liquid-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background: linear-gradient(180deg, #FF66C4 0%, #FF007F 100%);
  border-radius: 0 0 30px 30px;
  transition: all 0.5s ease;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

/* Textura de microhielo */
.cup-liquid-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.5;
}

/* Capa de crema / corona */
.cup-cream-layer {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 155px;
  height: 65px;
  background: #FFFBEB;
  border-radius: 50px 50px 20px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
  transition: all 0.4s ease;
}

/* Salsa vertida sobre la crema */
.cream-drizzle {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 100%;
  background: transparent;
  z-index: 6;
  border-radius: 50px;
}

.cream-drizzle.drizzle-arequipe {
  background: radial-gradient(ellipse at center top, #B45309 30%, transparent 70%);
}

.cream-drizzle.drizzle-chamoy {
  background: radial-gradient(ellipse at center top, #C41C1C 35%, transparent 70%);
}

.cream-drizzle.drizzle-frutos-rojos {
  background: radial-gradient(ellipse at center top, #9D174D 35%, transparent 70%);
}

.cream-drizzle.drizzle-nutella {
  background: radial-gradient(ellipse at center top, #381E11 40%, transparent 70%);
}

/* Contenedor de Toppings flotantes sobre el vaso */
.cup-toppings-scatter {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 50px;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.topping-visual-particle {
  font-size: 1.15rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
  animation: bounce-gentle 2s ease-in-out infinite alternate;
}

/* Pitillo */
.cup-straw {
  position: absolute;
  top: -15px;
  right: 25px;
  width: 16px;
  height: 190px;
  background: repeating-linear-gradient(
    45deg,
    #00F2FE,
    #00F2FE 10px,
    #FFFFFF 10px,
    #FFFFFF 20px
  );
  border-radius: 8px;
  transform: rotate(15deg);
  z-index: 4;
  box-shadow: -3px 5px 12px rgba(0,0,0,0.4);
}

/* Logo en el vaso */
.cup-badge-logo {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--color-brand-pink);
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.6);
  z-index: 7;
  overflow: hidden;
}

.cup-badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Receta y Resumen en Panel */
.builder-summary-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.summary-heading {
  font-family: var(--font-fun);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.45rem;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.summary-item strong {
  color: #FFFFFF;
}

.builder-cta-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.builder-btn-order {
  width: 100%;
}

.builder-random-btn {
  background: transparent;
  color: var(--color-brand-cyan);
  font-family: var(--font-fun);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem;
  transition: var(--transition-fast);
}

.builder-random-btn:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   SECCIÓN: POR QUÉ GRANILOKO (PILARES)
   ========================================================================== */
.pillars-section {
  padding: 6rem 0;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
  backdrop-filter: blur(12px);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.pillar-card:nth-child(1) .pillar-icon-box { background: rgba(0, 242, 254, 0.15); color: var(--color-brand-cyan); }
.pillar-card:nth-child(2) .pillar-icon-box { background: rgba(255, 0, 127, 0.15); color: var(--color-brand-pink); }
.pillar-card:nth-child(3) .pillar-icon-box { background: rgba(157, 255, 0, 0.15); color: var(--mundo-acido); }
.pillar-card:nth-child(4) .pillar-icon-box { background: rgba(245, 158, 11, 0.15); color: var(--mundo-crema); }

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   SECCIÓN: HISTORIA / MANIFIESTO GRANILOKO
   ========================================================================== */
.history-section {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.history-image-composition {
  position: relative;
}

.history-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.history-card-stat {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: rgba(18, 14, 34, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 0, 127, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.history-card-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-brand-pink);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.history-card-stat .stat-text {
  font-family: var(--font-fun);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.history-quote-box {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--color-brand-cyan);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
  font-family: var(--font-fun);
  font-size: 1.1rem;
  font-style: italic;
  color: #FFFFFF;
}

/* ==========================================================================
   SECCIÓN: GRANILOKO PARA EVENTOS & PUNTOS DE VENTA
   ========================================================================== */
.events-places-section {
  padding: 6rem 0;
  position: relative;
}

.events-banner-box {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.15) 0%, rgba(0, 242, 254, 0.12) 100%), var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.events-banner-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.events-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.events-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.events-feature-item i {
  color: var(--color-brand-cyan);
}

/* Formulario express de cotización de eventos */
.event-quote-card {
  background: rgba(14, 10, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.event-quote-title {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
  color: #FFFFFF;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-input, .form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--color-brand-pink);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.form-select option {
  background: #0e0a1a;
  color: #FFFFFF;
}

/* Puntos de Venta Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition-bounce);
  backdrop-filter: blur(12px);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-brand-cyan);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(0, 242, 254, 0.15);
  color: var(--color-brand-cyan);
  font-family: var(--font-fun);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.location-detail i {
  color: var(--color-brand-pink);
  margin-top: 0.2rem;
}

.location-btn-map {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.65rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   SECCIÓN: SOCIAL WALL & RESEÑAS
   ========================================================================== */
.social-section {
  padding: 6rem 0;
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-bounce);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-card);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 1.1rem;
  background: #17112c;
}

.review-author {
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 0.95rem;
}

.review-social-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  color: #FFB800;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  font-style: italic;
}

/* Redes CTA Banner */
.social-cta-banner {
  background: radial-gradient(circle at center, rgba(255, 0, 127, 0.2) 0%, rgba(14, 10, 26, 0.95) 75%);
  border: 1px solid rgba(255, 0, 127, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.social-cta-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.social-cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-pill-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-fun);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  transition: var(--transition-bounce);
}

.social-pill-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.social-pill-btn.btn-ig:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-color: transparent;
}

.social-pill-btn.btn-tk:hover {
  background: #000000;
  border-color: var(--color-brand-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.social-pill-btn.btn-wa:hover {
  background: #25D366;
  border-color: transparent;
  color: #FFFFFF;
}

/* ==========================================================================
   SECCIÓN: FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(255, 0, 127, 0.4);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-fun);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--color-brand-cyan);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--color-brand-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #06040d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 1.25rem 0 1.5rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-brand-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLOATING ELEMENTS (WHATSAPP, SCROLL-TOP, LIVE TOAST)
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-bounce);
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

.floating-wa-btn .wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse-anim 2s infinite;
  pointer-events: none;
}

.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--color-brand-pink);
  transform: translateY(-3px);
}

/* Toast de compras en vivo (UGC / Prueba Social) */
.live-sales-toast {
  position: fixed;
  bottom: 95px;
  left: 25px;
  background: rgba(18, 14, 34, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  z-index: 950;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
}

.live-sales-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-cup-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-brand-pink);
}

.toast-text {
  font-size: 0.8rem;
  line-height: 1.3;
}

.toast-text strong {
  color: #FFFFFF;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes float-pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes bounce-gentle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-icon {
  0% { transform: scale(1); }
  100% { transform: scale(1.25); }
}

@keyframes wa-pulse-anim {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Reveal on scroll helper classes */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST MINDSET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features-bar {
    justify-content: center;
  }
  
  .builder-grid {
    grid-template-columns: 1fr;
  }
  
  .builder-preview-panel {
    position: static;
    order: -1;
    margin-bottom: 2rem;
  }
  
  .history-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .events-banner-box {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-toggle-btn {
    display: flex;
  }
  
  .hero-section {
    padding-top: 6.5rem;
  }
  
  .floating-tag {
    display: none; /* Simplificado para móviles para evitar desbordes */
  }
  
  .hero-image-wrapper {
    max-width: 320px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .toppings-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .live-sales-toast {
    display: none; /* Ocultar en celular para no tapar contenido */
  }
}

@media (max-width: 480px) {
  .crea-locura-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .events-banner-box {
    padding: 1.75rem 1.25rem;
  }
}
