/* =========================================
   1. VARIABLES Y RESET
   ========================================= */
   @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

   :root {
       --bg-white: #ffffff;
       --bg-light: #f9f9f9; /* Gris muy clarito para diferenciar secciones */
       --text-dark: #333333;
       --text-grey: #666666;
       --brand-pink: #D85E92; /* Tu color de marca */
       --brand-purple: #800080;
       --whatsapp-green: #25D366;
   }
   
   * { margin: 0; padding: 0; box-sizing: border-box; }
   
   body {
       font-family: 'Quicksand', sans-serif;
       background-color: var(--bg-white);
       color: var(--text-dark);
   }
   
   /* =========================================
      2. HEADER Y NAVEGACIÓN
      ========================================= */
   header {
       background-color: rgba(255, 255, 255, 0.98);
       padding: 15px 5%;
       display: flex;
       justify-content: space-between;
       align-items: center;
       position: sticky;
       top: 0;
       z-index: 1000;
       box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   }
   
   .logo-container {
       display: flex;
       align-items: center;
       gap: 12px;
   }
   
   .logo-img {
       width: 60px;
       height: 60px;
       border-radius: 50%;
       object-fit: cover;
       border: 2px solid var(--brand-pink);
       padding: 2px;
   }
   
   .brand-name {
       font-size: 1.4rem;
       font-weight: 700;
       color: var(--text-dark);
       letter-spacing: 0.5px;
   }
   
   /* Menú de Escritorio */
   nav ul {
       display: flex;
       list-style: none;
       gap: 30px;
   }
   
   nav a {
       text-decoration: none;
       color: var(--text-grey);
       font-weight: 600;
       font-size: 1rem;
       transition: color 0.3s;
       text-transform: uppercase;
       font-size: 0.9rem;
       letter-spacing: 1px;
   }
   
   nav a:hover, nav a.activo {
       color: var(--brand-pink);
   }
   
   /* Botón Menú Móvil (Oculto en PC) */
   .menu-toggle {
       display: none;
       font-size: 1.8rem;
       cursor: pointer;
       color: var(--brand-pink);
       background: none;
       border: none;
   }
   
   /* =========================================
      3. HEROS (PORTADAS DE CADA PÁGINA)
      ========================================= */
   
   /* A. Hero Estándar (Catálogo) */
   .hero {
       background-color: var(--bg-light);
       padding: 80px 20px;
       text-align: center;
       border-bottom: 1px solid #eee;
   }
   
   .hero h1 {
       font-size: 2.5rem;
       color: var(--text-dark);
       margin-bottom: 15px;
   }
   
   .hero p {
       color: var(--text-grey);
       font-size: 1.1rem;
       max-width: 600px;
       margin: 0 auto 30px auto;
   }
   
   /* B. Hero "WOW" (Inicio) */
   .hero-wow {
       min-height: 85vh;
       background: linear-gradient(-45deg, #fff0f5, #f3e5f5, #e0f7fa, #fff);
       background-size: 400% 400%;
       animation: gradientBG 15s ease infinite;
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 0 5%;
       position: relative;
       overflow: hidden;
   }
   
   .hero-container {
       display: flex;
       align-items: center;
       justify-content: space-between;
       width: 100%;
       max-width: 1200px;
       z-index: 2;
   }
   
   .hero-text { flex: 1; padding-right: 50px; }
   
   .hero-badge {
       background: rgba(216, 94, 146, 0.1);
       color: var(--brand-pink);
       padding: 8px 15px;
       border-radius: 20px;
       font-weight: bold;
       font-size: 0.9rem;
       display: inline-block;
       margin-bottom: 20px;
       border: 1px solid var(--brand-pink);
   }
   
   .hero-text h1 {
       font-size: 3.5rem;
       line-height: 1.1;
       color: #333;
       margin-bottom: 20px;
   }
   
   .hero-text h1 span {
       color: var(--brand-pink);
       position: relative;
   }
   
   .hero-text h1 span::after {
       content: '';
       position: absolute;
       width: 100%;
       height: 10px;
       background: rgba(216, 94, 146, 0.3);
       bottom: 5px;
       left: 0;
       z-index: -1;
       transform: rotate(-2deg);
   }
   
   .hero-text p {
       font-size: 1.2rem;
       color: #666;
       margin-bottom: 30px;
       max-width: 500px;
   }
   
   .hero-buttons {
       display: flex;
       gap: 15px;
       flex-wrap: wrap;
   }
   
   .hero-visual {
       flex: 1;
       display: flex;
       justify-content: center;
       position: relative;
   }
   
   .hero-avatar {
       width: 400px;
       height: auto;
       filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
       animation: floating 6s ease-in-out infinite;
   }
   
   .blob-bg {
       position: absolute;
       width: 450px;
       height: 450px;
       background: radial-gradient(circle, rgba(216,94,146,0.1) 0%, rgba(255,255,255,0) 70%);
       border-radius: 50%;
       z-index: -1;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
   }
   
   .floating-icon {
       position: absolute;
       opacity: 0.1;
       font-size: 3rem;
       animation: floating 8s ease-in-out infinite;
   }
   .icon-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 4rem; transform: rotate(-15deg); }
   .icon-2 { bottom: 20%; left: 40%; animation-delay: 2s; font-size: 2.5rem; }
   .icon-3 { top: 20%; right: 10%; animation-delay: 1s; font-size: 3rem; transform: rotate(20deg); }
   .icon-4 { bottom: 10%; right: 30%; animation-delay: 3s; font-size: 5rem; }
   
   /* C. Hero About (Nosotros) */
   .about-hero {
       background-color: var(--bg-light);
       padding: 80px 20px;
       text-align: center;
   }
   
   /* D. Hero Contacto Mejorado */
   .contact-hero {
       background: linear-gradient(135deg, #fff5f8 0%, #f3e5f5 100%);
       padding: 60px 5%;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 50px;
       min-height: 300px;
       border-bottom: 1px solid rgba(0,0,0,0.05);
   }
   
   .contact-hero-content { max-width: 600px; }
   
   .contact-hero h1 {
       font-size: 2.8rem;
       color: #333;
       line-height: 1.2;
       margin-bottom: 15px;
   }
   
   .contact-hero h1 span {
       color: var(--brand-pink);
       position: relative;
       display: inline-block;
   }
   
   .contact-hero h1 span::after {
       content: '';
       position: absolute;
       bottom: 5px;
       left: 0;
       width: 100%;
       height: 8px;
       background-color: rgba(216, 94, 146, 0.2);
       transform: skewX(-15deg);
       z-index: -1;
   }
   
   .contact-hero p {
       font-size: 1.2rem;
       color: #666;
       line-height: 1.6;
   }
   
   .contact-visual {
       font-size: 8rem;
       animation: floatContact 4s ease-in-out infinite;
       filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
   }
   
   /* =========================================
      4. COMPONENTES GENERALES Y BOTONES
      ========================================= */
   .cta-button {
       background-color: var(--brand-pink);
       color: white;
       padding: 12px 35px;
       border-radius: 30px;
       text-decoration: none;
       font-weight: bold;
       transition: background 0.3s, transform 0.2s;
       display: inline-block;
   }
   
   .cta-button:hover {
       background-color: var(--brand-purple);
       transform: translateY(-2px);
   }
   
   /* Botón Flotante WhatsApp */
   .whatsapp-float {
       position: fixed;
       width: 60px;
       height: 60px;
       bottom: 30px;
       right: 30px;
       background-color: var(--whatsapp-green);
       color: white;
       border-radius: 50%;
       text-align: center;
       font-size: 30px;
       box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
       z-index: 2000;
       display: flex;
       align-items: center;
       justify-content: center;
       text-decoration: none;
       transition: transform 0.3s;
   }
   
   .whatsapp-float:hover {
       transform: scale(1.1) rotate(10deg);
   }
  /* --- SECCIÓN PEDIDOS ESPECIALES (MEJORADA) --- */
.special-request {
    padding: 80px 20px;
    /* Fondo degradado suave */
    background: linear-gradient(135deg, #fff5f8 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Círculos decorativos de fondo */
.special-request::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 200px; height: 200px;
    background: rgba(216, 94, 146, 0.05); /* Rosa muy suave */
    border-radius: 50%;
}
.special-request::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 150px; height: 150px;
    background: rgba(37, 211, 102, 0.05); /* Verde muy suave */
    border-radius: 50%;
}

/* La tarjeta blanca */
.special-card {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); /* Sombra elegante */
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
}

.special-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    /* Reusamos la animación de flotar que ya tienes */
    animation: floating 3s ease-in-out infinite; 
}

.special-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.special-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
/* --- SOCIAL HUB "NEON GAMER" --- */
.social-hub {
    text-align: center;
    padding: 80px 20px;
    /* Fondo oscuro para contraste gamer */
    background-color: #1a1a1a; 
    /* Patrón de cuadrícula sutil estilo Cyberpunk */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px; 
    position: relative;
    color: white;
    overflow: hidden;
}

/* Efecto de luz neón en el borde superior */
.social-hub::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-pink), transparent);
    box-shadow: 0 0 15px var(--brand-pink);
}

.social-hub h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(216, 94, 146, 0.5); /* Resplandor rosa */
}

.social-hub p {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* Más espacio entre botones */
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Botones Grandes y Brillantes */
.social-btn {
    width: 70px;
    height: 70px;
    background-color: #2a2a2a;
    border-radius: 18px; /* Cuadrado redondeado estilo App */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #333;
}

.social-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    transition: fill 0.3s;
}

/* Efecto Hover: Color y Resplandor */
.social-btn:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: transparent;
}

/* Facebook Hover (Azul Neón) */
.social-btn.facebook:hover {
    background-color: #1877F2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.6);
}

/* Instagram Hover (Gradiente Neón) */
.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    box-shadow: 0 0 25px rgba(220, 39, 67, 0.6);
}

/* Elementos decorativos flotantes de fondo */
.gamer-decor {
    position: absolute;
    font-size: 5rem;
    opacity: 0.05; /* Muy sutil */
    animation: floating 6s infinite ease-in-out;
    pointer-events: none; /* Para que no estorben al clic */
}
.decor-1 { top: 20px; left: 10%; transform: rotate(-15deg); }
.decor-2 { bottom: 20px; right: 10%; transform: rotate(15deg); animation-delay: 2s; } 
   /* =========================================
      5. PRODUCTOS Y CATÁLOGO
      ========================================= */
   .products-section {
       padding: 60px 5%;
       background-color: var(--bg-white);
   }
   
   .section-title {
       text-align: center;
       font-size: 2rem;
       margin-bottom: 50px;
       color: var(--text-dark);
       position: relative;
   }
   
   .section-title::after {
       content: '';
       display: block;
       width: 60px;
       height: 3px;
       background: var(--brand-pink);
       margin: 15px auto 0;
   }
   /* --- HERO CATÁLOGO (ESTILO PREMIUM) --- */
.catalog-hero {
    position: relative;
    padding: 90px 20px;
    text-align: center;
    /* Degradado muy suave de Rosa a Lila */
    background: linear-gradient(135deg, #fff0f5 0%, #f3e5f5 100%);
    overflow: hidden; /* Para que las decoraciones no se salgan */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.catalog-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.catalog-hero h1 span {
    color: var(--brand-pink);
    /* Efecto resaltador suave */
    background: linear-gradient(120deg, transparent 0%, rgba(216, 94, 146, 0.15) 100%);
    padding: 0 10px;
    border-radius: 8px;
}

.catalog-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
/* Asegura que la imagen se vea bien centrada */
.image-container {
  overflow: hidden; /* Mantiene la imagen dentro de los bordes redondeados */
  border-radius: 12px 12px 0 0; /* Ajusta esto según tu diseño actual */
}

/* Efecto suave al pasar el mouse (Hover) */
.card:hover .product-img {
  transform: scale(1.05); /* Zoom sutil */
  transition: transform 0.3s ease; /* Suavizado */
}
/* Decoraciones de Fondo */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px); /* Efecto borroso elegante */
}

.circle-1 {
    width: 300px; height: 300px;
    background: rgba(216, 94, 146, 0.15); /* Rosa */
    top: -100px; left: -50px;
}

.circle-2 {
    width: 250px; height: 250px;
    background: rgba(128, 0, 128, 0.1); /* Morado */
    bottom: -50px; right: -50px;
}

/* Estrellita animada */
.mini-icon {
    position: absolute;
    font-size: 2rem;
    top: 20%;
    right: 20%;
    opacity: 0.6;
    animation: floating 4s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
    .catalog-hero { padding: 60px 20px; }
    .catalog-hero h1 { font-size: 2.2rem; }
}
.grid {
    display: grid;
    /* Cambiamos 'auto-fill' por 'auto-fit' para que se adapten mejor */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px;
    
    /* ESTA ES LA CLAVE PARA CENTRAR: */
    justify-content: center; 
    
    /* Opcional: limita el ancho máximo de las tarjetas si no quieres que se estiren demasiado */
    max-width: 1200px; 
    margin: 0 auto; /* Centra el contenedor del grid en la página */
}
   
   .card {
       background: white;
       border-radius: 12px;
       overflow: hidden;
       transition: all 0.3s ease;
       border: 1px solid #f0f0f0;
   }
   
   .card:hover {
       box-shadow: 0 10px 25px rgba(0,0,0,0.08);
       transform: translateY(-5px);
   }
   
   .product-img {
       width: 100%;
       height: 300px;
       object-fit: contain;
       background-color: #f8f8f8;
       padding: 20px;
   }
   
   .card-info { padding: 20px; text-align: center; }
   .card-title { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-dark); font-weight: 700; }
   .price { color: var(--brand-pink); font-size: 1.2rem; font-weight: 600; display: block; }
   
   /* Filtros del Catálogo */
   .filter-container { text-align: center; margin: 30px 0 50px 0; }
   
   .filter-btn {
       background-color: white;
       border: 2px solid #eee;
       color: var(--text-grey);
       padding: 10px 25px;
       margin: 5px;
       border-radius: 25px;
       cursor: pointer;
       font-weight: 600;
       font-family: 'Quicksand', sans-serif;
       transition: all 0.3s;
   }
   
   .filter-btn:hover { border-color: var(--brand-pink); color: var(--brand-pink); }
   .filter-btn.active { background-color: var(--brand-pink); color: white; border-color: var(--brand-pink); }
   
   .filter-item { display: block; animation: fadeIn 0.5s; }
   .filter-item.hide { display: none; }
   /* --- HERO CATÁLOGO (ESTILO PREMIUM) --- */
.catalog-hero {
    position: relative;
    padding: 90px 20px;
    text-align: center;
    /* Degradado suave de Rosa Pálido a Lila */
    background: linear-gradient(135deg, #fff5f7 0%, #f3e5f5 100%);
    overflow: hidden; /* Para que las decoraciones no se salgan */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.catalog-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2; /* Encima de la decoración */
}

.catalog-hero h1 span {
    color: var(--brand-pink);
    /* Efecto "resaltador" suave detrás de la palabra */
    background: linear-gradient(120deg, transparent 0%, rgba(216, 94, 146, 0.15) 100%);
    padding: 0 15px;
    border-radius: 10px;
}

.catalog-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Decoraciones de Fondo (Círculos abstractos) */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 200px; height: 200px;
    background: rgba(216, 94, 146, 0.08); /* Rosa transparente */
    top: -80px; left: -50px;
}

.circle-2 {
    width: 250px; height: 250px;
    background: rgba(128, 0, 128, 0.05); /* Morado transparente */
    bottom: -100px; right: -50px;
}

/* Estrellita flotante opcional */
.mini-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: floating 5s ease-in-out infinite;
    top: 20%;
    right: 15%;
}

@media screen and (max-width: 768px) {
    .catalog-hero h1 { font-size: 2.2rem; }
}
/* --- SECCIÓN CUIDADOS (CARE GUIDE) --- */
.care-section {
    padding: 60px 5%;
    background-color: #fff9fc; /* Fondo rosita muy pálido */
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.care-section h2 {
    font-size: 2rem;
    color: var(--brand-purple);
    margin-bottom: 40px;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.care-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.care-item:hover {
    transform: translateY(-5px);
}

.care-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.care-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
    font-size: 1.1rem;
}

.care-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}
   
   /* =========================================
      6. SECCIÓN NOSOTROS (ABOUT)
      ========================================= */
/* --- Estilo Bloque Moderno Lateral --- */

/* --- SECCIÓN NOSOTROS (ABOUT) - FIX DE IMAGEN --- */

/* --- CORRECCIÓN DEFINITIVA SECCIÓN HISTORIA --- */
.about-hero-modern {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Altura suficiente para que se vea */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinea la caja a la izquierda */
    
    /* LA IMAGEN */
    background-image: url('bar.jpg') !important; 
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    
    overflow: hidden;
    z-index: 1;
}

/* El degradado para que el texto sea legible */
.about-hero-modern::before {
    content: '';
    position: absolute;
    inset: 0; /* Cubre todo el fondo */
    background: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

/* La caja de texto (aseguramos que esté arriba de todo) */
.modern-content-box {
    position: relative;
    z-index: 10; 
    max-width: 500px;
    margin-left: 5%;
    padding: 40px;
    background: rgba(26, 26, 26, 0.6); /* Transparencia estilo gamer */
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--brand-pink);
    color: white;
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #ff69b4; /* Tu rosa de marca */
    margin-bottom: 15px;
    font-weight: bold;
}

.about-hero-modern h1 {
    font-size: 4rem; /* Título muy grande e impactante */
    line-height: 1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Pequeña barra decorativa rosa */
.accent-bar {
    width: 80px;
    height: 6px;
    background-color: #ff69b4;
    margin-bottom: 30px;
}

.about-hero-modern p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc; /* Gris claro para no cansar la vista */
}

/* Ajustes para celular */
@media (max-width: 768px) {
    .about-hero-modern {
        justify-content: center; /* En celular, centramos todo */
        background-position: center;
    }
    
    .about-hero-modern::before {
        /* En celular, oscurecemos toda la foto parejo */
        background: rgba(17, 17, 17, 0.8);
    }

    .modern-content-box {
        margin-left: 0;
        width: 85%;
        padding: 40px 30px;
        text-align: center; /* Texto centrado en celular */
    }
    
    .about-hero-modern h1 {
        font-size: 3rem;
    }

    .accent-bar {
        margin: 0 auto 30px auto; /* Centrar la barra */
    }
}
   .about-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 50px;
       align-items: center;
       padding: 60px 5%;
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .about-grid.reverse { direction: rtl; }
   .about-grid.reverse > * { direction: ltr; }
   
   .about-text h2 { font-size: 2rem; color: var(--brand-pink); margin-bottom: 20px; }
   .about-text p { line-height: 1.8; color: #555; font-size: 1.1rem; margin-bottom: 15px; }
   
   .about-img-container {
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 15px 30px rgba(0,0,0,0.1);
       transform: rotate(-2deg);
       border: 5px solid white;
   }
   
   .about-img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
   .about-img:hover { transform: scale(1.05); }
   
   /* Valores */
   .values-section { background-color: white; padding: 60px 5%; text-align: center; }
   .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
   
   .value-card {
       padding: 30px;
       border-radius: 15px;
       background: #f9f9f9;
       transition: 0.3s;
   }
   .value-card:hover { background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-5px); }
   .value-icon { font-size: 3rem; margin-bottom: 15px; }
   /* --- HERO NOSOTROS (ESTILO CINEMÁTICO) --- */
.about-hero {
    position: relative;
    height: 400px; /* Altura fija para que luzca la foto */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    /* IMAGEN DE FONDO (Tu foto del Stand) */
    background-image: url('Bar.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax: la foto se queda quieta al bajar */
}

/* Capa oscura para que el texto se lea bien */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Oscuridad al 60% */
}

.about-hero-content {
    position: relative; /* Para que quede encima de la capa oscura */
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Sombra para resaltar más */
}

.about-hero p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Línea decorativa rosa debajo del texto */
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--brand-pink);
}

@media screen and (max-width: 768px) {
    .about-hero { height: 300px; }
    .about-hero h1 { font-size: 2.2rem; }
}
   
   /* =========================================
      7. SECCIÓN CONTACTO
      ========================================= */
   .contact-wrapper {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 50px;
       padding: 60px 5%;
       background: white;
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .contact-info h2 { color: var(--brand-pink); font-size: 2rem; margin-bottom: 20px; }
   .contact-details { margin-top: 30px; }
   
   .detail-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; color: #555; }
   .detail-icon {
       width: 40px; height: 40px; background: var(--bg-light); border-radius: 50%;
       display: flex; align-items: center; justify-content: center; color: var(--brand-pink); font-size: 1.2rem;
   }
   
   .contact-form { background: #f9f9f9; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
   .form-group { margin-bottom: 20px; }
   .form-label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
   
   .form-input, .form-textarea {
       width: 100%; padding: 12px; border: 2px solid #e0e0e0; border-radius: 10px;
       font-family: 'Quicksand', sans-serif; font-size: 1rem; transition: 0.3s;
   }
   .form-input:focus, .form-textarea:focus { border-color: var(--brand-pink); outline: none; background: white; }
   
   .btn-submit {
       width: 100%; background-color: var(--whatsapp-green); color: white; padding: 15px;
       border: none; border-radius: 10px; font-size: 1.1rem; font-weight: bold; cursor: pointer;
       transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
   }
   .btn-submit:hover { background-color: #1ebe57; transform: translateY(-2px); }
   
   /* =========================================
      8. REDES SOCIALES (Instagram & Hub)
      ========================================= */
   .instagram-section { padding: 50px 5%; background-color: white; text-align: center; }
   .insta-header { margin-bottom: 30px; }
   .insta-link { color: var(--brand-pink); font-weight: 700; font-size: 1.2rem; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; }
   
   /* Widget Hack: Ocultar marca de agua de SociableKit */
   .sk_branding, .sk-branding, a[href*="sociablekit.com"], a[href*="sociablekit"] {
       display: none !important; opacity: 0 !important; visibility: hidden !important; height: 0 !important; width: 0 !important; pointer-events: none !important;
   }
   
   /* Social Hub */
   .social-hub { text-align: center; padding: 50px 20px; background-color: white; border-top: 1px solid #eee; }
   .social-hub h2 { font-size: 1.8rem; color: #333; margin-bottom: 30px; }
   .social-grid { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
   
   .social-btn {
       width: 60px; height: 60px; background-color: #f5f5f5; border-radius: 50%;
       display: flex; align-items: center; justify-content: center; text-decoration: none;
       transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
       box-shadow: 0 5px 15px rgba(0,0,0,0.05);
   }
   .social-btn svg { width: 28px; height: 28px; fill: #555; transition: fill 0.3s; }
   
   .social-btn:hover { transform: translateY(-5px) scale(1.1); background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
   .social-btn.facebook:hover svg { fill: #1877F2; }
   .social-btn.instagram:hover svg { fill: #E1306C; }
   .social-btn.tiktok:hover svg { fill: #000000; }
   .social-btn.youtube:hover svg { fill: #FF0000; }
   
   /* =========================================
      9. FOOTER "WAVE GAMER"
      ========================================= */
   .site-footer {
       position: relative;
       background: linear-gradient(135deg, #240b36 0%, #c31432 100%);
       background: linear-gradient(135deg, #1a0b2e 0%, #6A1B9A 100%);
       color: white;
       padding-top: 100px;
       margin-top: 100px;
       font-size: 0.95rem;
   }
   
   .custom-shape-divider-top {
       position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0;
   }
   .custom-shape-divider-top svg { position: relative; display: block; width: calc(150% + 1.3px); height: 70px; }
   .custom-shape-divider-top .shape-fill { fill: #ffffff; }
   
   .footer-container {
       width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px 50px;
       display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
   }
   
   .footer-col h3 {
       color: #fff; font-size: 1.3rem; margin-bottom: 25px; font-weight: 700;
       text-transform: uppercase; letter-spacing: 1px; position: relative; display: inline-block;
   }
   .footer-col h3::after {
       content: ''; display: block; width: 50%; height: 4px; background: var(--brand-pink);
       margin-top: 8px; border-radius: 2px; box-shadow: 0 0 10px var(--brand-pink);
   }
   
   .footer-about p { line-height: 1.6; opacity: 0.8; }
   
   .footer-links { list-style: none; }
   .footer-links li { margin-bottom: 12px; }
   .footer-links a {
       color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s ease;
       display: flex; align-items: center; gap: 8px;
   }
   .footer-links a:hover { color: white; padding-left: 10px; text-shadow: 0 0 8px rgba(255,255,255,0.5); }
   .footer-links a::before { content: '›'; color: var(--brand-pink); opacity: 0; transition: 0.3s; }
   .footer-links a:hover::before { opacity: 1; }
   
   .footer-bottom {
       background-color: rgba(0, 0, 0, 0.3); padding: 20px 0; text-align: center;
       font-size: 0.85rem; color: rgba(255,255,255,0.6); border-top: 1px solid rgba(255,255,255,0.1);
   }
   
   .heart-icon { color: var(--brand-pink); display: inline-block; animation: heartbeat 1.5s infinite; }
   
   /* =========================================
      10. ANIMACIONES KEYFRAMES
      ========================================= */
   @keyframes fadeIn {
       from { opacity: 0; transform: translateY(20px); }
       to { opacity: 1; transform: translateY(0); }
   }
   @keyframes slideDown {
       from { opacity: 0; transform: translateY(-10px); }
       to { opacity: 1; transform: translateY(0); }
   }
   @keyframes floating {
       0% { transform: translateY(0px); }
       50% { transform: translateY(-20px); }
       100% { transform: translateY(0px); }
   }
   @keyframes gradientBG {
       0% { background-position: 0% 50%; }
       50% { background-position: 100% 50%; }
       100% { background-position: 0% 50%; }
   }
   @keyframes floatContact {
       0%, 100% { transform: translateY(0) rotate(0deg); }
       50% { transform: translateY(-20px) rotate(5deg); }
   }
   @keyframes heartbeat {
       0%, 100% { transform: scale(1); }
       50% { transform: scale(1.2); }
   }
   
   /* =========================================
      11. RESPONSIVIDAD (MÓVILES Y TABLETS)
      ========================================= */
   @media screen and (max-width: 768px) {
       /* Header y Menú */
       header { padding: 10px 5%; }
       .menu-toggle { display: block; }
       
       nav ul {
           display: none; flex-direction: column; width: 100%; position: absolute;
           top: 100%; left: 0; background-color: white; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
           padding: 20px 0; text-align: center; z-index: 999;
       }
       nav ul.active { display: flex; animation: slideDown 0.3s ease; }
       nav li { margin: 15px 0; }
   
       /* Textos Generales */
       .hero h1 { font-size: 1.8rem; }
       .section-title { font-size: 1.5rem; }
   
       /* Hero Wow (Index) */
       .hero-wow { min-height: auto; padding: 60px 5%; text-align: center; }
       .hero-container { flex-direction: column-reverse; }
       .hero-text { padding-right: 0; margin-top: 30px; }
       .hero-text p { margin: 0 auto 30px; }
       .hero-avatar { width: 250px; }
       .blob-bg { width: 280px; height: 280px; }
       .hero-text h1 { font-size: 2.5rem; }
       .hero-buttons { justify-content: center; margin-top: 20px; }
   
       /* Hero Contacto */
       .contact-hero { flex-direction: column-reverse; text-align: center; padding: 50px 20px; }
       .contact-hero h1 { font-size: 2rem; }
       .contact-visual { font-size: 6rem; margin-bottom: 20px; }
   
       /* Secciones Generales */
       .about-grid, .contact-wrapper { grid-template-columns: 1fr; padding: 40px 5%; text-align: center; }
       .about-grid.reverse { direction: ltr; }
       
       /* Footer Ola */
       .custom-shape-divider-top svg { height: 40px; }
   
       /* Botón flotante */
       .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
   }
   /* Botón flotante del carrito */
.cart-icon-float {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Ajustado para no tapar el de WA original */
    background: #6a1b9a; /* Morado Gamer */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s;
}

.cart-icon-float:hover { transform: scale(1.1); }

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0055;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Panel Lateral (Sidebar) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Oculto a la derecha */
    width: 350px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active { right: 0; }

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}
.cart-overlay.active { display: block; }

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cart-footer {
    padding: 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    background: #25D366; /* Verde WhatsApp */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover { background: #1ebc57; }
.remove-item { color: red; cursor: pointer; font-size: 0.9rem; }

/* --- CONFIGURACIÓN BASE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --bg-deep: #020617;
    --accent-primary: #8b5cf6; /* Violeta */
    --accent-gold: #fbbf24;    /* Amarillo Pikachu */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

.catalog-hero-aceternity {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Un poco más alto para que quepa la imagen */
    background-color: var(--bg-deep);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FONDOS (Spotlight y Grid) --- */
.spotlight {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0; left: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 2;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
}

/* --- LAYOUT GRID (Texto vs Imagen) --- */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mitad y mitad */
    align-items: center;
    gap: 40px;
}

/* --- COLUMNA DE TEXTO --- */
.text-column {
    text-align: left;
    z-index: 12;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(251, 191, 36, 0.1); /* Tinte amarillo sutil */
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.catalog-hero-aceternity h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

/* Texto Shimmer (Ahora con toques dorados) */
.text-shimmer {
    background: linear-gradient(to right, #fbbf24 20%, #fff 50%, #8b5cf6 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.catalog-hero-aceternity p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 12px 32px;
    background: var(--text-main);
    color: var(--bg-deep);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* --- COLUMNA DE IMAGEN (PIKACHU) --- */
.image-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-character {
    width: 100%;
    max-width: 450px; /* Tamaño máximo controlado */
    height: auto;
    position: relative;
    z-index: 10;
    /* MAGIA VISUAL: Sombra brillante amarilla que sigue la forma de Pikachu */
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.3));
    animation: floatCharacter 6s ease-in-out infinite;
}

/* Luz suave detrás del personaje */
.character-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
}

/* Orbes decorativos flotando alrededor */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
}

.orb-1 {
    width: 150px; height: 150px;
    background: #8b5cf6;
    top: 0; right: 0;
    animation: float 8s infinite alternate;
}

.orb-2 {
    width: 100px; height: 100px;
    background: #06b6d4;
    bottom: 20px; left: 20px;
    animation: float 10s infinite alternate-reverse;
}

/* --- ANIMACIONES --- */
@keyframes shimmer {
    to { background-position: 200% center; }
}

@keyframes floatCharacter {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, -20px); }
}

/* =========================================
   RESPONSIVE OPTIMIZADO PARA PIKACHU HERO
   ========================================= */
@media screen and (max-width: 900px) {

    /* 1. Ajuste del Contenedor Principal */
    .catalog-hero-aceternity {
        min-height: auto; /* Quitamos la altura forzada para que crezca según el contenido */
        padding: 100px 20px 60px 20px; /* Más padding arriba para no chocar con el header */
        align-items: flex-start; /* Alineamos al inicio */
    }

    /* 2. Grid se convierte en Flex Vertical */
    .content-wrapper {
        grid-template-columns: 1fr; /* Una sola columna */
        display: flex;
        flex-direction: column-reverse; /* IMPORTANTE: Texto abajo, Imagen arriba */
        gap: 30px;
        text-align: center;
    }

    /* 3. Ajuste de la Columna de Texto */
    .text-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centrar badges y botones */
        z-index: 15; /* Asegurar que el texto esté sobre cualquier decoración */
    }

    /* 4. Títulos más pequeños para que no se rompan feo */
    .catalog-hero-aceternity h1 {
        font-size: 2.2rem; /* Reducimos de 3.5rem a 2.2rem */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .catalog-hero-aceternity p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* 5. Ajuste de la Imagen (Pikachu) */
    .image-column {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        overflow: visible; /* Permitir que el brillo (glow) se salga un poco si es necesario */
    }

    .hero-character {
        width: 80%; /* Ocupa el 80% del ancho de la pantalla */
        max-width: 320px; /* Tope máximo */
        height: auto;
        /* Ajustamos la animación para que no "salte" tanto en pantallas pequeñas */
        animation: floatCharacter 4s ease-in-out infinite; 
    }

    /* 6. Ajuste del brillo trasero para móvil */
    .character-glow {
        width: 200px;
        height: 200px;
        opacity: 0.6; /* Un poco menos intenso en móvil */
    }

    /* 7. Controlar los orbes para que no tapen el texto */
    .orb {
        opacity: 0.3;
        transform: scale(0.7); /* Hacerlos más pequeños */
    }
    
}