/* CONFIGURACIÓN DE COLORES Y VARIABLES */
:root {
    --bg-dark-main: #0c0e12;     
    --bg-dark-alt: #14171f;      
    --bg-card: #1c202b;          
    --primary-lime: #ccff00;     
    --primary-lime-hover: #b3df00;
    --text-light: #ffffff;
    --text-muted: #8e95a5;
    
    --font-family: 'Poppins', sans-serif; 
}

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

body {
    background-color: var(--bg-dark-main);
    color: var(--text-light);
    font-family: var(--font-family); 
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700; 
}

.section-dark {
    background-color: var(--bg-dark-main);
    padding: 100px 5%; /* Espaciado amplio para que respire el diseño */
}

.section-alt {
    background-color: var(--bg-dark-alt);
    padding: 80px 2%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}


.text-lime {
    color: var(--primary-lime);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--primary-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   ESTILOS CONTROLADOS PARA EL HEADER GLOBAL (CON ANIMACIONES RESTAURADAS)
   ========================================================================== */

.header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 5% !important;
    background-color: #0c0e12 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100% !important;
    box-sizing: border-box !important;
}

.logo-container {
    display: flex !important;
    align-items: center !important;
}

.logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px !important;
    width: auto;
}

.logo-text {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
}

/* MENÚ ESTÁNDAR PARA ESCRITORIO */
.nav-menu {
    display: block;
}

.nav-menu ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    gap: 30px !important;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    list-style: none !important;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover {
    color: var(--primary-lime);
}

/* RESTAURADO: Indicador de Página Activa */
.nav-menu ul li a.active-nav {
    color: var(--primary-lime) !important;
    font-weight: 700;
}

/* Línea sutil decorativa debajo de la página activa (Opcional, estilo Figma premium) */
.nav-menu ul li a.active-nav::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-lime);
    border-radius: 2px;
}

/* EL BOTÓN ESTILO FIGMA PARA MAYOREO */
nav ul li a.nav-cta, .header-actions .nav-cta {
    background-color: #ccff00 !important;
    color: #0c0e12 !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; 
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.2);
    white-space: nowrap;
}

/* RESTAURADO: Zoom y Resplandor (Glow) en el botón de Mayoreo */
nav ul li a.nav-cta:hover, .header-actions .nav-cta:hover {
    transform: scale(1.08) translateY(-1px) !important;
    background-color: #ffffff !important; /* Cambia a blanco brillante */
    box-shadow: 0 0 25px rgba(204, 255, 0, 0.6) !important; /* Resplandor verde lima intenso */
}

/* ACCIONES MÓVILES */
.header-actions {
    display: none;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}

/* MEDIAS QUERIES PARA PANTALLAS CHICAS */
@media (max-width: 768px) {
    .header-actions {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
        cursor: pointer;
        background: none;
        border: none;
        flex-direction: column;
        gap: 6px;
    }

    .hamburger .bar {
        display: block;
        width: 26px;
        height: 3px;
        background-color: #ffffff;
    }

    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0c0e12;
        padding: 120px 40px;
        transition: right 0.4s ease;
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu ul {
        flex-direction: column !important;
        gap: 35px !important;
    }

    .nav-menu .nav-cta {
        display: none !important;
    }
    
    /* En móvil desactivamos la línea de abajo para que no rompa el menú vertical */
    .nav-menu ul li a.active-nav::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .logo-img {
    height: 30px !important;
    width: auto;}

    .hero-mayoreo {
    height: 75vh; }
}


/* HERO SECTION */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/Banner01.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 14, 18, 0.5), var(--bg-dark-main));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-family);
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BOTONES MEJORADOS */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-lime);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-lime);
    color: var(--bg-dark-main);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.btn-highlight {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--primary-lime);
    color: var(--bg-dark-main);
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(204, 255, 0, 0.2);
}

.btn-highlight:hover {
    background-color: var(--primary-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 255, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark-main);
}

/* CARRUSEL DE DEPORTES */
.sports-section {
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: var(--primary-lime);
    color: var(--bg-dark-main);
    padding: 6px 20px;
    font-family: var(--font-family);
    font-size: 1rem;
    border-radius: 4px;
    margin-bottom: 50px;
}

/* ==========================================================================
   REPARACIÓN DEFINITIVA DEL SCROLL HORIZONTAL
   ========================================================================== */

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    width: 100%; /* Asegura que tenga un tope de ancho */
}

.carousel-track-container {
    width: 100%;
    overflow: hidden; /* Esconde la barra pero permite desbordar */
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    
    /* CAMBIO CLAVE: Quitamos max-content y forzamos el desbordamiento correcto */
    width: 100%; 
    overflow-x: scroll; /* Cambiamos a scroll para obligar al navegador a activar el riel */
    
    scroll-behavior: smooth;
    
    /* Oculta la barra de scroll en todos los navegadores */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
}

.card {
    /* Mantiene cada mockup inflado a su tamaño real sin aplastarse */
    flex: 0 0 300px !important; 
    
    background: transparent !important;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Animación Hover - Conserva tu identidad verde lima */
.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-lime);
    box-shadow: 0 12px 30px rgba(204, 255, 0, 0.15);
}

/* CONTENEDOR DE LA IMAGEN DE PRODUCTO */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 420px; /* Altura espectacular idéntica a tu referencia */
    overflow: hidden;
    display: block;
}

.card-img-product {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-product {
    transform: scale(1.03); /* Zoom sutil premium */
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(12, 14, 18, 0.85) 0%, rgba(12, 14, 18, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.card-image-wrapper h3 {
    position: absolute;
    bottom: 30px; /* Separación desde la base inferior */
    left: 30px;   /* Margen izquierdo limpio idéntico al ejemplo */
    margin: 0;
    font-family: var(--font-family);
    font-size: 1.8rem; /* Tamaño imponente */
    font-weight: 900;  /* Máximo grosor tipográfico (Black) */
    text-align: left;  /* Forzado a la izquierda */
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    z-index: 2; /* Por encima del degradado */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* Responsivo sutil para pantallas pequeñas */
@media (max-width: 480px) {
    .card-image-wrapper {
        height: 340px; /* Se acortan un poco en celulares */
    }
    .card-image-wrapper h3 {
        font-size: 1.4rem;
        bottom: 20px;
        left: 20px;
    }
}

.grey-gradient {
    background: linear-gradient(135deg, #252936, #12151c);
}

.white-bg {
    background-color: #ffffff;
}

.card h3 {
    font-family: var(--font-family);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.carousel-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.carousel-btn:hover {
    color: var(--primary-lime);
}

/* ESTRUCTURA CTA Y TARJETA DE PLAYERAS PARA EVENTOS */
.section-darke {
    background: 
        linear-gradient(185deg, rgba(22, 25, 32, 0.92), rgba(12, 14, 18, 0.96)), 
        url('images/carrera.jpg') no-repeat center center/cover;
        padding: 100px 5%; 
}
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* Gran separación interna */
    max-width: 1100px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-family);
    font-size: 2.5rem;
    margin-bottom: 15px;
    
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.divider-loop { 
  width: 100%;
  overflow: hidden;
}

.divider-track {
  display: flex;
  width: calc(1600px * 2);
  animation: moveDivider 15s linear infinite;
}

.divider-track img {
  width: 1600px;
  height: 80%;
  flex-shrink: 0;
}

@keyframes moveDivider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1600px);
  }
}

@media (max-width: 768px) {
  .divider-alto {
    height: 260px;
  }
}


/* LA NUEVA TARJETA LLAMATIVA COMPLEMENTARIA */
.events-promo-card {
    background: linear-gradient(145deg, var(--bg-card), #13161e);
    border: 2px solid rgba(204, 255, 0, 0.15);
    border-radius: 24px;
    padding: 40px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.events-promo-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-lime);
    box-shadow: 0 25px 50px rgba(204, 255, 0, 0.15);
}

.promo-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-lime);
    color: var(--bg-dark-main);
    padding: 6px 18px;
    font-family: var(--font-family);
    font-size: 0.75rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(204, 255, 0, 0.3);
}

.events-promo-card h3 {
    font-family: var(--font-family);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.events-promo-card p {
    color: #b1b8c9;
    font-size: 1.05rem;
    line-height: 1.7;
}

.events-promo-card strong {
    color: var(--primary-lime);
    font-weight: bold;
}

.promo-footer {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SECCIÓN INFORMACIÓN / MISIÓN (GRID) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-box {
    background-color: var(--bg-dark-main);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-lime);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.info-box h3 {
    font-family: var(--font-family);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.info-box p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* TECNOLOGÍA */
.tech-section {
    text-align: center;
}

.section-title-container h2 {
    font-family: var(--font-family);
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.section-title-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.tech-placeholder {
    height: 300px;
    background: linear-gradient(180deg, #181b24 0%, var(--bg-dark-alt) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border-radius: 20px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.tech-title {
    font-family: var(--font-family);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* TESTIMONIOS */
.testimonials-section {
    text-align: center;
}

.testimonials-section h2 {
    font-family: var(--font-family);
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-card {
    background-color: var(--bg-dark-main);
    padding: 35px;
    border-radius: 16px;
    max-width: 480px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.02);
}

.stars {
    color: var(--primary-lime);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: #ccd2e0;
    font-style: italic;
}

.testimonial-card h4 {
    margin-top: 20px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* FOOTER */
footer {
    background-color: #06070a;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding-top: 10%;
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-lime);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* RESPONSIVO BÁSICO */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    header { flex-direction: column; gap: 20px; }
    .carousel-container { gap: 10px; }
    .card { width: 230px; }
    .card-image-placeholder { height: 280px; }
}




/* ESTILOS EXCLUSIVOS PARA LA LANDING DE MAYOREO */

.active-page {
    box-shadow: 0 0 15px var(--primary-lime) !important;
}

/* Hero específico de Mayoreo (puedes meter otra foto de producción en masa en tu carpeta images) */
.hero-mayoreo {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/Banner01.png') no-repeat center center/cover; /* Reemplaza por imagen de eventos si es necesario */
}

/* Grid de Beneficios Corporativos */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
     transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.35s ease, 
                box-shadow 0.35s ease;
    
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-lime);
    box-shadow: 0 15px 35px rgba(204, 255, 0, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contenedor del llamado a la acción comercial */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.form-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-cta-box {
    background: linear-gradient(145deg, #161920, var(--bg-card));
    padding: 50px 30px;
    border-radius: 24px;
    border: 2px solid var(--primary-lime);
    box-shadow: 0 15px 40px rgba(204, 255, 0, 0.1);
}

.min-pieces {
    font-family: var(--font-family);
    color: var(--primary-lime) !important;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
}

.btn-whatsapp-big {
    display: inline-block;
    background-color: #25d366;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-family);
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-big:hover {
    transform: translateY(-3px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   ESTILOS PREMIUM PARA LA SECCIÓN DE SUBLIMACIÓN
   ========================================================================== */

.sublimacion-section {
    padding: 100px 5%;
    background-color: var(--bg-dark-main);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.sublimacion-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sublimacion-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.sublimacion-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.sublimacion-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.sublimacion-header strong {
    color: var(--primary-lime); /* Resalta las dos ventajas clave en verde */
}

/* Estructura en 3 Columnas */
.sublimacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.sublimacion-col {
    background-color: var(--bg-dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Efecto interactivo al pasar el mouse */
.sublimacion-col:hover {
    transform: translateY(-5px);
    border-color: var(--primary-lime);
}

.sublimacion-icon {
    font-size: 2.2rem;
    display: inline-block;
    margin-bottom: 20px;
}

.sublimacion-col h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sublimacion-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Optimización para teléfonos móviles */
@media (max-width: 768px) {
    .sublimacion-section {
        padding: 60px 5%;
    }
    .sublimacion-header h2 {
        font-size: 2rem;
    }
    .sublimacion-col {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   SECCIÓN DE UBICACIÓN Y MAPA RESPONSIVO
   ========================================================================== */

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.location-info {
    flex: 1;
    text-align: left;
}

.location-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 15px 0 20px;
    text-transform: uppercase;
}

.location-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-details {
    background-color: var(--bg-dark-main);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.location-details p {
    margin-bottom: 12px;
    color: #ccd2e0;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-details strong {
    color: var(--primary-lime);
}

/* Contenedor del Mapa */
.location-map {
    flex: 1;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Cambio responsivo para celulares */
@media (max-width: 900px) {
    .location-container {
        flex-direction: column;
        gap: 35px;
    }
    
    .location-info {
        text-align: center;
    }
    
    .location-map {
        width: 100%;
        height: 320px; /* Reducimos la altura en pantallas chicas */
    }
}

/* ==========================================================================
   GALERÍA PREMIUM EN FORMATO SLIDER INFINITO
   ========================================================================== */

.gallery-slider-section {
    padding: 100px 0; /* Sin padding a los lados para que use todo el ancho posible */
    background-color: var(--bg-dark-main);
    overflow: hidden;
}

.gallery-slider-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 5%;
}

.gallery-slider-container {
    position: relative;
    max-width: 90%; /* Casi al ancho de la pantalla */
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.gallery-slider-view {
    width: 100%;
    height: 90%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.gallery-slider-track {
    display: flex;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none; /* Oculta scroll en Firefox[cite: 2] */
}

.gallery-slider-track::-webkit-scrollbar {
    display: none; /* Oculta scroll en Chrome/Safari[cite: 2] */
}

.gallery-slide-item {
    flex: 0 0 100%; /* Una sola foto enorme por pantalla */
    width: 100%;
    height: 550px; /* Altura ideal de impacto */
    position: relative;
}

.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste perfecto inteligente */
}

/* Texto sutil sobrepuesto abajo */
.gallery-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(12, 14, 18, 0.85));
    padding: 40px;
    text-align: left;
}

.gallery-slide-info span {
    font-family: var(--font-family);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* FLECHAS SUTILES MINIMALISTAS */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 14, 18, 0.6);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.prev-gallery { left: -25px; }
.next-gallery { right: -25px; }

.gallery-arrow:hover {
    color: var(--primary-lime); /* Brilla en verde al pasar el mouse */
    background: var(--bg-dark-main);
    border-color: var(--primary-lime);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.3);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .gallery-slider-section { padding: 60px 0; }
    .gallery-slide-item { height: 350px; } /* Ajuste de altura para celulares */
    .gallery-arrow { width: 40px; height: 40px; }
    .prev-gallery { left: 10px; } /* Se meten un poco en móvil */
    .next-gallery { right: 10px; }
}




/* ==========================================================================
   HERO ESPECÍFICO PARA LA PÁGINA DE CATÁLOGO
   ========================================================================== */

.hero-catalog {
    position: relative;
    height: 30vh; /* Un poco más corto que el de inicio para ir directo al grano */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* REUTILIZA TU IMAGEN DE INICIO */
    background: url('images/galeria2.jpg') no-repeat center center/cover;
}

/* Ajuste sutil para que empalme perfectamente con la intro de abajo */
.hero-catalog .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-catalog {
        height: 40vh; /* Más compacto en teléfonos */
    }
    .hero-catalog .hero-content h1 {
        font-size: 2.2rem;
    }
}


/* ==========================================================================
   PÁGINA: PROCESO DE COMPRA (TARJETAS INTERACTIVAS)
   ========================================================================== */

.proceso-intro {
    text-align: center;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
    background: 
        linear-gradient(to bottom, rgba(12, 14, 18, 0.75) 0%, rgba(12, 14, 18, 0.8) 50%, var(--bg-dark-main) 100%), 
        url('images/galeria5.png') no-repeat center center/cover;
}

.proceso-header-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Configuración de la Rejilla de Pasos */
.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilo Base de las Cards */
.proceso-card {
    background-color: #14171f; /* Un fondo integrado muy limpio */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.35s ease, 
                box-shadow 0.35s ease;
}

/* Animación Hover de las Cards */
.proceso-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-lime);
    box-shadow: 0 15px 35px rgba(204, 255, 0, 0.08);
}

/* Estilo del Número del Paso */
.proceso-number {
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-lime);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.85;
    transition: transform 0.35s ease;
}

/* Pequeño extra animado en el número al pasar el mouse */
.proceso-card:hover .proceso-number {
    transform: scale(1.05);
}

/* Textos dentro de la Card */
.proceso-card-content h3 {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.proceso-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Ajustes de optimización para tablets y teléfonos móviles */
@media (max-width: 768px) {
    .proceso-grid {
        grid-template-columns: 1fr; /* Una sola columna fluida en vertical */
        gap: 20px;
    }
    .proceso-card {
        padding: 30px 20px;
    }
    .proceso-number {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   BLOQUE DE CIERRE COMERCIAL Y BOTÓN DE WHATSAPP (PROCESO)
   ========================================================================== */

.proceso-cta-section {
    padding: 60px 5% 100px 5%;
    text-align: center;
}

.proceso-cta-box {
    background: linear-gradient(145deg, #14171f, #1c202b);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.proceso-cta-box h2 {
    font-size: 2.3rem;
    font-weight: 900;
    margin: 15px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.proceso-cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* El Botón Estrella - Estilo Premium */
.btn-whatsapp-cta {
    display: inline-block;
    background-color: var(--primary-lime);
    color: #0c0e12; /* Texto oscuro para contraste brutal */
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 38px;
    border-radius: 50px; /* Bordes completamente redondeados */
    box-shadow: 0 0 0px rgba(204, 255, 0, 0);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animación Hover - Brillo y Elevación */
.btn-whatsapp-cta:hover {
    transform: translateY(-4px);
    background-color: var(--primary-lime-hover);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3); /* Crea el efecto neon */
}

.cta-note {
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--primary-lime);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Ajuste Responsivo para Celulares */
@media (max-width: 768px) {
    .proceso-cta-box {
        padding: 40px 20px;
    }
    .proceso-cta-box h2 {
        font-size: 1.8rem;
    }
    .btn-whatsapp-cta {
        font-size: 1rem;
        padding: 16px 24px;
        width: 100%; /* Ocupa todo el ancho en celulares para facilitar el tap */
    }
}


/* ==========================================================================
   PÁGINA DE CONTACTO (MINIMALISTA E INTEGRADA)
   ========================================================================== */

.contacto-intro {
    text-align: center;
    padding: 10% !important;
 background: 
        linear-gradient(to bottom, rgba(12, 14, 18, 0.75) 0%, rgba(12, 14, 18, 0.8) 50%, var(--bg-dark-main) 100%), 
        url('images/galeria8.jpg') no-repeat center center/cover;

}

.contacto-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 20px;
}

/* Columna de Datos de Canales */
.contacto-info-col {
    flex: 1;
}

.contacto-info-col h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contacto-info-col p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
}

.contacto-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-card, .channel-card-static {
    background-color: #14171f;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.channel-card h4, .channel-card-static h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.channel-card p, .channel-card-static p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.channel-icon {
    font-size: 1.8rem;
}

/* Hover específico para la tarjeta de acceso a WhatsApp */
.whatsapp-channel {
    transition: all 0.3s ease;
}

.whatsapp-channel:hover {
    border-color: var(--primary-lime);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.04);
}

/* Columna del Formulario */
.contacto-form-col {
    flex: 1.3;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Inputs, Selects y Textarea Estilo Editorial */
.contacto-form input,
.contacto-form select,
.contacto-form  textarea {
    background-color: #14171f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: var(--primary-lime);
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.1);
}

/* Estilizar el botón del formulario */
.btn-form-submit {
    background-color: var(--primary-lime);
    color: #0c0e12;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    padding: 16px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 255, 0, 0.25);
}

/* Diseño Responsivo Celulares */
@media (max-width: 900px) {
    .contacto-container {
        flex-direction: column;
        gap: 50px;
    }
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
}

/* ==========================================================================
   SLIDER DE 3 COLUMNAS PARA MAYOREO (IMPACTO PREMIUM)
   ========================================================================== */

.mayoreo-gallery-section {
    padding: 80px 0; /* Espacio libre a los lados para el flujo del slider */
    overflow: hidden;
}

.mayoreo-gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 5%;
}

.mayoreo-slider-container {
    position: relative;
    max-width: 90%; /* Margen perfecto para que las flechas respiren */
    margin: 0 auto;
    padding-top: 5%;
    padding-bottom: 5%;
    display: flex;
    align-items: center;
}

.mayoreo-slider-view {
    width: 100%;
    overflow: hidden;
}

/* El riel que sostiene todas las imágenes en fila */
.mayoreo-slider-track {
    display: flex;
    gap: 30px; /* Separación fija entre tarjetas */
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none; /* Oculta barra en Firefox */
}

.mayoreo-slider-track::-webkit-scrollbar {
    display: none; /* Oculta barra en Chrome/Safari */
}

/* Cada tarjeta ocupa exactamente un tercio del espacio disponible (restando el gap) */
.mayoreo-gallery-item {
    flex: 0 0 calc((100% - 60px) / 3); 
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mayoreo-gallery-item:hover {
    transform: translateY(-4px);
}

.mayoreo-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px; 
    background-color: #1a1a1a;
    aspect-ratio: 6 / 5;
}

.mayoreo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mayoreo-img-wrapper img.img-primary {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.mayoreo-img-wrapper img.img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

/* EFECTO AL PASAR EL MOUSE (HOVER) */
.mayoreo-gallery-item:hover .mayoreo-img-wrapper img.img-secondary {
    opacity: 1;
}

.mayoreo-gallery-item:hover .mayoreo-img-wrapper img.img-primary {
    opacity: 0;
}

.mayoreo-gallery-item:hover .mayoreo-img-wrapper img {
    transform: scale(1.04);
}

.mayoreo-gallery-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.mayoreo-gallery-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
/* Asegura que el enlace ocupe toda la tarjeta y mantenga el estilo visual */
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* FLECHAS INTERACTIVAS MINIMALISTAS */
.mayoreo-arrow {
    position: absolute;
    top: 40%; /* Centradas respecto a la altura de las imágenes */
    transform: translateY(-50%);
    background: rgba(20, 23, 31, 0.8);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.prev-mayoreo { left: -22px; }
.next-mayoreo { right: -22px; }

.mayoreo-arrow:hover {
    color: var(--primary-lime);
    border-color: var(--primary-lime);
    background: #0c0e12;
    box-shadow: 0 0 12px rgba(204, 255, 0, 0.2);
}

/* Optimización para Tablets y Móviles */
@media (max-width: 900px) {
    .mayoreo-gallery-item {
        flex: 0 0 calc((100% - 30px) / 2); /* Muestra 2 tarjetas en tablets */
    }
    .mayoreo-arrow { display: none; } /* En móviles es mejor arrastrar directamente con el dedo */
}

@media (max-width: 600px) {
    .mayoreo-gallery-item {
        flex: 0 0 85%; /* Muestra 1 tarjeta completa y deja ver un pedazo de la otra para invitar a deslizar */
    }
    .mayoreo-img-wrapper { height: 260px; }
}

/* ==========================================================================
   BANNER DE ESTADÍSTICAS (BAJO EL HERO)
   ========================================================================== */

.stats-banner {
    background-color: #14171f; /* Fondo integrado muy limpio */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 5%;
    width: 100%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* Pequeña línea divisoria estética entre datos (solo visible en computadoras) */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.stat-icon {
    font-size: 1.8rem;
    line-height: 1;
    /* Si tienes una clase de color verde lima en tus variables, la puedes usar aquí */
    filter: drop-shadow(0 2px 8px rgba(204, 255, 0, 0.2)); 
}

.stat-number {
    font-family: var(--font-family);
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVO / ADAPTACIÓN MÓVIL
   ========================================================================== */

@media (max-width: 900px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Cuadrícula de 2x2 en tabletas o pantallas medianas */
        gap: 40px 20px;
    }
    
    /* Quitamos las líneas divisorias en formato móvil */
    .stat-item::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        padding: 50px 5%;
    }
    
    .stats-container {
        grid-template-columns: 1fr; /* Una sola fila vertical en celulares */
        gap: 35px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}


/* ==========================================================================
   NUEVA DISTRIBUCIÓN DE CATÁLOGO (ESTILO E-COMMERCE PREMIUM)
   ========================================================================== */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BLOQUE 1: LOS 4 MÁS VENDIDOS --- */
.best-sellers-section {
    padding: 40px 0;
    text-align: center;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columnas perfectas */
    gap: 24px;
    margin-top: 40px;
}

.best-card {
    text-align: left;
    background: #14171f;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.02);
     transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.best-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-lime);
    box-shadow: 0 12px 30px rgba(204, 255, 0, 0.15);
}

.best-img-wrapper {
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #0c0e12;
}

.best-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.best-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- BLOQUE 2: DISTRIBUCIÓN HÍBRIDA (FILTROS AL LADO) --- */
.main-catalog-layout {
    padding: 40px 0 100px 0;
}

.catalog-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr; /* Columna fija para filtros, el resto para productos */
    gap: 40px;
    padding: 0 20px;
}

/* Menú Lateral de Filtros (Sidebar) */
.catalog-sidebar {
    position: 20px;
    height: max-content;
}

.catalog-sidebar h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-filters {
    display: flex;
    flex-direction: column; /* Botones uno debajo del otro */
    gap: 10px;
}

/* Adaptación de tus botones de filtro para formato lista */
.catalog-sidebar .filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #ccd2e0;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: left; /* Alineado a la izquierda */
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.catalog-sidebar .filter-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    padding-left: 25px; /* Efecto sutil de desplazamiento al pasar el mouse */
}

.catalog-sidebar .filter-btn.active {
    background-color: var(--primary-lime);
    color: #0c0e12;
    border-color: var(--primary-lime);
    font-weight: 700;
}

/* Contenedor de la derecha para la rejilla */
.catalog-main-content {
    width: 100%;
}

/* Ajustamos el catálogo para que llene dinámicamente el espacio de la derecha */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Se acomodan solas según la pantalla */
    gap: 24px;
}

/* --- RESPONSIVO PARA MÓVILES --- */
@media (max-width: 900px) {
    /* Los más vendidos pasan a ser 2x2 en pantallas medianas */
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* El catálogo rompe las columnas laterales y se pone uno arriba del otro */
    .catalog-layout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* En móvil los filtros vuelven a ser una fila horizontal deslizable */
    .sidebar-filters {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .sidebar-filters::-webkit-scrollbar { display: none; }
    
    .catalog-sidebar .filter-btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    .best-sellers-grid {
        grid-template-columns: 1fr; /* 1 sola columna en cel para los más vendidos */
    }
}

.catalog-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden; 
    position: relative;
    background-color: #0c0e12; 
}

.catalog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    border-radius: 10px;
 
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.load-more-btn {
    background-color: transparent;
    border: 2px solid var(--primary-lime);
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: var(--primary-lime);
    color: #0c0e12;
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.2);
    transform: translateY(-2px);
}

.load-more-btn.hidden {
    display: none;
}
.catalog-card-price {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600; /* Negrita destacada */
    color: var(--primary-lime); /* Resalta increíble en tu fondo oscuro */
    margin: 5px 0;
    letter-spacing: -0.5px;
}


/* TÍTULO DINÁMICO DEL CATÁLOGO */
.catalog-dynamic-title {
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: 900; /* Ultra negrita */
    color: #ffffff;
    text-align: center; /* Centrado perfecto */
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 40px; /* Separación limpia antes de que inicien las fotos */
}

/* Ajuste responsivo rápido para celulares */
@media (max-width: 480px) {
    .catalog-dynamic-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
}


/* ==========================================================================
   MEGA MENÚ DESPLEGABLE EN EL HEADER
   ========================================================================== */

/* Contenedor padre del enlace */
.nav-dropdown {
    position: relative; /* Base para el panel flotante */
}

/* El panel que se despliega hacia abajo */
.megamenu-panel {
    position: absolute;
    top: 100%; /* Aparece justo abajo del texto del Header */
    left: 50%;
    transform: translateX(-50%) translateY(10px); /* Centrado y un poquito abajo */
    background-color: #14171f; /* Fondo oscuro que combina con tu UI */
    width: max-content;
    max-width: 900px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    
    /* Oculto por defecto con transición suave */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999; /* Por encima de todo el contenido */
}

/* Contenedor interno en Grid para acomodar los deportes de forma estética */
.megamenu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas limpias de deportes */
    gap: 12px 25px; /* Separación entre filas y columnas */
}

/* Los enlaces de cada deporte dentro del menú */
.megamenu-item {
    color: #ccd2e0;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Animación de hover para cada deporte */
.megamenu-item:hover {
    color: var(--primary-lime); /* Tu color insignia verde lima */
    background-color: rgba(255, 255, 255, 0.02);
    padding-left: 16px; /* Efecto sutil de empuje */
}

/* 🔥 EL TRUCO: Al hacer hover en el botón padre, se muestra el panel */
.nav-dropdown:hover .megamenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Sube suavemente a su posición */
}

/* Evitar que se cierre si el usuario mueve el mouse un milímetro fuera */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

/* Desactivar en celulares para que no cause problemas de UI (en móvil se usa menú hamburguesa) */
@media (max-width: 768px) {
    .megamenu-panel {
        display: none !important;
    }
}

/* --- SUBFILTROS ANIDADOS --- */
.sub-filters {
    max-height: 0; /* Oculto por defecto */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px; /* Desplazamiento visual para jerarquía */
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 2px;
    margin-bottom: 5px;
}

/* Cuando el botón de arriba esté activo, se despliega su cajita de género */
.filter-btn.active + .sub-filters {
    max-height: 100px; /* Le damos altura suficiente para que baje suave */
    margin-top: 5px;
}

/* Estilo de los botoncitos de Dama/Caballero */
.sub-filter-btn {
    background: transparent;
    border: none;
    color: #a0aabf;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.sub-filter-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.03);
}

/* Cuando seleccionas Dama o Caballero se pinta una línea verde lima al lado */
.sub-filter-btn.active-sub {
    color: var(--primary-lime);
    font-weight: 700;
}

.mobile-filter-trigger {
    display: none;
}
/* ==========================================================================
   RESPONSIVO EXCLUSIVO PARA DISPOSITIVOS MÓVILES (TABLETS Y CELULARES)
   ========================================================================== */

@media (max-width: 900px) {
    /* MANTIENES COMPLETO: 1. SEPARACIÓN FANTASMA DEL HEADER */
    .nav-dropdown .megamenu-panel, 
    .megamenu-panel {
        display: none !important; 
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* MANTIENES COMPLETO: 2. CONTENEDOR GLOBAL */
    .catalog-layout-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }

    /* ==========================================================================
       AQUÍ EMPIEZA EL CAMBIO: NUEVO CONTROL DEL SIDEBAR COMO BOTÓN DESPLEGABLE
       ========================================================================== */

    .catalog-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        margin-bottom: 15px !important;
        display: block !important;
        text-align: left !important; /* Alineado a la izquierda para el botón móvil */
    }

    /* Escondemos los textos fijos en móvil para que no estorben antes de abrir el menú */
    .sidebar-filters h3, 
    .sidebar-filters p {
        display: none !important;
    }

    /* REEMPLAZO/NUEVO: Estilo del botón disparador que el cliente va a tocar */
    .mobile-filter-trigger {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: #14171f;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 20px;
        border-radius: 8px;
        font-family: var(--font-family);
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .mobile-filter-trigger .arrow-icon {
        color: var(--primary-lime);
        transition: transform 0.3s ease;
    }

    /* Animación de la flecha apuntando hacia arriba al abrir */
    .mobile-filter-trigger.active .arrow-icon {
        transform: rotate(180deg);
    }

    /* REEMPLAZO: Tu .sidebar-filters ya NO es horizontal, ahora se oculta de forma vertical */
    .sidebar-filters.mobile-collapsed {
        display: none !important; /* OCULTADO RADICAL por defecto */
        flex-direction: column !important; /* Lista vertical limpia */
        width: 100% !important;
        background-color: #0c0e12;
        padding: 10px 0 !important;
        gap: 8px !important;
    }

    /* NUEVO: Clase interactiva que inyecta el JS al dar clic para abrir el menú */
    .sidebar-filters.mobile-open {
        display: flex !important;
    }

    /* REEMPLAZO: Modificamos tus botones para que abarquen el renglón completo en la lista */
    .catalog-sidebar .filter-btn {
        display: block !important;
        width: 100% !important; /* Ocupan todo el ancho de la lista */
        text-align: left !important; /* Texto alineado de forma elegante */
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        background-color: #14171f !important; 
        border: 1px solid rgba(255, 255, 255, 0.03) !important;
        border-radius: 6px !important; /* Esquinas un poco más cuadradas para look e-commerce */
        color: #ccd2e0 !important;
        white-space: nowrap !important;
        margin: 0 !important;
        transition: none !important;
    }

    /* MANTIENES: Estilo del botón seleccionado */
    .catalog-sidebar .filter-btn.active {
        background-color: var(--primary-lime) !important;
        color: #0c0e12 !important;
        border-color: var(--primary-lime) !important;
        font-weight: 700;
    }

    /* MANTIENES: Quitar efectos hover de PC */
    .catalog-sidebar .filter-btn:hover {
        padding-left: 20px !important; 
        transform: none !important;
    }

    /* NUEVO: Separación interna para los subbotones de género (Dama / Caballero) */
    .sub-filters {
        padding-left: 20px !important;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* 4. REDISEÑO DE TARJETAS PARA MOCKUPS VERTICALES (LA CLAVE) */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr); /* Mantiene las 2 columnas */
        gap: 12px; 
    }

    /* Cambiamos la altura fija por una proporción natural para que el jersey luzca entero */
    .catalog-img-wrapper {
        height: auto; /* Quita el límite que lo cortaba como caja */
        aspect-ratio: 3 / 4; /* Fuerza una proporción vertical perfecta de catálogo de ropa */
        overflow: hidden;
        border-radius: 8px;
    }

    .catalog-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 👈 CAMBIO DE ORO: Ajusta el jersey completo dentro de la caja sin recortarlo */
        background-color: #0c0e12; /* Fondo oscuro estético para rellenar los lados del mockup */
        border-radius: 10px;
    }

    /* Ajustes de textos en las tarjetas para que no se amontonen en pantallas chicas */
    .catalog-card h3 {
        font-size: 0.9rem;
        margin: 6px 0 2px 0;
    }

    .catalog-card-price {
        font-size: 1rem;
        margin: 2px 0;
    }

    .catalog-card-meta {
        font-size: 0.75rem;
    }

    .catalog-dynamic-title {
        font-size: 1.4rem;
        margin-top: 10px;
        margin-bottom: 20px;
    }
.best-sellers-grid {
        display: flex !important; /* Cambia de bloque/grid a fila horizontal */
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Evita que las tarjetas brinquen hacia abajo */
        overflow-x: auto !important; /* Activa el scroll horizontal con el dedo */
        padding: 10px 20px 25px 20px !important; /* Espacio extra abajo para la sombra flotante */
        gap: 16px !important; /* Separación entre cada jersey */
        width: 100% !important;
        
        /* Ajustes de fricción para que el deslizamiento se sienta como app nativa */
        scroll-snap-type: x mandatory; /* Hace que las tarjetas se "imanten" al deslizar */
        -webkit-overflow-scrolling: touch; /* Scroll ultra suave en iPhone (iOS) */
        scrollbar-width: none; /* Esconde barra gris en Firefox */
    }

    /* Oculta la barra de desplazamiento en Chrome, Safari y la mayoría de celulares */
    .best-sellers-grid::-webkit-scrollbar {
        display: none !important;
    }

    /* 2. CONTROLAR EL TAMAÑO DE CADA TARJETA EN MÓVIL */
    .best-card {
        flex: 0 0 80% !important; /* ¡LA CLAVE!: Cada tarjeta ocupa el 80% del ancho de la pantalla */
        width: 70% !important;
        scroll-snap-align: center; /* Centra automáticamente la tarjeta en la pantalla al deslizar */
        margin: 0 !important;
    }

    /* Ajuste sutil para que el texto y las imágenes internas no pierdan proporción */
    .best-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Ajuste extra para pantallas ultra pequeñas (Celulares de gama baja o muy chicos) */
@media (max-width: 400px) {
    /* Si la pantalla es extremadamente pequeña, dejamos 1 sola foto por fila para que se aprecie la tela */
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-img-wrapper {
        height: 320px;
    }
}


/* ==========================================================================
   SECCIÓN DE REDES SOCIALES (FOOTER CHINGÓN)
   ========================================================================== */
.footer-social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    margin-top: 15px;
}

.social-title {
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 700;
    color: #8892b0; /* Gris sutil institucional */
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.social-links-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-icon-link {
    width: 46px;
    height: 46px;
    background-color: #14171f; /* Fondo oscuro individual que hace match con tu web */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-svg {
    width: 20px;
    height: 20px;
    fill: #ccd2e0; /* Color gris claro por defecto */
    transition: fill 0.2s ease;
}

/* --- EFECTOS HOVER / ACTIVE SELECCIÓN --- */
.social-icon-link:hover {
    transform: translateY(-3px); /* Pequeño brinco estético */
    border-color: transparent;
}

/* Colores de marca oficiales al pasar el cursor o presionar en cel */
.social-icon-link.facebook:hover {
    background-color: #1877f2;
}
.social-icon-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icon-link.tiktok:hover {
    background-color: #000000;
    border-color: #fe2c55;
}

/* Forzar que el icono cambie a blanco en el hover */
.social-icon-link:hover .social-svg {
    fill: #ffffff;
}


/* ==========================================================================
   MODAL DE PRODUCTOS PREMIUM (DARK MODE)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(10, 12, 18, 0.85); /* Fondo oscuro traslúcido */
    backdrop-filter: blur(8px); /* Difuminado pro de fondo */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-card {
    background-color: #14171f; /* Fondo oscuro de la tarjeta */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Botón cerrar X */
.close-modal-x {
    position: absolute;
    top: 15px; right: 20px;
    background: transparent;
    border: none;
    color: #8892b0;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal-x:hover { color: #fff; }

/* Distribución interna (En PC se ve a dos columnas con Bloques) */
.modal-layout-grid {
    display: block; /* WeasyPrint / compatibilidad */
}

.modal-img-container {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.modal-img-container img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.modal-info-side {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding-left: 25px;
}

.modal-info-side h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}
.modal-brand-tag {
    color: #fe2c55; /* Color neón de acento */
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* El botón / Desplegable de las medidas */
.measures-trigger-btn {
    width: 100%;
    background: #1c202e;
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccd2e0;
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.measures-content img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Botón de Leadsales WhatsApp */
.modal-quote-btn {
    display: block;
    width: 100%;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: background-color 0.2s, transform 0.2s;
}
.modal-quote-btn:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
}

/* REGLAS RESPONSIVE PARA CELULARES */
@media (max-width: 768px) {
    .modal-card { padding: 20px; }
    .modal-img-container, .modal-info-side {
        width: 100%;
        display: block;
        padding-left: 0;
    }
    .modal-img-container { margin-bottom: 20px; }
    .modal-info-side h2 { font-size: 1.4rem; }
}

/* ==========================================================================
   TABULADORES DE PRECIOS MAYOREO (PREMIUM DARK)
   ========================================================================== */
.wholesale-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.wholesale-main-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.tables-container-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-table-card {
    background-color: #14171f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    flex: 1;
    min-width: 340px;
    max-width: 550px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


.table-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.fabric-preview-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1c202e; /* Fondo de respaldo */
    border: 2px solid #fe2c55; /* Detalle neón de tu marca */
    overflow: hidden;
}

.fabric-preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-card-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto; /* Permite scroll horizontal suave si la pantalla es ultra chica */
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th {
    background-color: #1c202e;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 10px;
    line-height: 1.2;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-table th span {
    font-size: 0.75rem;
    color: #8892b0;
    font-weight: 400;
}

.pricing-table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccd2e0;
    font-size: 0.95rem;
}

.price-cell {
    font-weight: 600;
    color: #fff !important;
}

.pricing-table tr.highlight-row td {
    background-color: rgba(37, 211, 102, 0.06); 
    color: #25d366;
    font-weight: 700;
}
.pricing-table tr.highlight-row .price-cell {
    color: #25d366 !important;
}

.pricing-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .wholesale-main-title { font-size: 1.5rem; }
    .pricing-table-card { padding: 15px; }
    .pricing-table td, .pricing-table th { padding: 10px 6px; font-size: 0.85rem; }
}

/* Estilos para el contenedor del desplegable de telas */
.fabric-zoom-dropdown {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.fabric-trigger-btn {
    width: 100%;
    background-color: #1c202e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccd2e0;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s, color 0.2s;
}

.fabric-trigger-btn:hover {
    background-color: #252a3d;
    color: #fff;
}

.fabric-zoom-content {
    margin-top: 12px;
    text-align: center;
}

.zoomable-fabric-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover; /* Recorta la imagen para que se mantenga estética */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}


/* ==========================================================================
   BOTÓN FLOTANTE PREMIUM DE WHATSAPP (OPCIÓN 1)
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 99999; /* Se asegura de flotar por encima de modales y menús */
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulseButton 2s infinite; /* Efecto de atención discreto */
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: #20ba56;
}

.whatsapp-svg-icon {
    width: 32px;
    height: 32px;
}

/* Animación sutil de ondas de pulso */
@keyframes pulseButton {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Optimización para que en celulares no tape elementos importantes */
@media (max-width: 480px) {
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-svg-icon {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================================================
   ESTILOS ADAPTADOS A TU SLIDER DE GALERÍA (.gallery-slide-item)
   ========================================================================== */

/* Customización para el Pop-up de fotos del inicio */
.gallery-modal-card {
    max-width: 900px !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.gallery-modal-img-container {
    width: 100%;
    text-align: center;
}

.gallery-modal-img-container img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

/* 🔥 Cursor de lupa e interactividad directo en las imágenes de tus items */
.gallery-slide-item img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.gallery-slide-item img:hover {
    transform: scale(1.02); /* Un pequeño acercamiento sutil sin romper el slider */
}


/* Cursor de lupa para las fotos del slider de mayoreo */
.mayoreo-slider-container img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.mayoreo-slider-container img:hover {
    transform: scale(1.02); /* Efecto pro sin desacomodar el carrusel */
}

/* ==========================================================================
   NUEVOS ESTILOS PARA LA SECCIÓN DE MAYOREO (CATÁLOGO, FORMULARIO Y FAQS)
   ========================================================================== */

/* 1. Bloque de redirección al Catálogo */
.catalog-redirect-box {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.catalog-redirect-box h3 {
    color: #fff; 
    font-size: 1.8rem; 
    margin: 10px 0 20px;
}
.catalog-redirect-box .btn-highlight {
    display: inline-block; 
    text-decoration: none;
}

/* 2. Contenedor Dual: WhatsApp y Formulario Formal */
/* 2. Contenedor de WhatsApp y Formulario Formal (Forzado a una sola columna) */
.dual-quote-container {
    display: flex;
    flex-direction: column; /* Cambiado de 'wrap' a 'column' para que siempre se apilen */
    gap: 30px;
    margin-top: 40px;
    max-width: 650px;       /* Limitamos el ancho para que no se desarme en pantallas enormes */
    margin-left: auto;      /* Centra el contenedor en la página */
    margin-right: auto;     /* Centra el contenedor en la página */
}

.quote-method-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-method-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quote-method-card h3 {
    color: #fff; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.quote-method-card p {
    color: #ccc; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin-bottom: 20px;
}

/* Particularidades de la tarjeta de WhatsApp */
.whatsapp-method {
    flex: 1;
    min-width: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.whatsapp-method .min-pieces {
    font-weight: bold; 
    color: #a3e635; 
    margin-bottom: 25px;
}
.whatsapp-method .btn-whatsapp-big {
    text-align: center; 
    display: block; 
    text-decoration: none;
}

/* Estilos del Formulario de Cotización */
.form-method {
    flex: 1.4;
    min-width: 310px;
}

.wholesale-formal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wholesale-formal-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.wholesale-formal-form input,
.wholesale-formal-form select,
.wholesale-formal-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wholesale-formal-form input:focus,
.wholesale-formal-form select:focus,
.wholesale-formal-form textarea:focus {
    outline: none;
    border-color: #a3e635;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 8px rgba(163, 230, 53, 0.2);
}

.wholesale-formal-form select option {
    background: #111111;
    color: #ffffff;
}

/* 3. Estilos de la sección de Preguntas Frecuentes (FAQ Accordion) */
#faq-section {
    padding: 80px 20px;
}

.faq-container-box {
    max-width: 800px; 
    margin: 0 auto;
}

.faq-header-text {
    text-align: center; 
    margin-bottom: 50px;
}

.faq-header-text h2 {
    font-size: 2.5rem; 
    font-weight: 900; 
    margin-top: 10px;
}

.faq-header-text p {
    color: #666; 
    max-width: 500px; 
    margin: 10px auto 0;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #dddddd;
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111111;
    gap: 15px;
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    color: #888888;
    user-select: none;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.faq-content p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   MEDIA QUERIES (OPTIMIZACIÓN RESPONSIVE PARA MÓVILES)
   ========================================================================== */
@media (max-width: 768px) {
    .dual-quote-container {
        flex-direction: column;
    }
    
    .quote-method-card {
        padding: 25px;
    }

    .catalog-redirect-box h3 {
        font-size: 1.4rem;
    }
    
    .faq-trigger {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-content p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }
}


/* ==========================================================================
   Sección de Testimonios (Fondo Oscuro y Tipografía)
   ========================================================================== */
.testimonios-section {
    background-color: #12161a; /* Ajusta al color exacto de tu fondo actual */
    padding: 60px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif; /* O la tipografía que uses */
    color: #ffffff;
    overflow: hidden; /* Evita desbordamientos del slider */
}

.testimonios-section h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ==========================================================================
   Contenedor del Slider (Flexbox/Grid para alineación)
   ========================================================================== */
.testimonios-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    /* Nota: Si usas una librería como Swiper o Slick, 
       esta alineación flexible la manejará el script automáticamente */
}

/* ==========================================================================
   Tarjetas de Testimonios (Cards)
   ========================================================================== */
.testimonio-card {
    background-color: #1a1f26; /* Gris oscuro ligeramente más claro que el fondo */
    border: 1px solid #242b35; /* Borde sutil para dar definición */
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 360px; /* Tamaño ideal para simular un teléfono/tarjeta limpia */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto Hover para interactividad */
.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: #384252;
}

/* Estrellas de calificación */
.stars {
    color: #ccff00; /* El tono amarillo/verdoso fosforescente de tus estrellas actuales */
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Nombre del cliente / Equipo */
.client-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 20px;
    color: #ffffff;
}

/* ==========================================================================
   Contenedor de la Captura de WhatsApp (El secreto de la simetría)
   ========================================================================== */
.whatsapp-screenshot-container {
    width: 100%;
    height: 250px; /* Forzamos una altura idéntica para todas las capturas */
    border-radius: 12px;
    overflow: hidden; /* Corta lo que sobresalga si la imagen es muy larga */
    background-color: #0b141a; /* Fondo oscuro por si la imagen tarda en cargar */
    border: 1px solid #2a3942;
}

.whatsapp-screenshot-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen al contenedor sin deformarla */
    object-position: top center; /* Prioriza que se vea la parte superior del chat */
    display: block;
}

/* ==========================================================================
   Controles del Slider (Flechas y Puntos)
   ========================================================================== */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    background: none;
    border: 2px solid #242b35;
    color: #ffffff;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #ffffff;
    color: #12161a;
    border-color: #ffffff;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #242b35;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.slider-dots .dot.active {
    background-color: #ccff00; /* Punto activo del color de las estrellas */
    width: 20px; /* Efecto alargado para el punto activo */
    border-radius: 4px;
}

/* ==========================================================================
   Adaptabilidad Móvil (Responsive Design)
   ========================================================================== */
@media (max-width: 768px) {
    .testimonios-slider {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .testimonio-card {
        max-width: 100%; /* Ocupa el ancho disponible en celulares */
    }

    .whatsapp-screenshot-container {
        height: 280px; /* Un poco más pequeña en pantallas chicas */
    }
}

/* ==========================================================================
   SECCIÓN: CASOS DE USO / IDEAL PARA (MAYOREO)
   ========================================================================== */

/* Contenedor Principal Centrado */
.use-cases-banner {
    max-width: 1000px;              /* Ancho máximo alineado al resto del sitio */
    margin: 40px auto;              /* Centra la sección horizontalmente y le da aire arriba/abajo */
    padding: 30px 20px;
    text-align: center;             /* Centra el título y el contenido interno */
  
}

/* Título de la sección */
.use-cases-banner h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
}



/* Grid de las tarjetas/badges */
.use-cases-grid {
    display: grid;
    /* Crear columnas dinámicas que se ajustan solas en escritorio */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Estilos de las pastillas/badges */
.use-cases-grid .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1e37;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Efecto Hover interactivo */
.use-cases-grid .badge:hover {
    background: #252525;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   RESPONSIVE (MÓVILES Y TABLETS)
   ========================================================================== */
@media (max-width: 768px) {
    .use-cases-banner {
        margin: 24px 16px;          /* Espaciado responsivo para pantallas pequeñas */
        padding: 24px 16px;
    }

    .use-cases-banner h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .use-cases-grid {
        /* En pantallas chicas, pone 1 o 2 columnas según el espacio sin romper la maqueta */
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 
        gap: 12px;
    }

    .use-cases-grid .badge {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
}

/* ==========================================================================
   SECCIÓN FEATURE SPLIT (VIDEO / TEXTO)
   ========================================================================== */

.feature-split-section {
    padding: 60px 20px;
    background-color: #0d0d0d; /* Fondo oscuro premium */
    color: #ffffff;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columnas de igual tamaño */
    gap: 40px;
    align-items: center; /* Centra verticalmente el texto con el video */
}

/* Columna de Texto */
.feature-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff0055; /* Color de acento de tu marca */
    margin-bottom: 12px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.feature-description strong {
    color: #ffffff;
}

/* Garabato o subrayado destacado */
.highlight-underline {
    position: relative;
    color: #ffffff;
    font-weight: 700;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff0055;
    border-radius: 2px;
}

/* Columna de Media (Video / Foto) */
.feature-media-col {
    width: 100%;
}

.media-wrapper {
    width: 100%;
    border-radius: 24px; /* Esquinas súper redondeadas igual a tu captura */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background-color: #1a1a1a;
    line-height: 0; /* Elimina espacio en blanco inferior en video/img */
}

.media-wrapper video,
.media-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 500px; /* Limita la altura para que no se extienda demasiado */
    object-fit: cover; /* Ajusta la toma sin deformar la imagen o video */
    display: block;
}

/* ==========================================================================
   RESPONSIVE (MÓVILES Y TABLETS)
   ========================================================================== */

@media (max-width: 992px) {
    .feature-container {
        grid-template-columns: 1fr; /* Pasa a 1 columna */
        gap: 30px;
    }

    .feature-title {
        font-size: 2rem;
    }

    .feature-text-col {
        text-align: center;
        align-items: center;
    }

    .media-wrapper {
        border-radius: 16px; /* Esquinas un poco más cerradas en celulares */
    }
}