/* =========================================
   BASE SÓLIDA - ESTILOS GLOBALES & CURSOR
   ========================================= */
   
/* --- CURSOR RAYO DE BOWIE --- */
body, html { 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; 
    background: #000; 
    font-family: 'Bangers', cursive; 
    color: #000; 
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='48' viewBox='0 0 36 48'><path d='M16 0 L0 26 L14 26 L4 48 L36 18 L20 18 Z' fill='%23FF69B4' stroke='%23000' stroke-width='2'/><polygon points='16,0 0,26 8,26 20,6' fill='%2300FFFF'/></svg>") 16 0, auto;
}

/* Rayo Interactivo (Hover) */
a, 
button, 
select, 
input, 
textarea, 
.card, 
.comic-card, 
.menu-reserva-card, 
.btn-persona, 
.btn-submit-reserva, 
.carousel-nav-btn, 
.social-icon-btn {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='48' viewBox='0 0 36 48'><path d='M16 0 L0 26 L14 26 L4 48 L36 18 L20 18 Z' fill='%23FFD700' stroke='%23000' stroke-width='2'/><polygon points='16,0 0,26 8,26 20,6' fill='%23FF69B4'/></svg>") 16 0, pointer !important;
}

/* EDITOR DISIMULADO */
.admin-trigger { 
    position: fixed; 
    bottom: 5px; 
    left: 5px; 
    z-index: 10005; 
    width: 15px; 
    height: 15px; 
    background: rgba(255,255,255,0.02); 
    border: none; 
    cursor: pointer; 
    border-radius: 50%;
}

/* NAVEGACIÓN Y MENÚ - CONTROL ESTRICTO POR REACT */
.nav-container-wrapper { 
    position: fixed; 
    top: 0; 
    right: 0; 
    width: 100px; 
    height: 100px; 
    z-index: 10000; 
}

.nav-menu {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    background: #FFD700; 
    z-index: 10000; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    transform: translateY(-100%); 
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    pointer-events: none;
}

.nav-menu.open { 
    transform: translateY(0); 
    pointer-events: auto; 
}

.h-btn.open { 
    background: #FF69B4; 
    border-color: #000; 
    transform: rotate(90deg); 
}

.nav-links button {
    display: block; 
    background: none; 
    border: none; 
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 8vw, 4rem); 
    color: #000; 
    cursor: pointer;
    margin: 10px 0; 
    transition: 0.3s; 
    text-shadow: 4px 4px 0 #FF69B4;
    position: relative; 
    z-index: 10002;
}

.nav-links button:hover { 
    transform: scale(1.1) rotate(-2deg); 
    color: #fff; 
}

.h-btn {
    position: fixed; 
    top: 25px; 
    right: 25px; 
    z-index: 10001;
    background: #FFD700; 
    border: 4px solid #000; 
    width: 65px; 
    height: 65px;
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    gap: 6px; 
    transition: 0.4s;
}

.h-btn span { 
    width: 30px; 
    height: 4px; 
    background: #000; 
    display: block; 
    border-radius: 2px; 
}

/* ANIMACIONES */
@keyframes cartoonWobble {
    0% { transform: rotate(-1deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.05); }
    100% { transform: rotate(-1deg) scale(1); }
}

/* HERO SECTION */
.hero-section { 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    position: relative; 
    z-index: 5;
}

.home-bg { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    background: #000; 
    pointer-events: none;
}

.home-bg video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.6; 
}

.overlay-vignette { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8) 100%); 
    pointer-events: none; 
    z-index: 1; 
}

.epic-header { 
    position: relative; 
    width: 100%; 
    text-align: center; 
    padding: 80px 10px 40px 10px; 
    z-index: 10; 
    box-sizing: border-box; 
}

.epic-title {
    font-size: clamp(3rem, 12vw, 10rem); 
    color: #FFD700;
    text-shadow: 8px 8px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
    transform: rotate(-3deg); 
    display: inline-block; 
    line-height: 0.85; 
    margin: 0;
}

.fan-container { 
    position: relative; 
    z-index: 10; 
    width: 90%; 
    max-width: 550px; 
    aspect-ratio: 16/9; 
    margin: 40px 0; 
    perspective: 1000px; 
}

.card { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    border: 8px solid #000; 
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 12px 12px 0 rgba(0,0,0,0.8); 
    box-sizing: border-box; 
    overflow: hidden; 
    cursor: pointer; 
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.card-yellow { 
    background: #FFD700; 
    z-index: 1; 
    transform: rotate(-5deg); 
    color: #000; 
    text-align: center; 
    text-shadow: 2px 2px 0 #fff; 
}

.card-yellow span { 
    display: inline-block; 
    animation: cartoonWobble 0.6s infinite; 
    font-size: clamp(3rem, 9vw, 5rem); 
    line-height: 0.9; 
}

.card-pink { 
    background: #FF69B4; 
    z-index: 2; 
    transform: rotate(5deg); 
    color: #fff; 
    text-shadow: 4px 4px 0 #000; 
    text-align: center; 
}

.card-pink span { 
    display: inline-block; 
    animation: cartoonWobble 0.8s infinite reverse; 
    font-size: clamp(2.2rem, 6.5vw, 4rem); 
    line-height: 0.9; 
}

.card-main { 
    background: #000; 
    z-index: 3; 
    overflow: hidden; 
    border-color: #FFD700; 
}

.card-main img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* BOTONES INTERACTIVOS DE LAS TARJETAS */
.card-btn {
    background: #fff;
    color: #000;
    border: 4px solid #000;
    padding: 8px 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 6px 6px 0 #000;
    transition: 0.1s;
    text-transform: uppercase;
    text-shadow: none !important;
}

.card-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #000;
}

.card-btn:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 #000;
}

/* Colores específicos de los botones según la tarjeta */
.card-yellow .card-btn { background: #FF69B4; color: #fff; }
.card-yellow .card-btn:active { background: #00FFFF; color: #000; }

.card-pink .card-btn { background: #00FFFF; color: #000; }
.card-pink .card-btn:active { background: #FFD700; color: #000; }

.card-main .card-btn { background: #FF69B4; color: #fff; }
.card-main .card-btn:active { background: #FFD700; color: #000; }

/* HOVER EN PC Y CLASE "ABIERTAS" PARA TABLET/MÓVIL */
@media (min-width: 769px) {
    .fan-container:hover .card-yellow, .fan-container.abiertas .card-yellow { 
        transform: translateX(-95%) rotate(-15deg) scale(1.05); 
    }
    .fan-container:hover .card-pink, .fan-container.abiertas .card-pink { 
        transform: translateX(95%) rotate(15deg) scale(1.05); 
    }
    .fan-container:hover .card-main, .fan-container.abiertas .card-main { 
        transform: scale(1.05) rotate(1deg); 
    }
}

/* SECCIÓN HISTORIA (TÚ QUE SABRÁS) - FONDO DINÁMICO MULTICOLOR */
.history-section-wrapper { 
    position: relative;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF69B4'%3E%3Cpath d='M100 150q40-50 90-10t-20 80q-50 30-70-70'/%3E%3Ccircle cx='210' cy='120' r='25'/%3E%3Ccircle cx='250' cy='90' r='10'/%3E%3Ccircle cx='80' cy='220' r='15'/%3E%3Cpath d='M600 650q50-40 100 0t-30 90q-60 20-70-90'/%3E%3Ccircle cx='720' cy='610' r='18'/%3E%3C/g%3E%3Cg fill='%23FFD700'%3E%3Cpath d='M400 100q60-30 90 20t-40 80q-50 10-50-100'/%3E%3Ccircle cx='510' cy='180' r='20'/%3E%3Ccircle cx='540' cy='210' r='8'/%3E%3Ccircle cx='350' cy='80' r='12'/%3E%3Cpath d='M150 600q30-60 80-10t-20 70q-40 30-60-60'/%3E%3Ccircle cx='250' cy='550' r='22'/%3E%3C/g%3E%3Cg fill='%2300FFFF'%3E%3Cpath d='M650 300q50-50 100 0t-20 80q-60 30-80-80'/%3E%3Ccircle cx='770' cy='250' r='30'/%3E%3Ccircle cx='620' cy='380' r='15'/%3E%3Cpath d='M250 350q40-40 90 0t-30 80q-50 20-60-80'/%3E%3Ccircle cx='180' cy='300' r='18'/%3E%3Ccircle cx='150' cy='270' r='7'/%3E%3C/g%3E%3Cg fill='%23000000'%3E%3Cpath d='M500 500q50-40 90 10t-30 80q-50 20-60-90'/%3E%3Ccircle cx='620' cy='460' r='20'/%3E%3Ccircle cx='660' cy='430' r='10'/%3E%3Ccircle cx='460' cy='580' r='14'/%3E%3Cpath d='M50 400q30-30 70 0t-20 60q-40 20-50-60'/%3E%3Ccircle cx='130' cy='360' r='12'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 800px 800px;
    padding: 120px 20px; 
    border-top: 12px solid #000; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.history-section-title {
    background: #000; 
    color: #FFD700; 
    padding: 25px 60px; 
    border: 8px solid #FF69B4; 
    transform: rotate(-4deg); 
    box-shadow: 15px 15px 0 #FF69B4; 
    font-size: clamp(3rem, 8vw, 5rem); 
    margin-bottom: 80px; 
    text-align: center;
    position: relative; 
    z-index: 5;
}

.history-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 60px; 
    max-width: 1400px; 
    width: 100%;
    position: relative; 
    z-index: 5;
}

/* ALAS REALISTAS Y DETALLADAS */
.wing-silhouette {
    position: absolute; 
    width: 450px; 
    height: 700px;
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center; 
    opacity: 0.15; 
    pointer-events: none; 
    z-index: 1;
}

.wing-left {
    left: -120px; 
    top: 50%; 
    transform: translateY(-50%) rotate(-10deg);
    background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M494,86 c-32-15-74-25-117-21 c-53,5-103,30-143,68 C186,178,142,233,101,295 C82,324,57,358,26,375 c27,1,53-11,74-29 c-10,21-25,41-47,53 c28-1,54-15,74-34 c-12,23-31,43-55,54 c31-3,59-20,79-43 c-11,21-27,41-50,53 c31-2,59-21,79-45 c-1,10-6,19-14,26 c30-11,54-35,69-63 c5-10,8-21,8-32 c10,13,16,29,16,46 c18-24,25-54,20-84 c16,12,28,30,31,50 c11-30,8-64-8-92 c17,9,32,22,41,40 C436,252,430,204,401,164 c24,6,45,21,57,42 C467,165,455,119,494,86 Z" fill="black"/></svg>');
}

.wing-right {
    right: -120px; 
    top: 50%; 
    transform: translateY(-50%) rotate(10deg) scaleX(-1);
    background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M494,86 c-32-15-74-25-117-21 c-53,5-103,30-143,68 C186,178,142,233,101,295 C82,324,57,358,26,375 c27,1,53-11,74-29 c-10,21-25,41-47,53 c28-1,54-15,74-34 c-12,23-31,43-55,54 c31-3,59-20,79-43 c-11,21-27,41-50,53 c31-2,59-21,79-45 c-1,10-6,19-14,26 c30-11,54-35,69-63 c5-10,8-21,8-32 c10,13,16,29,16,46 c18-24,25-54,20-84 c16,12,28,30,31,50 c11-30,8-64-8-92 c17,9,32,22,41,40 C436,252,430,204,401,164 c24,6,45,21,57,42 C467,165,455,119,494,86 Z" fill="black"/></svg>');
}

/* CARRUSEL DE IMÁGENES - ALTURA IGUALADA (ASPECT RATIO 4/5) */
.carousel-panel { 
    position: relative; 
    border: 10px solid #000; 
    background: #eee; 
    box-shadow: 20px 20px 0 #FF69B4; 
    aspect-ratio: 4/5; 
    overflow: visible; 
    display: flex; 
    flex-direction: column;
    z-index: 10; 
    width: 100%;
}

.marco-insolente-tag {
    position: absolute; 
    top: -35px; 
    left: 50%; 
    transform: translateX(-50%);
    background: #FFD700; 
    color: #000; 
    padding: 10px 30px; 
    border: 6px solid #000;
    font-size: 2rem; 
    z-index: 20; 
    box-shadow: 6px 6px 0 #000; 
    white-space: nowrap;
}

.carousel-images-container { 
    position: relative; 
    flex-grow: 1; 
    overflow: hidden; 
    background: #000; 
}

.carousel-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    position: absolute; 
    transition: opacity 0.5s ease-in-out; 
}

.carousel-nav-btn {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    background: #FF69B4; 
    border: 4px solid #000; 
    color: #000;
    padding: 10px 15px; 
    font-size: 1.8rem; 
    cursor: pointer;
    z-index: 30; 
    transition: 0.2s; 
    box-shadow: 4px 4px 0 #000;
}

.carousel-nav-btn:hover { 
    transform: translateY(-53%); 
    background: #FFD700; 
}

.carousel-nav-btn.prev { 
    left: -25px; 
}

.carousel-nav-btn.next { 
    right: -25px; 
}

.carousel-counter {
    position: absolute; 
    bottom: 15px; 
    right: 15px; 
    background: rgba(0,0,0,0.8); 
    color: #FFD700; 
    padding: 5px 15px; 
    border: 3px solid #FFD700; 
    font-size: 1.2rem; 
    z-index: 30;
}

/* EFECTO LIBRO / PÁGINAS 3D - ALTURA IGUALADA */
.book-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5; 
    perspective: 2000px;
    transform: rotate(1deg); 
    z-index: 10;
}

.book-page {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: #fff; 
    border: 10px solid #000; 
    box-shadow: 20px 20px 0 #FFD700;
    padding: 70px 40px 40px 40px; 
    transform-origin: left center;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.6s ease;
    display: flex; 
    flex-direction: column;
    backface-visibility: hidden;
    box-sizing: border-box;
}

.book-page.turned {
    transform: rotateY(-180deg);
    opacity: 0;
    pointer-events: none;
}

.history-tag { 
    position: absolute; 
    top: -30px; 
    left: 20px; 
    background: #000; 
    color: #FFD700; 
    padding: 15px 30px; 
    border: 6px solid #FF69B4; 
    font-size: 2rem; 
    transform: rotate(-3deg); 
    z-index: 20; 
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.page-text-content { 
    font-size: 2rem; 
    line-height: 1.1; 
    color: #000; 
    text-transform: uppercase; 
    outline: none; 
    flex-grow: 1; 
    overflow-y: auto; 
    padding-right: 10px;
}

.page-text-content::-webkit-scrollbar { 
    width: 8px; 
}

.page-text-content::-webkit-scrollbar-thumb { 
    background: #FF69B4; 
    border: 2px solid #000; 
}

.page-nav-controls {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 20px; 
    border-top: 4px dashed #000; 
    padding-top: 15px;
}

.page-btn {
    background: #FF69B4; 
    color: #fff; 
    border: 4px solid #000; 
    font-family: 'Bangers', cursive;
    font-size: 1.5rem; 
    padding: 5px 15px; 
    cursor: pointer; 
    box-shadow: 4px 4px 0 #000; 
    transition: 0.2s;
}

.page-btn:hover:not(:disabled) { 
    transform: translate(2px, 2px); 
    box-shadow: 0 0 0 #000; 
    background: #FFD700; 
    color: #000; 
}

.page-btn:disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
    box-shadow: 0 0 0 #000; 
    transform: translate(4px, 4px); 
    color: #000; 
}

.page-number { 
    font-size: 1.5rem; 
    color: #000; 
    background: #eee; 
    padding: 5px 15px; 
    border: 3px solid #000; 
}

/* SECCIONES EDITABLES */
.page-section { 
    padding: 120px 20px; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-top: 12px solid #000; 
    background: #fff; 
    position: relative;
    z-index: 10;
}

.section-title { 
    background: #FFD700; 
    padding: 20px 50px; 
    border: 8px solid #000; 
    transform: rotate(-2deg); 
    box-shadow: 12px 12px 0 #FF69B4; 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: 80px; 
    text-align: center; 
}

.comic-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 50px; 
    width: 100%; 
    max-width: 1300px; 
}

.comic-card { 
    background: #fff; 
    border: 8px solid #000; 
    padding: 25px; 
    box-shadow: 15px 15px 0 #FF69B4; 
    transition: 0.3s; 
}

.comic-card img { 
    width: 100%; 
    height: 320px; 
    object-fit: cover; 
    border: 6px solid #000; 
    background: #eee; 
}

/* UBICACIÓN Y MAPA LIMPIO (SIN BOCADILLOS) */
.yellow-brick-road {
    background: #FFD700; 
    padding: 120px 20px; 
    border-top: 12px solid #000;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    background-image: linear-gradient(90deg, rgba(0,0,0,0.07) 3px, transparent 3px), linear-gradient(rgba(0,0,0,0.07) 3px, transparent 3px);
    background-size: 80px 40px;
    position: relative;
    z-index: 10;
}

.map-container { 
    background: #fff; 
    border: 10px solid #000; 
    width: 100%; 
    max-width: 1000px; 
    box-shadow: 25px 25px 0 #FF69B4; 
    position: relative; 
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.map-container:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 25px 33px 0 #FF69B4;
}

.map-frame { 
    width: 100%; 
    height: 450px; 
    border: none; 
    display: block; 
}

.map-link-tag { 
    position: absolute; 
    top: -60px; 
    left: 50%; 
    transform: translateX(-50%) rotate(-2deg);
    background: #000; 
    color: #FFD700; 
    padding: 20px 40px; 
    border: 8px solid #FF69B4; 
    font-size: clamp(1.2rem, 4vw, 2.2rem); 
    z-index: 60; 
    text-decoration: none; 
    transition: 0.3s;
    white-space: nowrap;
}

.map-link-tag:hover { 
    transform: translateX(-50%) rotate(0deg) scale(1.05); 
    background: #FF69B4; 
    color: #000; 
}

.cta { 
    background: #FF69B4; 
    color: #fff; 
    border: 6px solid #000; 
    padding: 18px 45px; 
    font-size: 2rem; 
    cursor: pointer; 
    box-shadow: 8px 8px 0 #000; 
    text-decoration: none; 
    display: inline-block; 
    transition: 0.2s; 
}

.cta:hover { 
    transform: translate(4px, 4px); 
    box-shadow: 0 0 0 #000; 
    background: #FFD700; 
    color: #000; 
}

footer { 
    background: #000; 
    color: #fff; 
    padding: 100px 20px; 
    text-align: center; 
    border-top: 12px solid #FF69B4; 
    position: relative;
    z-index: 10;
}

.footer-logo { 
    font-size: 4rem; 
    color: #FFD700; 
    text-shadow: 4px 4px 0 #FF69B4; 
    margin-bottom: 20px; 
}

/* --- ESTILOS MEJORADOS PARA RESERVAS --- */
.reservas-wrapper {
    padding: 120px 20px; 
    min-height: 100vh; 
    background-color: #FF69B4;
    background-image: radial-gradient(#000 2px, transparent 2px);
    background-size: 30px 30px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-top: 12px solid #000;
    position: relative;
    z-index: 10;
}

.reservas-layout {
    display: flex; 
    gap: 50px; 
    width: 100%; 
    max-width: 1300px; 
    margin-top: 40px;
    align-items: stretch;
}

/* CAJA IZQUIERDA: FORMULARIO TEXTURIZADO */
.reservas-col {
    flex: 1; 
    background: #fff url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="white"/><circle cx="50" cy="50" r="1.5" fill="%23ddd"/></svg>'); 
    border: 8px solid #000; 
    padding: 40px;
    box-shadow: 15px 15px 0 #000;
    display: flex;
    flex-direction: column;
}

.reserva-input-group { 
    margin-bottom: 30px; 
}

.reserva-label { 
    display: inline-block; 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
    color: #FFD700; 
    text-shadow: 3px 3px 0 #000;
    text-transform: uppercase; 
    transform: rotate(-1deg);
    letter-spacing: 1px;
}

.reserva-input {
    width: 100%; 
    padding: 15px; 
    font-family: 'Bangers', cursive; 
    font-size: 1.8rem;
    border: 5px solid #000; 
    box-sizing: border-box; 
    background: #fff;
    box-shadow: 6px 6px 0 #FF69B4;
    transition: 0.2s;
    border-radius: 0;
}

.reserva-input:focus, 
.reserva-input:hover { 
    background: #FFD700; 
    outline: none; 
    box-shadow: 4px 4px 0 #00FFFF;
    transform: translate(2px, 2px);
}

.personas-control { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.btn-persona { 
    background: #00FFFF; 
    border: 5px solid #000; 
    font-size: 2.5rem; 
    font-family: 'Bangers', cursive; 
    width: 60px; 
    height: 60px; 
    box-shadow: 6px 6px 0 #000; 
    transition: 0.1s; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.btn-persona:active { 
    transform: translate(6px, 6px); 
    box-shadow: 0 0 0 #000; 
}

.personas-display { 
    font-size: 4rem; 
    min-width: 70px; 
    text-align: center; 
    color: #fff;
    text-shadow: 4px 4px 0 #000;
}

.btn-submit-reserva {
    width: 100%; 
    background: #FFD700; 
    color: #000; 
    font-family: 'Bangers', cursive; 
    font-size: 2.5rem;
    padding: 20px; 
    border: 6px solid #000; 
    box-shadow: 8px 8px 0 #000; 
    transition: 0.2s; 
    margin-top: auto;
    text-shadow: 2px 2px 0 #fff;
}

.btn-submit-reserva:hover { 
    background: #00FFFF; 
    transform: translate(4px, 4px); 
    box-shadow: 4px 4px 0 #000; 
}

/* CAJA DERECHA: MENÚS ACORDEÓN SIMÉTRICOS */
.eventos-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: 100%;
}

.evento-card {
    background: #fff;
    border: 6px solid #000;
    box-shadow: 10px 10px 0 #000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.evento-header {
    padding: 25px;
    background: #FFD700;
    border-bottom: 0px solid #000;
    transition: 0.3s;
    flex: 1;
    display: flex;
    align-items: center;
}

.evento-card h3 {
    font-size: 2.5rem;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #fff;
    transition: 0.3s;
}

.evento-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    background: #fff;
}

.evento-card.expanded .evento-body-wrapper,
.evento-card:hover .evento-body-wrapper {
    grid-template-rows: 1fr;
}

.evento-card.expanded .evento-header,
.evento-card:hover .evento-header {
    background: #FF69B4;
    border-bottom: 6px solid #000;
    flex: 0 1 auto;
}

.evento-card.expanded h3,
.evento-card:hover h3 {
    color: #fff;
    text-shadow: 3px 3px 0 #000;
    transform: scale(1.05) rotate(-1deg);
}

.evento-body {
    overflow: hidden;
}

.evento-content {
    padding: 25px;
    font-family: sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: bold;
}

.btn-dm-insta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    padding: 10px 20px;
    border: 4px solid #000;
    box-shadow: 4px 4px 0 #FF69B4;
    transition: 0.2s;
    margin-top: 20px;
    text-decoration: none;
}

.btn-dm-insta:hover {
    background: #FF69B4;
    color: #000;
    box-shadow: 4px 4px 0 #FFD700;
    transform: translate(-2px, -2px);
}

/* --- ESTILOS CONTACTO / INSTA / CLUB / REDES --- */
.contacto-wrapper { 
    padding: 120px 20px; 
    min-height: 100vh; 
    background-color: #FFD700; 
    background-image: radial-gradient(#000 2px, transparent 2px); 
    background-size: 30px 30px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-top: 12px solid #000; 
    position: relative;
    z-index: 10;
}

/* Mockup Horizontal Full Width */
.insta-horizontal-card { 
    background-color: #ff69b4 !important; /* El rosa de la marca */
    /* Creamos manchas de diferentes colores y posiciones */
    background-image: 
        radial-gradient(circle at 20% 30%, #00ffff 10%, transparent 12%),
        radial-gradient(circle at 80% 70%, #ffff00 8%, transparent 10%),
        radial-gradient(circle at 50% 10%, #00ff00 6%, transparent 8%),
        radial-gradient(circle at 12% 80%, #ffff00 12%, transparent 14%),
        radial-gradient(circle at 85% 25%, #00ffff 7%, transparent 9%);
    background-repeat: no-repeat !important;
    border: 6px solid #000 !important;
    padding: 20px !important;
    border-radius: 0 !important;
    box-shadow: 12px 12px 0px #000 !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
    width: 100%; 
    max-width: 1300px; 
    display: flex; 
    gap: 40px; 
    align-items: center; 
    flex-wrap: wrap; 
    margin-bottom: 40px; 
    margin-top: 40px;
}

.insta-horizontal-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px #000 !important;
}

.insta-profile-section { 
    flex: 1; 
    min-width: 300px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.insta-header { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.insta-avatar { 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    border: 4px solid #000; 
    object-fit: cover; 
}

.insta-info h3 { 
    margin: 0; 
    font-size: 2.5rem; 
    font-family: sans-serif; 
    letter-spacing: -1px; 
}

/* ESTADÍSTICAS LIMPIAS Y LEGIBLES */
.insta-stats {
    display: flex;
    gap: 30px; /* Más espacio entre los dos datos */
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 2px solid #000;
}

.insta-stats span {
    color: #000 !important;
    font-family: 'Arial Black', sans-serif !important;
    font-size: 1.1rem !important; /* Aumentamos tamaño */
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    /* Eliminamos sombras que emborronan */
    text-shadow: none !important;
}

/* BIO CON MÁXIMO CONTRASTE */
.insta-bio {
    white-space: pre-line;
    color: #000 !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.5;
    font-weight: 700 !important;
    margin-top: 15px;
    /* Fondo sutil detrás del texto para asegurar lectura si hay manchas */
    background: rgba(255, 255, 255, 0.15);
    padding: 5px;
    border-radius: 4px;
}

.btn-seguir { 
    display: block; 
    width: 100%; 
    background: #00FFFF; 
    color: #000; 
    text-align: center; 
    padding: 15px; 
    font-family: 'Bangers', cursive; 
    font-size: 2rem; 
    border: 4px solid #000; 
    text-decoration: none; 
    box-shadow: 6px 6px 0 #000; 
    transition: 0.2s; 
}

.btn-seguir:hover { 
    transform: translate(2px, 2px); 
    box-shadow: 4px 4px 0 #000; 
    background: #FFD700; 
}

.insta-grid { 
    flex: 2; 
    min-width: 400px; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    grid-template-rows: repeat(2, 1fr);    /* 2 filas */
    gap: 8px;
    margin-top: 10px;
}

.insta-grid img { 
    width: 100%; 
    aspect-ratio: 1/1; 
    object-fit: cover; 
    border: 3px solid #000; 
}

.contacto-bottom-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
    width: 100%; 
    max-width: 1300px; 
}

.form-comic { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    height: 100%;
}

.input-comic { 
    width: 100%; 
    padding: 15px; 
    font-family: 'Bangers', cursive; 
    font-size: 1.5rem; 
    border: 4px solid #000; 
    box-sizing: border-box; 
    background: #eee; 
    outline: none; 
    transition: 0.2s; 
    border-radius: 0; 
}

.input-comic:focus { 
    background: #fff; 
    box-shadow: 4px 4px 0 #00FFFF; 
    transform: translate(-2px, -2px); 
}

.textarea-comic { 
    resize: vertical; 
    min-height: 120px; 
}

.club-list { 
    font-family: sans-serif; 
    font-size: 1.1rem; 
    line-height: 1.6; 
    font-weight: bold; 
    margin-bottom: 20px; 
    padding-left: 20px;
}

.msg-feedback { 
    font-family: sans-serif; 
    font-weight: bold; 
    padding: 10px; 
    margin-top: 10px; 
    border: 3px dashed #000; 
    text-align: center; 
    background: #fff;
}

.social-icons-container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: center; 
    margin-top: 20px; 
}

.social-icon-btn { 
    width: 70px; height: 70px; 
    background: #fff; 
    border: 4px solid #000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 4px 4px 0 #000; 
    transition: 0.2s; 
    color: #000; 
}

.social-icon-btn:hover { 
    transform: translate(2px, 2px); 
    box-shadow: 2px 2px 0 #000; 
    background: #00FFFF; 
}

.social-icon-btn svg { 
    width: 40px; height: 40px; 
}

/* =========================================
   ESTILOS ESPECÍFICOS GALERÍA - FIX PC/MÓVIL
   ========================================= */

.galery-wrapper {
    padding: 120px 0;
    background-color: #00FFFF !important; 
    background-image: radial-gradient(#000 3.5px, transparent 3.5px) !important; 
    background-size: 25px 25px !important;
    min-height: 100vh;
    border-top: 12px solid #000;
}

.galery-item {
    width: 100%;
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* TÍTULO GALERÍA AMARILLO CON SOMBRA */
.galery-main-title {
    background: #FFD700 !important; /* AMARILLO */
    color: #000 !important;
    padding: 20px 80px;
    font-size: clamp(3rem, 10vw, 6rem);
    border: 10px solid #000;
    transform: rotate(-2deg);
    margin: 0 auto 100px auto;
    display: block;
    width: fit-content;
    box-shadow: 15px 15px 0 #FF69B4; /* SOMBRA ROSA */
    text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    text-align: center;
}

.galery-item-title {
    background: #FF69B4; /* ROSA */
    color: #fff;
    padding: 20px 60px;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    border: 8px solid #000;
    transform: rotate(-3deg) translateY(20px);
    z-index: 50; 
    box-shadow: 15px 15px 0 #000;
    text-shadow: 4px 4px 0 #000;
    text-transform: uppercase;
}

.video-franja-container {
    width: 100%;
    height: 40vh; 
    min-height: 350px;
    border-top: 12px solid #000;
    border-bottom: 12px solid #000;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.video-franja-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

/* CAJA DESCRIPCIÓN AMARILLO ALMODÓVAR - FIX PC */
.galery-description-box {
    display: block !important;
    background: #FFD700 !important; 
    color: #000 !important;
    padding: 25px 50px !important;
    width: 80% !important;
    max-width: 900px !important;
    border: 8px solid #000 !important;
    box-shadow: 15px 15px 0 #000 !important;
    margin-top: 30px !important;
    font-family: sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    text-align: center !important;
    transform: rotate(1deg) !important;
    z-index: 50 !important; 
    position: relative !important;
}

.galery-description-box::before {
    content: "" !important;
    position: absolute !important;
    top: -42px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-left: 20px solid transparent !important;
    border-right: 20px solid transparent !important;
    border-bottom: 40px solid #000 !important;
    display: block !important;
}

/* ADAPTACIÓN MÓVIL */
@media (max-width: 768px) {
    .epic-title { font-size: 4rem; }
    .galery-main-title { font-size: 2.5rem; padding: 15px 40px; margin-bottom: 60px; }
    .galery-item-title { font-size: 2rem; padding: 10px 25px; }
    .video-franja-container { height: 30vh; min-height: 250px; }
    .galery-description-box { width: 90% !important; font-size: 1.1rem !important; padding: 15px !important; }
    .reservas-layout { flex-direction: column; }
    .insta-horizontal-card { flex-direction: column; }
}

/* ========================================================
   CUSTOM SHOP - MOSAICO COMIC (POLÍGONOS ENCAJADOS)
   ======================================================== */

.shop-wrapper {
    background-color: #000 !important; /* FONTO NEGRO PARA LAS LÍNEAS DIVISORIAS */
    padding: 120px 0;
    overflow: hidden;
}

.shop-muro-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(3, 300px) !important;
    gap: 4px !important; /* EL GROSOR DE LA LÍNEA NEGRA */
    background: #000 !important;
    padding: 4px !important;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-vignette-poly {
    background-color: #fff !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

.shop-vignette-poly:hover {
    background-color: #FF69B4 !important;
    z-index: 10;
    transform: scale(1.02);
}

/* CÁLCULOS DE CLIP-PATH PARA EL MOSAICO PERFECTO 
   Basado en un grid 4x3 donde los vértices coinciden 
*/

/* FILA 1 */
.shop-vignette-poly:nth-child(1) { clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); }
.shop-vignette-poly:nth-child(2) { clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
.shop-vignette-poly:nth-child(3) { clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%); }
.shop-vignette-poly:nth-child(4) { clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%); }

/* FILA 2 */
.shop-vignette-poly:nth-child(5) { clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%); }
.shop-vignette-poly:nth-child(6) { clip-path: polygon(0 0, 100% 0, 80% 100%, 15% 100%); }
.shop-vignette-poly:nth-child(7) { clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
.shop-vignette-poly:nth-child(8) { clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); }

/* FILA 3 */
.shop-vignette-poly:nth-child(9) { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.shop-vignette-poly:nth-child(10) { clip-path: polygon(15% 0, 80% 0, 100% 100%, 0 100%); }
.shop-vignette-poly:nth-child(11) { clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%); }
.shop-vignette-poly:nth-child(12) { clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); }

/* ESTILOS PARA ORBITALES */
.shop-orbitals-container {
    padding-top: 100px;
    background: #EEDD22; /* EL AMARILLO ALMODOVAR VUELVE AQUÍ */
}

.orbital-viewport {
    background: rgba(255,255,255,0.1);
    border: 8px solid #000;
    transform-style: preserve-3d;
    box-shadow: 20px 20px 0 #000;
    transition: animation-play-state 0.3s;
}

@keyframes orbitalRotation {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.orbital-alpha, .orbital-beta {
    animation: orbitalRotation 20s linear infinite;
    backdrop-filter: blur(5px);
}

.orbital-viewport:hover {
    animation-play-state: paused;
}

.orbital-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.orbital-content-wrapper > * {
    transform: translateZ(50px);
}

.shop-block-title{
  background:#000;
  color:#FFD700;
  border:6px solid #000;
  box-shadow:12px 12px 0 #FF69B4;
  padding:14px 28px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 auto 35px auto;
  width: fit-content;
  transform: rotate(-1deg);
  text-shadow: 3px 3px 0 #FF69B4;
}

/* Capa de Zoom Flotante (Fuera del Grid) */
.jacket-floating-zoom {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: jacketPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jacket-floating-zoom img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
    object-fit: contain;
}

.zoom-info-tag {
    background: #FFD700;
    color: #000;
    padding: 12px 25px;
    border: 4px solid #000;
    font-family: 'Bangers', cursive; /* Usa tu fuente corporativa */
    font-size: 1.8rem;
    font-weight: 900;
    transform: rotate(-3deg);
    margin-top: -30px;
    box-shadow: 8px 8px 0px #000;
}

@keyframes jacketPopIn {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Capa invisible que captura el foco para que el zoom no parpadee */
.zoom-overlay-fix {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7); /* Oscurece el fondo para centrar la atención */
    z-index: 99990;
    cursor: pointer;
}

.jacket-floating-zoom.interactive {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    pointer-events: auto; /* Permite clicar en el botón de reserva */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-reservar {
    background: #FFD700;
    color: #000;
    border: 4px solid #000;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 6px 6px 0px #000;
    transition: 0.2s;
}

.btn-reservar:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
    background: #fff;
}

.close-x {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Contenedor Maestro del Zoom */
.jacket-floating-zoom.interactive {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px; /* Tamaño optimizado para 360 */
    height: 450px;
    z-index: 100000;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 5px solid #000;
    animation: jacketPop 0.3s ease-out;
}

/* Imagen dentro del Zoom para que mantenga el eje */
.jacket-floating-zoom img {
    max-height: 80%;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.close-btn-comic {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF0000;
    color: #fff;
    border: 3px solid #000;
    font-weight: bold;
    padding: 5px 12px;
    cursor: pointer;
}

@keyframes jacketPop {
    from { opacity: 0; scale: 0.8; }
    to { opacity: 1; scale: 1; }
}
/* =========================================
   ESTÉTICA COMIC V7 - FINAL
   ========================================= */

/* 1. FONDO ROSA CON PUNTOS (TRAMA DE CÓMIC) */
body, .main-container, .shop-wrapper {
    background-color: #ff69b4 !important;
    background-image: radial-gradient(#000 12%, transparent 13%) !important;
    background-size: 22px 22px !important;
    background-attachment: fixed !important;
}

/* 2. GRID FLOTANTE */
.shop-muro-grid {
    display: grid !important;
    gap: 20px !important;
    background: transparent !important;
    padding: 20px !important;
}

/* 3. VIÑETAS BLANCAS RECORTADAS */
.shop-vignette-poly {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(6px) !important;
    clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 0% 100%) !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(10px 10px 0px rgba(0,0,0,0.2)); /* Sombra para flotar */
}

/* Limpieza de pseudo-elementos anteriores */
.shop-vignette-poly::before,
.shop-vignette-poly::after {
    display: none !important;
}

/* 4. TÍTULO ESTILO CÓMIC */
.shop-block-title {
    background: #ffff00 !important;
    color: #000 !important;
    border: 6px solid #000 !important;
    transform: rotate(-2deg) !important;
    box-shadow: 8px 8px 0 #000 !important;
    margin-bottom: 40px !important;
}

/* MEZCLA DE CAPAS PARA ELIMINAR FONDO BLANCO (MULTIPLY) */
.vignette-360-container img {
    mix-blend-mode: multiply; 
    filter: contrast(1.1) brightness(1.05); 
    height: 90% !important;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* EFECTO HOVER EN TODAS LAS VIÑETAS */
.shop-vignette-poly:hover img {
    transform: scale(1.1) translateY(-10px);
}

/* 1. SOMBRA REALISTA SOBRE LA SILUETA */
.vignette-360-container img {
    /* Proyecta la sombra solo sobre la chaqueta, no sobre el cuadro */
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.45)) !important;
    mix-blend-mode: normal !important; 
    height: 92% !important;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 2. EFECTO DE LEVITACIÓN AL PASAR EL MOUSE */
.shop-vignette-poly:hover img {
    /* La chaqueta sube y se agranda ligeramente */
    transform: translateY(-20px) scale(1.08); 
}

/* 3. REFUERZO DEL CRISTAL TRANSLÚCIDO */
.shop-vignette-poly {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 0% 100%) !important;
    position: relative;
    overflow: hidden;
}

/* 4. DESTELLO DE CRISTAL (REFLEJO) */
.shop-vignette-poly::after {
    content: "";
    display: block !important; /* Forzamos visibilidad */
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    transition: 0.6s ease-in-out;
    pointer-events: none;
}

.shop-vignette-poly:hover::after {
    left: 150%; /* El brillo cruza la viñeta al mirar la chaqueta */
}

/* RESTAURACIÓN A GIRO LIMPIO */
.jacket-360-img {
    height: 92% !important;
    width: auto;
    object-fit: contain;
    /* Eliminamos animaciones complejas, dejamos solo un fundido instantáneo */
    transition: opacity 0.1s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* ELIMINAR CUALQUIER KEYFRAME DE BLUR ANTERIOR */
@keyframes turnSmooth { from { opacity: 1; } to { opacity: 1; } }
@keyframes frameMotionBlur { from { opacity: 1; } to { opacity: 1; } }

/* ASEGURAR QUE NO HAY BOTONES DE CIERRE */
.close-btn-comic, .close-x, .close-btn {
    display: none !important;
}

/* MEJORA DEL CURSOR DE CIERRE */
.zoom-overlay-fix {
    cursor: zoom-out !important;
}

/* CONVERTIR EL MARCADOR EN UNA FRANJA DIVISORIA */
.follower-sign-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Espacio crítico para que no sea un pegote */
    margin-top: 60px !important;    /* Separa de Instagram */
    margin-bottom: 80px !important; /* Separa de los bloques de abajo */
    padding: 20px 0;
    width: 100%;
    position: relative;
}

/* Efecto de "Cinta de Cómic" que cruza de fondo (Opcional) */
.follower-sign-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 40px;
    background: #000;
    transform: rotate(-1deg);
    z-index: -1; /* Pasa por detrás del marcador */
}

/* AJUSTE DEL CARTEL PARA QUE FLOTE MEJOR */
.follower-sign-plate {
    background: #000;
    border: 6px solid #000;
    padding: 15px 30px;
    box-shadow: 15px 15px 0px #ffea00 !important; /* Sombra más grande para dar profundidad */
    transform: rotate(1deg); /* Ligera inclinación para look manual */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ESTILO DE LOS NÚMEROS (FLIP CLOCK) */
.flip-card {
    background: #222;
    color: #fff;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2.8rem;
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    position: relative;
    border: 2px solid #444;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* ANIMACIÓN DE MARCADOR DE ESTADIO */
.flip-card.flipping {
    animation: flipSheet 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flipSheet {
    0% {
        transform: rotateX(0deg);
    }
    45% {
        transform: rotateX(-90deg);
        filter: brightness(0.4); /* Sombra en el pliegue */
    }
    55% {
        transform: rotateX(-90deg);
        filter: brightness(1.2); /* Destello al recibir luz */
    }
    100% {
        transform: rotateX(0deg);
    }
}

/* LA LÍNEA DE CORTE ANALÓGICA */
.flip-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    z-index: 10;
}

/* ETIQUETA PEQUEÑA TIPO CÓMIC */
.army-tag {
    background: #00ffff; /* Cian */
    color: #000;
    font-weight: 900;
    padding: 0px 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 3px solid #000;
    transform: rotate(-5deg) translateY(-10px);
    margin-right: 5px;
}

/* --- ADAPTACIÓN PARA TABLET Y MÓVIL --- */

@media (max-width: 1024px) {
    /* Ajuste de la viñeta de Instagram en Tablet */
    .insta-horizontal-card {
        padding: 15px !important;
        margin: 0 10px;
    }
    
    .insta-grid {
        grid-template-columns: repeat(3, 1fr); /* Mantenemos 3 columnas en tablet */
        gap: 5px;
    }
}

/* RESTAURACIÓN ESTÉTICA CLUB */
.bloque-club-insolente {
    background: #fff !important;
    border: 8px solid #000 !important;
    padding: 25px !important;
    box-shadow: 15px 15px 0 #00FFFF !important; /* Mantenemos su color cian distintivo */
    display: flex !important;
    flex-direction: column !important;
    transition: 0.3s !important;
    box-sizing: border-box !important;
}

/* Ajuste para que el título no sea gigante y cuadre con los otros bloques */
.bloque-club-insolente .club-titulo {
    font-size: 2.5rem !important;
    margin: 0 0 15px 0 !important;
    color: #000 !important;
    text-shadow: none !important;
    text-align: left !important;
}

.club-subtitulo { color: #fff !important; font-weight: bold !important; margin-bottom: 20px !important; text-align: center; }

/* Alineación de la lista para que sea limpia */
.club-lista {
    font-family: sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    font-weight: bold !important;
    margin-bottom: 20px !important;
    padding-left: 20px !important;
    text-align: left !important;
    color: #000 !important;
}

.club-actitud { color: #ff69b4 !important; font-weight: 900 !important; margin-bottom: 25px !important; text-align: center; }

.club-input {
    background-color: #e0e0e0 !important;
    border: none !important;
    padding: 15px !important;
    width: 100% !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}

.club-boton {
    background-color: #ff69b4 !important; /* Rosa */
    color: #fff !important;
    font-family: 'Bangers', cursive !important;
    font-size: 2.2rem !important;
    border: none !important;
    padding: 10px !important;
    width: 100% !important;
    cursor: pointer !important;
}

.club-id-display { color: #00ffff !important; font-weight: 900 !important; margin-top: 15px !important; }

@media (max-width: 768px) {
    /* Ajuste para Móvil */
    
    /* 1. Bio y Texto */
    .insta-bio {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }
    
    .insta-stats {
        gap: 15px;
        justify-content: center;
    }

    /* 2. Grid de fotos: Pasamos a 2 columnas para que se vean mejor */
    .insta-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto;
    }

    /* 3. El Contador de Seguidores (Marcador) */
    .follower-sign-plate {
        padding: 10px 15px;
        transform: scale(0.8); /* Reducimos tamaño para que no se salga */
    }

    .flip-card {
        width: 35px;
        height: 55px;
        font-size: 2.2rem;
    }

    /* 4. Separación de la franja divisoria */
    .follower-sign-container {
        margin-top: 40px !important;
        margin-bottom: 50px !important;
    }

    /* 5. Bloques de abajo: Se apilan verticalmente */
    .contacto-bottom-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
        width: 100% !important;
    }

    .comic-card {
        width: 90% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }


@media (max-width: 768px) {
    /* 1. Anulamos cualquier rastro de movimiento lateral de PC */
    .fan-container.abiertas .card-yellow,
    .fan-container.abiertas .card-pink {
        translateX: 0 !important;
    }

    /* 2. Definimos el salto vertical exacto */
    .fan-container.abiertas .card-yellow { 
        transform: translateY(-100%) rotate(-10deg) !important; 
    }
    
    .fan-container.abiertas .card-pink { 
        transform: translateY(100%) rotate(10deg) !important; 
    }
    
    .fan-container.abiertas .card-main { 
        transform: scale(1.1) !important;
        z-index: 50 !important;
    }
}


.club-id-display {
    color: #ff69b4 !important; /* Rosa Insolente */
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    margin-top: 15px !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

    /* CUSTOM SHOP 1x1 EN MÓVIL */
    .shop-muro-grid {
        grid-template-columns: 1fr !important; /* Una celda por fila */
        grid-template-rows: auto !important;
        gap: 25px !important;
        padding: 10px !important;
    }

    .shop-vignette-poly {
        width: 100% !important;
        /* Mantenemos bordes negros y sombras amarillas originales */
        border: 4px solid #000 !important;
        box-shadow: 10px 10px 0px #ffea00 !important;
        transform: none !important; /* Evitamos rotaciones molestas en móvil */
        clip-path: none !important; /* Quitamos recorte para ver el borde */
        min-height: 300px;
    }
    
    .shop-vignette-poly:active {
        transform: scale(0.98) !important; /* Efecto de pulsación */
    }
}

/* Optimización de clicks para móvil */
.insta-link-wrapper, .btn-submit-reserva, .btn-seguir {
    min-height: 44px; /* Tamaño mínimo recomendado para dedos */
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 480px) {
    /* Forzar que el contenedor de Instagram respete el espacio */
    .instagram-section-container { 
        display: block !important;
        overflow: hidden !important;
    }

    /* El contador DEBE bajar y separarse */
    .follower-sign-container {
        clear: both !important;
        margin-top: 100px !important; /* Aumentamos espacio para evitar solapamiento visual */
        display: flex !important;
        visibility: visible !important;
    }

    .follower-sign-plate {
        transform: scale(0.7) rotate(0deg) !important; /* Más pequeño para móviles muy estrechos */
    }

    /* Asegurar que el grid no se rompa */
    .insta-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 columnas obligatorias */
        width: 100% !important;
    }
}

@media (max-width: 600px) {
    /* 1. La tarjeta pasa a ser una columna */
    .insta-horizontal-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 15px !important;
        height: auto !important;
    }

    /* 2. Cabecera: Foto arriba, Info debajo */
    .insta-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .insta-avatar {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 10px !important;
    }

    /* 3. Stats y Bio centrados */
    .insta-stats {
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .insta-bio {
        text-align: left !important;
        width: 100% !important;
        font-size: 0.85rem !important;
    }

    /* 4. EL GRID DE 6 FOTOS (3x2) COMPACTO */
    .insta-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* 3 fotos por fila obligatorias */
        grid-gap: 4px !important;
        width: 100% !important;
        margin-top: 15px !important;
    }

    .insta-grid img {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        border-width: 2px !important; /* Borde más fino para que no coma espacio */
    }

    /* 5. Botón de seguir */
    .btn-seguir {
        width: 100% !important;
        margin-top: 15px !important;
    }
}

/* TAREA 1: Centrar bloques inferiores en móvil */
@media (max-width: 768px) {
    /* Centrado de los 3 bloques inferiores */
    .bloques-inferiores-container, 
    .footer-sections-wrapper { 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        padding: 20px 0 !important;
    }

    .bloque-contacto, .bloque-quejas, .bloque-secta {
        width: 90% !important; /* Casi todo el ancho pero con margen */
        margin: 15px 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Forzar que los textos y botones dentro de los bloques se centren */
    .bloque-contacto *, .bloque-quejas *, .bloque-secta * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* A11Y: boost contrast for PageSpeed */
.seo-h1,
.card-btn,
.page-btn {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
}
}

/* TAREA 2: Custom Shop 1x1 con efectos originales */
@media (max-width: 600px) {
    /* Forzar 1 columna para las 12 celdas */
    .custom-shop-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Una por fila */
        gap: 25px !important;
        padding: 10px !important;
        width: 100% !important;
    }

    /* Mantener los efectos de la celda */
    .custom-item-card {
        width: 85% !important; /* Para que no pegue a los bordes del móvil */
        margin: 0 auto !important;
        aspect-ratio: auto !important;
        /* Asegurar que se vean los bordes y sombras originales */
        border: 5px solid #000 !important;
        box-shadow: 10px 10px 0px #ffea00 !important; 
        transition: transform 0.3s ease !important;
    }

    /* Asegurar que las imágenes dentro mantengan el efecto */
    .custom-item-card img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-bottom: 5px solid #000 !important;
    }
}

/* TAREA 1: Centrar y ajustar el Fake Feed en móvil */
@media (max-width: 600px) {
    /* Centrar la tarjeta completa de Instagram */
    .insta-horizontal-card {
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 95% !important; /* Un poco de aire en los bordes */
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* Ajuste del Grid: 3 columnas centradas con desplazamiento sutil a la izquierda */
    .insta-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        justify-content: center !important;
        align-content: center !important;
        width: 100% !important;
        /* El ajuste fino que pediste para centrar visualmente */
        padding-left: 2px !important; 
        padding-right: 8px !important; 
        box-sizing: border-box !important;
    }

    /* Asegurar que las imágenes no se deformen al centrar */
    .insta-grid img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        object-fit: cover !important;
    }
}
/* =========================================
   REPARACIÓN DE TARJETAS HERO (MÓVIL)
   ========================================= */

@media (max-width: 768px) {
    /* 1. Espaciado Maestro: Empuja la siguiente sección para que la tarjeta rosa no se oculte */
    .hero-section {
        padding-bottom: 250px !important; 
    }

    .fan-container {
        margin: 100px auto !important; 
        height: 250px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }

    /* 2. Reset de Profundidad: Asomamos los bordes para que se vea que hay tarjetas debajo */
    .card {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        width: 100% !important;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    }

    /* Efecto abanico cerrado (Desfase del 2% para visibilidad) */
    .card-yellow { transform: translate(-52%, -52%) rotate(-3deg) !important; }
    .card-pink { transform: translate(-48%, -48%) rotate(3deg) !important; }
    .card-main { transform: translate(-50%, -50%) rotate(0deg) !important; z-index: 10; }

    /* 3. Despliegue Vertical con Jerarquía de Capas */
    .fan-container.abiertas .card-yellow { 
        transform: translate(-50%, -140%) rotate(-6deg) !important; 
        z-index: 5;
    }
    
    .fan-container.abiertas .card-pink { 
        transform: translate(-50%, 40%) rotate(6deg) !important; 
        z-index: 5;
    }
    
    .fan-container.abiertas .card-main { 
        transform: translate(-50%, -50%) scale(1.05) !important;
        z-index: 100 !important;
    }

    /* Ajuste de botones para dedos en móvil */
    .card-btn {
        padding: 10px 20px !important;
        font-size: 1.4rem !important;
    }

    /* 1. Rectángulo Maestro: Aumentamos altura en móvil */
    .book-wrapper {
        aspect-ratio: unset !important;
        min-height: 750px !important;
        width: 100% !important;
        max-width: 420px !important; 
        margin: 40px auto !important;
        perspective: 2000px !important;
        position: relative !important;
        transform: rotate(1deg) !important;
    }

    /* 2. Páginas Absolutas: Para que el efecto de giro sea idéntico al de escritorio */
    .book-page {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 65px 25px 25px 25px !important;
        background: #fff !important;
        border: 10px solid #000 !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        backface-visibility: hidden !important;
        transform-origin: left center !important;
        box-shadow: 15px 15px 0 #FFD700 !important;
    }

    /* 3. LÓGICA DE SCROLL PC: El texto es grande y deslizable dentro del cuadro */
    .page-text-content {
        font-size: 1.55rem !important; 
        line-height: 1.25 !important;
        overflow-y: auto !important; 
        flex-grow: 1 !important;
        text-transform: uppercase !important;
        padding-right: 12px !important;
        margin-bottom: 12px !important;
    }

    /* Estética del scrollbar para guiar al usuario */
    .page-text-content::-webkit-scrollbar {
        width: 6px !important;
    }
    .page-text-content::-webkit-scrollbar-thumb {
        background: #FF69B4 !important;
        border-radius: 10px !important;
    }

    /* 4. Botones: Fijos en la base del rectángulo blanco */
    .page-nav-controls {
        margin-top: auto !important;
        padding-top: 15px !important;
        border-top: 4px dashed #000 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

/* =========================================
   ESTILO DEFINITIVO SECCIONES (DRINK & EAT)
   ========================================= */

/* 1. CONFIGURACIÓN BASE PARA AMBAS */
#section-drink .page-section,
#section-eat .page-section {
    background-image: radial-gradient(rgba(0, 0, 0, 0.15) 15%, transparent 16%) !important;
    background-size: 22px 22px !important;
    background-attachment: fixed !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
}

/* 2. DRINK ME - AMARILLO FORZADO */
#section-drink .page-section {
    background-color: #FFD700 !important; 
}

/* 3. EAT ME - AZUL CÓMIC FORZADO */
#section-eat .page-section {
    background-color: #00FFFF !important; 
}

/* 4. AJUSTE MÓVIL */
@media (max-width: 768px) {
    #section-drink .page-section,
    #section-eat .page-section {
        background-attachment: scroll !important;
        padding: 80px 15px !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .comic-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        width: 100% !important;
    }

    .section-title {
        font-size: 2.5rem !important;
        margin-bottom: 50px !important;
        transform: rotate(-2deg) !important;
        width: fit-content !important;
        padding: 15px 30px !important;
    }
}

/* LIENZO DE RESEÑAS DEFINITIVO */
.reviews-pop-canvas {
    position: relative !important;
    width: 100% !important;
    min-height: 700px !important;
    background-color: #FF69B4 !important; /* Rosa Insolente */
    background-image: radial-gradient(rgba(0, 0, 0, 0.2) 15%, transparent 16%) !important;
    background-size: 25px 25px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-top: 8px solid #000 !important;
    margin-top: 40px !important;
}

/* CAPA DE BOCADILLOS QUE VUELAN */
.floating-bubbles-layer {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.bubble-pop {
    position: absolute !important;
    background: #fff !important;
    border: 4px solid #000 !important;
    padding: 12px 20px !important;
    font-family: 'Bangers', cursive !important;
    border-radius: 40px !important;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.15) !important;
    animation: bubbleFloatFinal 5s ease-in-out infinite !important;
}

.bubble-pop::after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important; left: 20px !important;
    border-width: 15px 15px 0 0 !important;
    border-style: solid !important;
    border-color: #000 transparent transparent transparent !important;
}

/* POSICIONES DE LOS BOCADILLOS ALREDEDOR DEL CENTRO */
.b1 { top: 12%; left: 10%; transform: rotate(-8deg); }
.b2 { top: 10%; right: 10%; transform: rotate(8deg); animation-delay: 1s !important; }
.b3 { bottom: 18%; left: 10%; transform: rotate(5deg); animation-delay: 2s !important; }
.b4 { bottom: 15%; right: 10%; transform: rotate(-10deg); animation-delay: 1.5s !important; }

/* TARJETA CENTRAL */
.review-card-central {
    background: #fff !important;
    border: 8px solid #000 !important;
    padding: 40px !important;
    width: 90% !important;
    max-width: 440px !important;
    box-shadow: 15px 15px 0 #00FFFF !important;
    z-index: 10 !important;
    text-align: center !important;
    transform: rotate(-1deg) !important;
}

.btn-pop-submit {
    background: #FFD700 !important;
    border: 5px solid #000 !important;
    padding: 15px !important;
    font-family: 'Bangers' !important;
    font-size: 1.8rem !important;
    color: #000 !important;
    box-shadow: 6px 6px 0 #000 !important;
    transition: 0.2s !important;
    cursor: pointer !important;
}

.btn-pop-submit:hover {
    transform: scale(1.05) !important;
    background: #00FFFF !important;
}

@keyframes bubbleFloatFinal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* OPTIMIZACIÓN MÓVIL (BOCADILLOS SIMPLIFICADOS) */
@media (max-width: 768px) {
    .reviews-pop-canvas { min-height: 550px !important; }
    .b1, .b4 { display: block !important; transform: scale(0.8) !important; }
    .b2, .b3 { display: none !important; }
    .review-card-central { padding: 30px 15px !important; width: 95% !important; }
}

/* CONTENEDOR DE FILA ORBITAL */
.orbitals-row-container {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 40px 10px !important;
    width: 100% !important;
    max-width: 1400px !important;
    perspective: 1000px !important;
    flex-wrap: wrap !important; /* Para que no rompa en pantallas medianas */
}

/* CELDA INDIVIDUAL */
.orbital-cell {
    width: 220px !important;
    height: 280px !important;
    position: relative !important;
    perspective: 1000px !important;
}

.orbital-flipper {
    width: 100% !important;
    height: 85% !important;
    position: relative !important;
    transform-style: preserve-3d !important;
    animation: rotateDoubleFace 6s linear infinite !important;
}

/* CARAS DEL PRODUCTO */
.orbital-face {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    backface-visibility: hidden !important;
    border: 6px solid #000 !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.1) !important;
}

.face-back {
    transform: rotateY(180deg) !important;
}

.orbital-face img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
}

/* ETIQUETA INFERIOR */
.cell-tag {
    background: #000 !important;
    color: #FFD700 !important;
    font-family: 'Bangers' !important;
    text-align: center !important;
    padding: 5px !important;
    border: 3px solid #000 !important;
    margin-top: 10px !important;
    font-size: 1.2rem !important;
}

/* ANIMACIÓN DE GIRO 360 */
@keyframes rotateDoubleFace {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* BLINDAJE MÓVIL */
@media (max-width: 768px) {
    .orbitals-row-container {
        gap: 15px !important;
        justify-content: space-around !important;
    }
    .orbital-cell {
        width: 160px !important;
        height: 220px !important;
    }
    .cell-tag { font-size: 0.9rem !important; }
}

/* RESET DE ZOOM - ESTILO PURO INSOLENTE */
.zoom-overlay-fix {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px) !important;
}

.jacket-floating-zoom.interactive {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: transparent !important; /* Cero cuadros blancos */
    width: auto !important;
}

.zoom-img-face {
    max-height: 70vh !important;
    width: auto !important;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) !important;
}

/* CARTEL AMARILLO FLOTANTE */
.zoom-info-tag-pop {
    background: #FFD700 !important;
    border: 5px solid #000 !important;
    padding: 15px 35px !important;
    box-shadow: 12px 12px 0 #000 !important;
    transform: rotate(-3deg) translateY(-50px) !important; /* Pisa la imagen hacia arriba */
    z-index: 10 !important;
    text-align: center !important;
}

/* OPTIMIZACIÓN MÓVIL */
@media (max-width: 768px) {
    .zoom-img-face { max-height: 55vh !important; }
    .zoom-info-tag-pop { transform: rotate(-2deg) translateY(-30px) !important; padding: 10px 20px !important; }
    .zoom-price-text { font-size: 1.2rem !important; }
    .btn-reservar-pop { font-size: 1.8rem !important; }
}
.zoom-price-text {
    margin: 0 0 10px 0 !important;
    font-family: 'Arial Black', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.7rem !important;
    color: #000 !important;
}

.btn-reservar-pop {
    background: transparent !important;
    border: 4px solid #000 !important;
    padding: 10px 30px !important;
    font-family: 'Bangers', cursive !important;
    font-size: 2.3rem !important;
    color: #000 !important;
    cursor: pointer !important;
}

/* CENTRADO ABSOLUTO ZOOM GLOBAL */
.zoom-global-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.88) !important;
    z-index: 2000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(5px) !important;
}

.zoom-central-stage {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: auto !important;
    animation: zoomEntry 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.zoom-main-img {
    max-height: 70vh !important;
    width: auto !important;
    filter: drop-shadow(0 20px 70px rgba(0,0,0,0.95)) !important;
}

.zoom-tag-insolente {
    background: #FFD700 !important;
    border: 8px solid #000 !important;
    padding: 20px 30px !important;
    box-shadow: 16px 16px 0 #000 !important;
    transform: rotate(-1deg) translateY(-60px) !important;
    z-index: 10 !important;
    text-align: center !important;
}

/* BLINDAJE MÓVIL OBLIGATORIO */
@media (max-width: 768px) {
    .zoom-main-img { max-height: 50vh !important; }
    .zoom-tag-insolente { 
        transform: rotate(-2deg) translateY(-30px) !important; 
        padding: 10px 20px !important;
        width: 90% !important;
    }
    .zoom-price-label { font-size: 1.1rem !important; }
    .zoom-btn-reserva { font-size: 1.8rem !important; }
}

/* ESTILO DE TARJETA DE CHAQUETA DEL MURO */
.shop-vignette-poly.custom-item-card {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 5px solid #000 !important;
    box-shadow: 10px 10px 0 #000 !important;
    position: relative !important;
    overflow: hidden !important;
    transition: 0.3s ease !important;
}

.shop-vignette-poly.custom-item-card::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.shop-vignette-poly.custom-item-card img {
    position: relative;
    z-index: 1;
}

.shop-vignette-poly.custom-item-card > * {
    position: relative !important;
    z-index: 1 !important;
}

.shop-vignette-poly.custom-item-card:hover {
    transform: scale(1.03) rotate(-1deg) !important;
    box-shadow: 15px 15px 0 #FFD700 !important;
}

.vignette-360-container {
    cursor: zoom-in !important;
}

/* SISTEMA DE GIRO 3D Y ZOOM - ORDEN #23 */
.orbital-flipper {
    width: 100% !important;
    height: 85% !important;
    position: relative !important;
    transform-style: preserve-3d !important;
    animation: rotateDoubleFace 8s linear infinite !important;
}

.orbital-face {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    backface-visibility: hidden !important;
    border: 5px solid #000 !important;
    background: transparent !important;
}

.orbital-face::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #fff;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0,0,0,0.15) 2px, transparent 3px),
        linear-gradient(135deg, rgba(255, 105, 180, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    background-size: 15px 15px, 100% 100%;
}

.face-back {
    transform: rotateY(180deg) !important;
}

.orbital-face img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative;
    z-index: 1;
}

@keyframes rotateDoubleFace {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* CENTRADO GLOBAL DEL ZOOM */
.zoom-global-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.9) !important;
    z-index: 2000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px) !important;
}

.zoom-central-stage {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.zoom-main-img {
    max-height: 70vh !important;
    width: auto !important;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) !important;
}

.zoom-tag-insolente {
    background: #FFD700 !important;
    border: 5px solid #000 !important;
    padding: 15px 35px !important;
    box-shadow: 12px 12px 0 #000 !important;
    transform: rotate(-3deg) translateY(-50px) !important;
    z-index: 10 !important;
    text-align: center !important;
}

/* BLOQUEO DE SCROLL */
body.modal-open { overflow: hidden; }

/* OVERLAY FIJO */
.reserve-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    backdrop-filter: blur(3px);
}

/* PANEL COMPACTO CON SCROLL INTERNO */
.reserve-panel {
    width: min(520px, 92vw);
    max-height: min(76vh, 680px);
    overflow: auto; /* SCROLL INTERNO */
    position: relative;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    background: #FFD700;
    border: 6px solid #000;
    box-shadow: 14px 14px 0 #000;
    border-radius: 10px;
    transform: rotate(-1deg);
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
}

/* BOTONERA FIJA AL FINAL */
.reserve-actions {
    position: sticky;
    bottom: 0;
    background: #FFD700;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #000;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* FORMULARIO RESERVA CUSTOM SHOP */
.reserva-form-panel {
    text-align: left !important;
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.3s ease;
}

.reserva-form-title {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    margin: 0 0 5px 0;
    color: #000;
    text-transform: uppercase;
}

.reserva-form-subtitle {
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.reserva-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.reserva-form-panel label {
    font-family: 'Bangers', cursive;
    font-size: 0.9rem; /* Label más pequeño */
    display: block;
    margin-top: 8px;
}

.reserva-input {
    width: 100%;
    padding: 6px 8px;
    height: 42px; /* Altura fija compacta */
    border: 3px solid #000;
    font-family: sans-serif;
    font-weight: bold;
    box-sizing: border-box;
    background: #fff;
}

.reserva-input:focus {
    background: #ffffcc;
    outline: none;
}

.btn-enviar-reserva {
    flex: 2;
    background: #000;
    color: #FFD700;
    border: 3px solid #000;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-enviar-reserva:hover:not(:disabled) {
    background: #fff;
    color: #000;
}

.btn-enviar-reserva:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-cerrar-reserva {
    flex: 1;
    background: transparent;
    border: 3px solid #000;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    cursor: pointer;
}

.reserva-msg {
    margin-top: 10px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 0.9rem;
    padding: 5px;
    border: 2px solid #000;
    text-align: center;
}

.reserva-msg.error { background: #ffcccc; color: #d00; }
.reserva-msg.success { background: #ccffcc; color: #006600; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* RESPONSIVE MÓVIL */
@media (max-width: 480px) {
    .reserve-panel {
        width: 94vw;
        max-height: 80vh;
        padding: 14px;
        transform: rotate(0deg);
    }
    .reserva-grid { grid-template-columns: 1fr; gap: 5px; }
}

/* BLINDAJE MÓVIL */
@media (max-width: 768px) {
    .orbital-cell { width: 130px !important; height: 170px !important; }
    .zoom-main-img { max-height: 50vh !important; }
    .zoom-tag-insolente { transform: rotate(-2deg) translateY(-25px) !important; width: 90% !important; }
}

/* === FIX Custom Shop: ALPHA/BETA 5 miniaturas por fila (FORZADO) === */
.orbitals-row-container{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:center !important;
  gap:12px !important;
  align-items:stretch !important;
  overflow: visible !important;
}
.orbital-cell{
  width:clamp(150px, 18vw, 220px) !important;
  height:clamp(210px, 24vw, 300px) !important;
  flex:0 0 auto !important;
}
.orbital-flipper{ width:100% !important; height:100% !important; }
.orbital-face{ width:100% !important; height:100% !important; }
.orbital-face img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* === FIX Reseñas: tarjeta central + burbujas (FORZADO) === */
.reviews-pop-canvas{
  position:relative !important;
  overflow:hidden !important;
  padding:40px 16px !important;
}
.floating-bubbles-layer{
  position:absolute !important;
  inset:0 !important;
  pointer-events:none !important;
  z-index:1 !important;
}
.review-card-central{
  position:relative !important;
  z-index:2 !important;
  max-width:520px !important;
  margin:0 auto !important;
  padding:22px 18px !important;
  border-radius:18px !important;
  background:#fff !important;
  box-shadow:0 12px 30px rgba(0,0,0,.25) !important;
}
.btn-pop-submit{
  padding:14px 18px !important;
  border-radius:14px !important;
  font-weight:700 !important;
  display:block !important;
  text-align:center !important;
  text-decoration:none !important;
}

/* === SEO LOCAL BLOCK === */
.seo-local-block {
    padding: 80px 20px;
    background: #fff;
    border-top: 12px solid #000;
    text-align: center;
    position: relative;
    z-index: 10;
}
.seo-local-block h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.seo-local-block p {
    font-family: sans-serif;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.seo-local-block address {
    font-style: normal;
    font-family: sans-serif;
    font-size: 1.2rem;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seo-local-block address a {
    color: #000;
    font-weight: 900;
    text-decoration: none;
}
.seo-btn-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FAQ SECTION (PREGUNTAS INSOLENTES) === */
.faq-section {
    padding: 80px 20px;
    background-color: #00FFFF; /* Cyan pop */
    background-image: radial-gradient(#000 2px, transparent 2px);
    background-size: 30px 30px;
    border-top: 12px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}
.faq-item {
    background: #fff;
    border: 5px solid #000;
    box-shadow: 8px 8px 0 #FF69B4;
    transition: 0.3s;
    cursor: pointer;
}
.faq-item[open] {
    box-shadow: 12px 12px 0 #FFD700;
    transform: translate(-2px, -2px);
}
.faq-question {
    padding: 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    list-style: none;
    position: relative;
    outline: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
}
details[open] .faq-question::after { content: '-'; }
.faq-answer {
    padding: 0 20px 20px 20px;
    font-family: sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    border-top: 2px dashed #000;
    margin-top: 0;
    padding-top: 15px;
}

/* === SEO H1 DISCRETO === */
.seo-h1 {
    font-family: sans-serif;
    font-size: 12px;
    color: #666;
    background: #000;
    text-align: center;
    padding: 5px;
    margin: 0;
    width: 100%;
    letter-spacing: 1px;
}

/* === SEO MINI NAV === */
.seo-mini-nav {
    background: #000;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    flex-wrap: wrap;
    border-top: 2px solid #333;
    position: relative;
    z-index: 10;
}
.seo-mini-nav a {
    color: #888;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.2s;
}
.seo-mini-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

/* === MAP CTA BUBBLE (INSOLENTE STYLE) === */
.map-cta-bubble {
    position: absolute;
    top: -140px;
    left: 50%;
    background: #fff;
    color: #000;
    border: 4px solid #000;
    padding: 12px 25px;
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    transform: translateX(-50%) rotate(3deg);
    box-shadow: 8px 8px 0 #000;
    z-index: 100;
    cursor: pointer;
    white-space: nowrap;
    animation: ctaBounce 1s infinite alternate;
    transition: transform 0.2s;
}

.map-cta-bubble:hover {
    transform: translateX(-50%) rotate(3deg) scale(1.1);
}

.map-cta-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #000 transparent;
    display: block;
    width: 0;
}

@keyframes ctaBounce {
    from { transform: translateX(-50%) rotate(3deg) translateY(0); }
    to { transform: translateX(-50%) rotate(3deg) translateY(-10px); }
}

@media (max-width: 768px) {
    .map-cta-bubble {
        top: -120px;
        left: 50%;
        font-size: 1.2rem;
        padding: 8px 15px;
    }
}

/* ETIQUETA SIN TERMINAR */
.unfinished-ribbon {
    position: absolute;
    top: 20px;
    left: -45px;
    width: 160px;
    background: #FFD700;
    color: #000;
    border: 3px solid #000;
    text-align: center;
    font-family: 'Bangers', cursive;
    font-size: 0.8rem;
    transform: rotate(-45deg);
    z-index: 50;
    pointer-events: none;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
    text-transform: uppercase;
    padding: 4px 0;
    line-height: 1;
    letter-spacing: 1px;
}

/* CREDIT FOOTER */
.footer-credit {
    margin-top: 30px;
    color: #e0e0e0;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-link-insolente {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link-insolente:hover {
    color: #FF69B4;
    text-shadow: 2px 2px 0 #000;
    transform: scale(1.05) rotate(-2deg);
}

/* REDISEÑO BOTÓN RESERVAR MODAL */
.zoom-btn-reserva {
    background: #000 !important;
    color: #FFD700 !important;
    border: 4px solid #000 !important;
    font-family: 'Bangers', cursive !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 10px 22px !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    box-shadow: 6px 6px 0px #000 !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease !important;
    font-size: 1.5rem !important;
    margin-top: 15px !important;
}

.zoom-btn-reserva:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 8px 8px 0px #000 !important;
}

.zoom-btn-reserva:active {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0px #000 !important;
}

@media (max-width: 768px) {
    .zoom-btn-reserva {
        padding: 8px 16px !important;
        font-size: 1.2rem !important;
    }
}

/* =====================================================
   TAREA CRÍTICA: CORRECCIONES RESPONSIVE (AÑADIDO QUIRÚRGICO)
   ===================================================== */
@media (max-width: 768px) {

    /* --- BLOQUE 1: CORREGIR DESBORDES LATERALES --- */

    /* Fix para contenedores de sección (Drink Me, Eat Me, Contacto) */
    #section-drink .page-section,
    #section-eat .page-section,
    .contacto-wrapper {
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Fix para grids de 2+ columnas (Drink Me, Eat Me, Contacto) */
    .comic-grid,
    .contacto-bottom-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix para el falso feed de Instagram en 'Contacto' */
    .insta-horizontal-card {
        flex-direction: column !important;
    }

    .insta-profile-section,
    .insta-grid {
        min-width: 0 !important; /* Permite que los elementos se encojan */
        width: 100% !important;
    }

    /* --- BLOQUE 2: AUMENTAR ALTURA CAJA "TÚ QUE SABRÁS" --- */
    .book-wrapper {
        aspect-ratio: unset !important;
        min-height: 700px !important; /* Aumenta la altura visible del texto */
    }
}