/* css/styles.css - VERSIÓN FINAL CON PARCHE DE CLICK MÓVIL REFORZADO */

/* --- 1. CONFIGURACIÓN BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #3e4049;
    color: #ffffff;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

/* --- 2. NAVEGACIÓN --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; position: fixed; top: 0; left: 0; width: 100%;
    background-color: rgba(62, 64, 73, 0); z-index: 1000; transition: 0.4s ease;
}
.navbar.scrolled {
    background-color: rgba(44, 46, 53, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); padding: 5px 5%;
}

/* LOGO QUE SE ENCOGE */
.logo-container { width: 120px; transition: width 0.4s ease; }
.navbar.scrolled .logo-container { width: 80px; }

.nav-logo { width: 100%; display: block; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none; color: #e0e0e0;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: #FFC107; }
.hamburger { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; }

/* DROPDOWN */
.desktop-dropdown { position: relative; display: inline-block; }
.desktop-dropdown .dropdown-content {
    display: none; position: absolute; background-color: #2c2e35;
    min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; border-top: 2px solid #FFC107;
}
.desktop-dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    color: #fff; padding: 12px 16px; text-decoration: none; display: block; font-size: 0.8rem;
}
.dropdown-content a:hover { background-color: #3e4049; color: #FFC107; }

/* ICONOS PEQUEÑOS EN SUBMENÚ */
.dropdown-content img, .dropdown-content i {
    width: 16px; height: auto; vertical-align: middle; margin-right: 8px; text-align: center;
}

/* ICONO MERCADO LIBRE PNG GENÉRICO */
.ml-icon-img {
    width: 20px; height: auto; vertical-align: middle; margin-right: 8px; margin-bottom: 2px;
}

.mobile-close-btn, .mobile-sales-section { display: none; }

/* --- 3. HERO --- */
.hero {
    position: relative; height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 0 20px; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/banner.jpg'); 
    background-size: cover; background-position: center;
    filter: blur(4px); z-index: -2;
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: -1;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
    font-size: 3.5vw; font-weight: 800; text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 25px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.highlight-yellow { color: #FFC107; }
.hero-divider {
    width: 60%; max-width: 400px; height: 2px; background-color: #fff; border: none; margin: 0 auto 30px;
}
.hero-subtitle {
    font-size: 2.2vw; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 15px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-text-small { font-size: 1.2rem; font-weight: 400; letter-spacing: 1px; }

/* --- 4. HISTORIA --- */
.history-section {
    padding: 100px 8%; background-color: #35373f;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.history-visual { display: flex; flex-direction: column; gap: 20px; }
.main-history-img {
    width: 100%; height: 350px; background-color: #222; border: 1px solid #555;
    position: relative; overflow: hidden;
}
.main-history-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.5s; }
.main-history-img:hover img { transform: scale(1.05); opacity: 1; }

.values-row { display: flex; justify-content: flex-start; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.value-box {
    flex: initial; width: auto; height: auto; padding: 8px 20px; 
    background: transparent; border: 1px solid #777; border-radius: 50px; 
    color: #ccc; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s ease;
}
.value-box:hover { border-color: #FFC107; color: #FFC107; }
.value-box.active { background: #FFC107; color: #000; border-color: #FFC107; font-weight: 700; box-shadow: 0 0 15px rgba(255, 193, 7, 0.3); }

.history-content h2 { font-size: 2.5rem; margin-bottom: 25px; color: #fff; }
.history-content p { color: #b0b2b8; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; }

/* --- 5. GALERÍA --- */
.gallery-section { background-color: #2c2e35; padding: 80px 0; text-align: center; overflow: hidden; }
.gallery-header { margin-bottom: 30px; position: relative; z-index: 10; padding: 0 5%; }
.gallery-header h2 { font-size: 2.5rem; color: #fff; margin-bottom: 10px; }
.gallery-header p { color: #aaa; margin-bottom: 20px; }
.gallery-filters { display: flex; gap: 15px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 20px; border: 1px solid #FFC107; background: transparent; color: #FFC107;
    border-radius: 20px; cursor: pointer; transition: 0.3s; font-weight: 600; text-transform: uppercase; font-size: 0.8rem;
}
.filter-btn.active, .filter-btn:hover { background: #FFC107; color: #000; }

.coverflow-scene {
    position: relative; width: 100%; height: 450px; 
    display: flex; justify-content: center; align-items: center; perspective: 1000px;
}
.coverflow-list { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.coverflow-item {
    position: absolute; top: 50%; left: 50%; width: 300px; height: 400px;
    margin-left: -150px; margin-top: -200px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
}
.coverflow-content {
    width: 100%; height: 100%; background: #000; border-radius: 8px; overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); border: 1px solid #444; position: relative;
}
.coverflow-content img, .coverflow-content video { width: 100%; height: 100%; object-fit: cover; display: block; }
.coverflow-content .label {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.7); color: #fff; padding: 10px;
    font-size: 0.9rem; transform: translateY(100%); transition: 0.3s;
}
.coverflow-item.active .label { transform: translateY(0); }
.coverflow-item.active .coverflow-content { border-color: #FFC107; }

/* LIGHTBOX */
.gallery-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s;
    backdrop-filter: blur(5px);
}
.gallery-modal-overlay.active { opacity: 1; visibility: visible; }
.gallery-modal-content {
    width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; pointer-events: none; 
}
.gallery-modal-content img, .gallery-modal-content video {
    pointer-events: auto; width: auto !important; height: auto !important;
    max-width: 90vw !important; max-height: 90vh !important; 
    object-fit: contain !important; 
    border: 2px solid #FFC107; box-shadow: 0 0 50px rgba(255, 193, 7, 0.1);
    border-radius: 4px; background: #000; display: block; margin: 0 auto;
}
.close-gallery {
    position: absolute; top: 30px; right: 30px; color: #fff; font-size: 3rem; cursor: pointer;
    transition: 0.3s; z-index: 3001; pointer-events: auto;
}
.close-gallery:hover { color: #FFC107; transform: rotate(90deg); }

/* --- 6. PRODUCTOS --- */
.products-section { padding: 100px 0; background-color: #35373f; text-align: center; overflow: hidden; }
.products-header h2 { font-size: 2.5rem; color: #fff; margin-bottom: 40px; }

.products-wrapper {
    width: 100%; min-height: 450px; 
    display: flex; justify-content: center; 
    padding-bottom: 20px; overflow: hidden; position: relative;
    user-select: none;
}
.slider-track {
    display: flex; gap: 40px; width: max-content;
    padding: 0 20px; will-change: transform;
}
.products-wrapper.is-infinite { justify-content: flex-start; cursor: grab; overflow-x: hidden; }
.products-wrapper.is-infinite:active { cursor: grabbing; }

.product-card { 
    background: transparent; text-align: center; cursor: pointer; 
    transition: transform 0.3s; width: 300px; flex-shrink: 0; margin: 0 20px;
}
.product-card:hover { transform: translateY(-10px); }

.bottle-container {
    height: 350px; width: 100%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; position: relative; pointer-events: none;
}
.bottle-container img {
    max-height: 100%; width: auto; filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6)); transition: 0.3s;
}
.product-card:hover .bottle-container img { transform: scale(1.05); filter: drop-shadow(0 25px 25px rgba(0,0,0,0.8)); }

.product-info h3 { font-size: 1.5rem; margin-bottom: 10px; color: #FFC107; pointer-events: none; }
.product-info p { color: #aaa; font-size: 0.9rem; pointer-events: none; }
.btn-details { margin-top: 15px; display: inline-block; font-size: 0.8rem; text-decoration: underline; color: #fff; pointer-events: auto; }

.product-controls-mobile, .product-dots-mobile { display: none; }

/* --- 7. PROCESO --- */
.process-section { 
    padding: 80px 5%; background-color: #2c2e35; text-align: center; overflow: visible; 
}
.process-header { max-width: 800px; margin: 0 auto 50px auto; }
.process-header h2 { color: #fff; margin-bottom: 20px; font-size: 2.5rem; }
.process-desc { color: #ddd; font-size: 1rem; line-height: 1.6; margin-bottom: 15px; }
.process-instruction { color: #e57373; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; }
.process-central-stage { position: relative; width: 400px; margin: 0 auto; }
.process-main-img { width: 100%; display: block; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.process-zone { position: absolute; left: 0; width: 100%; cursor: pointer; z-index: 10; }

.zone-1 { top: 0%; height: 14%; }
.zone-2 { top: 14%; height: 14%; }
.zone-3 { top: 28%; height: 14%; }
.zone-4 { top: 42%; height: 18%; }
.zone-5 { top: 60%; height: 15%; }
.zone-6 { top: 75%; height: 13%; }
.zone-7 { top: 88%; height: 12%; }

.info-tooltip {
    position: absolute; top: 50%; transform: translateY(-50%); width: 320px; padding: 20px; text-align: left;
    opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none;
    background: rgba(0, 0, 0, 0.95); border: 1px solid #FFC107; border-radius: 4px; z-index: 100; box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}
.process-zone:hover .info-tooltip { opacity: 1; visibility: visible; }
.info-tooltip h3 { 
    color: #FFC107; font-size: 0.95rem; margin-bottom: 10px; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid #555; padding-bottom: 5px; 
}
.info-tooltip p { color: #fff; font-size: 0.8rem; line-height: 1.5; margin: 0; }
.connector-line { position: absolute; top: 50%; height: 1px; background-color: #FFC107; width: 0; transition: width 0.3s; }
.left-side { right: 100%; margin-right: 50px; }
.left-side .connector-line { left: 100%; }
.process-zone:hover .left-side .connector-line { width: 50px; }
.right-side { left: 100%; margin-left: 50px; }
.right-side .connector-line { right: 100%; }
.process-zone:hover .right-side .connector-line { width: 50px; }

/* --- 8. CONTACTO --- */
.contact-section { padding: 80px 8%; background-color: #3e4049; text-align: center; }
.contact-form { max-width: 600px; margin: 30px auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    padding: 15px; background: rgba(0,0,0,0.2); border: 1px solid #555; color: #fff; font-family: inherit;
}
.contact-form button {
    padding: 15px; background: #FFC107; color: #000; font-weight: bold; border: none; cursor: pointer; text-transform: uppercase;
}

/* --- 9. FOOTER --- */
.main-footer { background-color: #1a1a1a; padding: 50px 20px; text-align: center; border-top: 1px solid #333; }
.footer-socials { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; flex-wrap: wrap; }
.social-link { color: #fff; font-size: 1.8rem; transition: color 0.3s, transform 0.3s; }
.social-link:hover { color: #FFC107; transform: translateY(-5px); }
.marketplace-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }
.market-link { color: #ccc; text-decoration: none; font-size: 0.9rem; border: 1px solid #555; padding: 8px 15px; border-radius: 4px; transition: 0.3s; }
.market-link:hover { border-color: #FFC107; color: #FFC107; }
.footer-legal { margin-top: 20px; }
.privacy-link { color: #888; text-decoration: none; font-size: 0.8rem; border-bottom: 1px solid transparent; cursor: pointer; }
.privacy-link:hover { color: #FFC107; border-bottom-color: #FFC107; }

/* --- 10. MODALES & AGE GATE --- */
.security-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.98); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s; padding: 20px;
}
.security-overlay.active { opacity: 1; visibility: visible; }
.age-gate-content {
    background-color: #151515; border: 2px solid #FFC107; padding: 40px;
    max-width: 500px; width: 100%; text-align: center; box-shadow: 0 0 50px rgba(255, 193, 7, 0.1);
}
.age-gate-title { color: #FFC107; font-size: 2rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 2px; }
.age-gate-subtitle { color: #fff; font-size: 1.2rem; font-weight: 600; margin-bottom: 25px; }
.age-gate-text { color: #ccc; font-size: 0.9rem; margin-bottom: 30px; line-height: 1.5; }
.age-gate-text a { color: #FFC107; text-decoration: underline; cursor: pointer; }
.age-gate-actions { display: flex; flex-direction: column; gap: 15px; }
.btn-age-confirm { background: #FFC107; color: #000; padding: 15px; border: none; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.btn-age-exit { background: #333; color: #fff; padding: 15px; border: none; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.simple-privacy-content {
    background-color: #fff; color: #333; padding: 40px; max-width: 600px; width: 100%;
    position: relative; text-align: left; border-radius: 4px;
}
.close-simple { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; color: #000; cursor: pointer; }
.simple-title { color: #cfa333; font-size: 1.8rem; margin-bottom: 25px; font-weight: 600; }
.simple-text { font-size: 0.95rem; line-height: 1.6; color: #555; margin-bottom: 30px; }
.simple-text strong { color: #000; }
.btn-read-integral {
    background: #cfa333; color: #000; padding: 15px 30px; border: none;
    font-weight: 800; text-transform: uppercase; cursor: pointer; display: block; margin: 0 auto;
}
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s; padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.close-modal { 
    position: absolute; top: 15px; right: 20px; font-size: 2.5rem; color: #fff; cursor: pointer; z-index: 100;
    background: rgba(0,0,0,0.5); width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.product-modal-content {
    background: #2c2e35; width: 900px; max-width: 100%; display: flex;
    border: 1px solid #444; box-shadow: 0 0 50px rgba(0,0,0,0.8);
    position: relative; border-radius: 5px; overflow: hidden;
    max-height: 90vh; 
}
.modal-img-col { width: 40%; background: radial-gradient(circle at center, #383838 0%, #1a1a1a 100%); display: flex; align-items: flex-end; justify-content: center; padding: 40px 20px 20px 20px; }
.modal-img-col img { max-height: 400px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.modal-text-col { width: 100%; padding: 50px; text-align: left; overflow-y: auto; }
.modal-text-col h2 { color: #FFC107; font-size: 2.5rem; margin-bottom: 20px; }
.modal-text-col p { color: #ccc; margin-bottom: 20px; line-height: 1.6; }
.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; border-top: 1px solid #444; padding-top: 20px; }
.spec-item strong { color: #fff; display: block; margin-bottom: 5px; }
.spec-item span { color: #bbb; font-size: 0.9rem; }
.process-modal-content {
    background: #2c2e35; width: 90%; max-width: 400px; padding: 30px;
    border: 1px solid #FFC107; text-align: center; position: relative; border-radius: 5px;
}
.privacy-modal-content {
    background-color: #151515; width: 800px; max-width: 95%; height: 90vh;
    border-radius: 8px; display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.8); border: 1px solid #333;
}
.privacy-header { padding: 25px; text-align: center; border-bottom: 1px solid #333; background-color: #1a1a1a; }
.privacy-header h2 { color: #FFC107; font-size: 2rem; text-transform: uppercase; letter-spacing: 2px; }
.privacy-body { padding: 40px; overflow-y: auto; color: #ddd; font-size: 0.9rem; line-height: 1.8; text-align: left; }
.privacy-body h3 { color: #FFC107; margin-top: 25px; margin-bottom: 10px; font-size: 1rem; }
.privacy-body ul { margin-left: 20px; margin-bottom: 15px; }
.privacy-body li { margin-bottom: 5px; color: #bbb; }
.privacy-body p { margin-bottom: 15px; }
.privacy-body strong { color: #fff; }
.privacy-body a { color: #FFC107; text-decoration: none; }
.privacy-footer { padding: 20px; background-color: #1a1a1a; text-align: center; border-top: 1px solid #333; }
.btn-privacy-close {
    background-color: #FFC107; color: #000; border: none; padding: 12px 30px;
    font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.btn-privacy-close:hover { background-color: #dcb348; }

/* WHATSAPP */
.whatsapp-wrapper {
    position: fixed; bottom: 30px; right: 30px; z-index: 9991; 
    display: flex; flex-direction: column; align-items: center; transition: transform 0.3s ease, opacity 0.3s ease;
}
.whatsapp-btn {
    background: #25d366; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px; color: #fff; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }
.close-wa {
    position: absolute; top: -10px; right: -5px; background: #ff5252; color: white;
    width: 20px; height: 20px; border-radius: 50%; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.3); border: 1px solid #fff;
}
.close-wa:hover { background: #d32f2f; transform: scale(1.2); }

/* --- RESPONSIVE MÓVIL (CORREGIDO) --- */
@media (max-width: 900px) {
    .navbar { background-color: rgba(44, 46, 53, 0.95); }
    .hamburger { display: block; }
    
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; 
        background-color: #222; flex-direction: column; 
        align-items: center; justify-content: flex-start;
        gap: 30px; transition: 0.4s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.5); 
        padding-top: 80px; overflow-y: auto; z-index: 1001; 
    }
    .nav-links.active { right: 0; }
    
    .mobile-close-btn { 
        display: block; position: absolute; top: 20px; right: 30px; 
        font-size: 2rem; color: #FFC107; cursor: pointer; 
    }

    .desktop-dropdown { display: none; }

    .mobile-sales-section { 
        display: flex; flex-direction: column; align-items: center; width: 80%; margin-top: 20px; 
    }
    .mobile-divider { width: 100%; height: 1px; background: #555; margin-bottom: 20px; }
    .mobile-sales-title { color: #FFC107; font-weight: 800; letter-spacing: 2px; margin-bottom: 15px; }
    .mobile-sales-links { display: flex; gap: 20px; }
    .mobile-sales-links a { 
        border: 1px solid #777; padding: 10px 15px; border-radius: 4px; font-size: 0.8rem; 
    }

    .hero-title { font-size: 2.5rem; }
    .history-section { grid-template-columns: 1fr; display: flex; flex-direction: column-reverse; }
    .main-history-img { height: auto; aspect-ratio: 1/1; width: 100%; }
    .values-row { justify-content: center; gap: 8px; }
    .value-box { font-size: 0.7rem; padding: 8px 16px; }
    .coverflow-item { width: 220px; height: 300px; margin-left: -110px; margin-top: -150px; }
    .coverflow-scene { height: 400px; }
    
    /* CORRECCIÓN SLIDER: SCROLL VISIBLE Y SIN BARRA */
    .products-wrapper { 
        display: block; 
        width: 100%; 
        overflow-x: auto; 
        padding-bottom: 0; 
        cursor: default; 
        min-height: auto; 
        scroll-snap-type: x mandatory; 
        scroll-behavior: smooth;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    .products-wrapper::-webkit-scrollbar { display: none; }

    .products-wrapper.is-infinite { justify-content: flex-start; }
    
    .slider-track {
        display: flex !important; 
        width: max-content !important; 
        gap: 0 !important; 
        justify-content: flex-start !important;
        transform: none !important;
        padding: 0;
        overflow: visible !important; 
    }

    /* CENTRADO DE TARJETAS EN MÓVIL */
    .product-card { 
        min-width: 100vw; 
        width: 100vw; 
        margin: 0; 
        scroll-snap-align: center; 
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center;
        padding: 0;
    }
    .bottle-container { height: 300px; } 
    
    .product-controls-mobile { display: none; }
    
    .product-dots-mobile { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
    .dot { width: 10px; height: 10px; background: #555; border-radius: 50%; cursor: pointer; }
    .dot.active { background: #fff; }

    .product-modal-content { flex-direction: column; height: 85vh; }
    .modal-img-col { width: 100%; flex: 0 0 320px; padding: 30px 20px 0 20px; background: radial-gradient(circle at center, #383838 0%, #1a1a1a 100%); }
    .modal-img-col img { width: auto; height: 100%; object-fit: contain; }
    .modal-text-col { width: 100%; padding: 25px; background: #2c2e35; flex: 1; }
    
    .process-central-stage { width: 90%; max-width: 350px; pointer-events: auto; }
    
    /* FIX MÁXIMO PARA CLICK EN MÓVIL (ZONA INVISIBLE PERO REAL) */
    .process-zone { 
        background-color: rgba(255, 255, 255, 0.01); /* CASI INVISIBLE PERO TANGIBLE */
        z-index: 50; /* ENCIMA DE TODO */
        cursor: pointer;
        -webkit-tap-highlight-color: transparent; /* QUITA EL FLASH AZUL */
    }
    
    .info-tooltip { display: none !important; } 
    .footer-socials { gap: 20px; }
    .marketplace-links { flex-direction: column; gap: 15px; }
    .privacy-modal-content { height: 100vh; width: 100%; border-radius: 0; }
    .privacy-body { padding: 20px; }
    .close-gallery { top: 10px; right: 10px; background: rgba(0,0,0,0.5); width: 40px; height: 40px; text-align: center; line-height: 40px; border-radius: 50%; font-size: 1.5rem; }
}
