/* --- ESTILOS GENERALES --- */
:root {
    --color-naranja: #ff7f50;
    --color-turquesa: #20b2aa;
    --color-texto: #333;
    --blanco: #ffffff;
    --fondo: #f4f4f4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--fondo);
    color: var(--color-texto);
}

/* NAVBAR */
nav {
    background-color: rgba(0, 0, 0, 0.01); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    height: 90px; 
    padding: 0 0 0 5%;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    color: var(--blanco);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* HAMBURGER MENU (Por defecto oculto en escritorio) */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    z-index: 1001; 
}

.coming-soon:hover::after {
    content: "Coming Soon";
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInTooltip 0.3s forwards;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.coming-soon:hover::before {
    content: "";
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    opacity: 0;
    animation: fadeInTooltip 0.3s forwards;
}

@keyframes fadeInTooltip {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.logo { display: flex; align-items: center; align-self: center; }
.logo img { height: 50px; width: auto; display: block; transition: height 0.3s ease; }
.nav-links { display: flex; height: 100%; align-items: stretch; margin-left: auto; gap: 0; }

.casetera-btn {
    text-decoration: none; font-family: 'Segoe UI', sans-serif; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; color: white !important; padding: 0 35px; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 0; position: relative; box-shadow: none; transform: translateY(0); transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.casetera-btn i { color: rgb(255, 255, 255) !important; font-size: 1.2rem; transition: transform 0.2s ease; }
.casetera-btn.btn-turquesa { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.1); color: white !important; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.casetera-btn.btn-naranja { background-color: var(--color-naranja); }
.casetera-btn:hover { z-index: 10; transform: translateY(-4px); }
.casetera-btn.btn-turquesa:hover { background-color: var(--color-turquesa); border-color: var(--color-turquesa); box-shadow: 0 0 20px rgba(32, 178, 170, 0.6); transform: translateY(-3px); }
.casetera-btn.btn-naranja:hover { box-shadow: 0 4px 0 #c45d38, 0 8px 15px rgba(255, 127, 80, 0.3); }
.casetera-btn:hover i { transform: scale(1.1) rotate(-5deg); color: rgba(0, 0, 0, 0.5) !important; }
.casetera-btn:active { transform: translateY(0); box-shadow: none; }
.separador-nav { width: 1px; height: 40%; background-color: rgba(255, 255, 255, 0.3); align-self: center; margin: 0 15px; }

/* HERO & CINTA */
.hero { position: relative; height: 640px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--blanco); padding: 20px; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.07); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); line-height: 1.1; }
.hero p { font-size: 1.5rem; color: var(--color-naranja); font-weight: bold; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); margin-bottom: 0; }

.cinta-container { width: 100%; background-color: var(--blanco); overflow: hidden; padding: 8px 0; border-bottom: 1px solid #ddd; position: relative; z-index: 5; }
.cinta-track { display: flex; width: max-content; animation: scroll-left 150s linear infinite; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.cinta-item { height: 35px; width: auto; margin: 0 40px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s; cursor: pointer; }
.cinta-item:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* OFERTAS & CARDS */
.ofertas { padding: 60px 5%; text-align: center; }
.ofertas h2 { font-size: 2rem; color: #333; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.card { background: var(--blanco); border-radius: 1px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); transition: transform 0.3s, box-shadow 0.3s; display: flex; position: relative; max-height: 240px; }
.card:hover { transform: translateY(-7px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); }
.ticket-stub { background-color: #06748d; width: 60px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 20px 0; color: white; flex-shrink: 0; position: relative; }
.ticket-stub::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 10px; background-image: radial-gradient(circle at 0 50%, var(--fondo) 5px, transparent 6px); background-size: 10px 18px; background-repeat: repeat-y; }
.ticket-icons img { display: block; margin: 0 auto 15px auto; width: 35px; height: auto; }
.qr-code i { font-size: 1.8rem; }
.card-content-wrapper { flex: 1; display: flex; flex-direction: column; }
.card-img { height: 125px; background-size: cover; background-position: center; position: relative; }
.card-content { padding: 15px; text-align: left; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.card-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.price { font-size: 1.5rem; color: var(--color-naranja); font-weight: 870; line-height: 1; }
.card h3 { margin: 0; color: var(--color-turquesa); font-size: 1.15rem; font-weight: 700; text-align: right; }
.card p { font-size: 0.9rem; color: #666; margin: 5px 0 10px 0; line-height: 1.3; }
.details-btn { display: inline-block; width: auto; padding: 8px 20px; background: var(--color-naranja); color: white; text-align: center; text-decoration: none; border-radius: 6px; font-size: 0.95rem; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; }
.details-btn:hover { background: #e06030; }
.details-btn.disabled-btn { background-color: #ccc !important; cursor: not-allowed !important; pointer-events: none; transform: none !important; box-shadow: none !important; }

/* MODAL & SIDEBAR */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px); overflow-y: auto; }
.modal-flex-wrapper { display: flex; justify-content: center; align-items: stretch; width: 100%; max-width: 1600px; margin: 50px auto; position: relative; animation: slideDown 0.4s ease; }
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-main-content { background-color: #fff; border-radius: 15px; width: 100%; max-width: 480px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); z-index: 10; position: relative; overflow: hidden; flex-shrink: 0; display: flex; flex-direction: column; }
.modal-body { padding: 25px; flex: 1; }
.modal-header { background: var(--color-turquesa); padding: 20px; color: white; display: flex; justify-content: space-between; align-items: center; }
.modal-header h2 { margin: 0; font-size: 1.4rem; }
.close-btn { color: white; font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-btn:hover { transform: scale(1.1); }
.qr-display-section { text-align: center; margin-bottom: 20px; padding: 15px; background: #f9f9f9; border: 2px dashed #ddd; border-radius: 10px; }
.qr-display-section i { font-size: 4rem; color: #444; }
.qr-display-section p { margin-top: 10px; color: #666; font-size: 0.9rem; }

.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: #555; font-size: 0.95rem; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; box-sizing: border-box; font-size: 1rem; background-color: #fff; }
.form-group input:focus { border-color: var(--color-naranja); outline: none; }
.submit-btn { width: 100%; padding: 15px; background: var(--color-naranja); color: white; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; margin-top: auto; }
.submit-btn:hover { background: #e06030; }

.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.half-width { flex: 1; margin-bottom: 0; }
.hidden-row { display: none; }

/* SIDEBAR DERECHO (LENGÜETA) */
.modal-right-sidebar { background-color: #f4f8f8; width: 1000px; border-top-right-radius: 15px; border-bottom-right-radius: 15px; box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1); transition: width 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); position: relative; z-index: 1; margin-left: -15px; padding-left: 15px; overflow: hidden; display: flex; flex-direction: column; }
.modal-right-sidebar.collapsed { width: 60px; background-color: var(--color-turquesa); cursor: pointer; }
.notebook-tab { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding-top: 50px; color: white; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-right-sidebar.collapsed .notebook-tab { opacity: 1; pointer-events: auto; transition-delay: 0.2s; }
.notebook-tab span { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-weight: 800; letter-spacing: 3px; font-size: 1.2rem; white-space: nowrap; }

.sidebar-content { padding: 30px; width: 950px; opacity: 1; visibility: visible; transform: translateX(0); transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s, visibility 0s linear 0s; height: 100%; display: flex; flex-direction: column; box-sizing: border-box; }
.modal-right-sidebar.collapsed .sidebar-content { opacity: 0; visibility: hidden; transform: translateX(20px); transition: opacity 0.1s ease 0s, transform 0.1s ease 0s, visibility 0s linear 0.1s; }
.sidebar-content h3 { color: var(--color-turquesa); margin-top: 0; font-size: 1.3rem; }
.sidebar-content ul { padding: 0; margin-bottom: 25px; list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; row-gap: 12px; }
.sidebar-content li { font-size: 0.9rem; color: #666; margin: 0; display: flex; align-items: flex-start; line-height: 1.4; }
.sidebar-content li i { color: var(--color-naranja); margin-right: 10px; margin-top: 3px; flex-shrink: 0; }
.sidebar-desc { font-style: italic; color: #555; margin-bottom: 20px; }
.terms-box { background: #eef; padding: 10px; font-size: 0.8rem; border-left: 3px solid var(--color-turquesa); margin-top: 20px; margin-top: auto; }

.close-sidebar-btn { position: absolute; top: 15px; right: 15px; border: none; background-color: rgba(0,0,0,0.1); width: 30px; height: 30px; border-radius: 50%; font-size: 1.2rem; color: #555; cursor: pointer; z-index: 20; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.close-sidebar-btn:hover { background-color: var(--color-naranja); color: white; transform: scale(1.1); }
.video-buttons-container { position: absolute; top: 15px; right: 60px; display: flex; gap: 8px; z-index: 10; }
.yt-btn { text-decoration: none; background-color: #ff0000; color: white; font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; display: flex; align-items: center; gap: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); transition: all 0.3s ease; }
.yt-btn:hover { background-color: #cc0000; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); color: white; }
.yt-btn i { font-size: 0.9rem; }

/* STOCK BAR */
.stock-badge { position: absolute; bottom: 0; left: 0; width: 100%; height: 20px; background: rgba(0, 0, 0, 0.7); color: white; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.stock-badge span { position: relative; z-index: 2; font-weight: bold; letter-spacing: 1px; }
.stock-bar { position: absolute; left: 0; top: 0; height: 100%; background-color: var(--color-naranja); opacity: 0.8; z-index: 1; }
.card.inactive .stock-bar { background-color: #666; }
.card.inactive { filter: grayscale(100%); opacity: 0.7; pointer-events: none; position: relative; }

/* GALERÍA VISUAL */
.visual-gallery-container { display: flex; flex-direction: column; flex: 1; height: 100%; overflow: hidden; padding-top: 10px; }
.visual-title { color: var(--color-turquesa); margin: 0 0 15px 0; font-size: 1.5rem; text-align: center; flex-shrink: 0; padding-right: 30px; }
.main-display-box { flex: 1; width: 100%; aspect-ratio: 16 / 9; min-height: 350px; background-color: #000; border-radius: 10px; overflow: hidden; position: relative; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); }
.video-frame { width: 100%; height: 100%; border: none; }
.thumbnails-track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scroll-behavior: smooth; flex-shrink: 0; }
.thumb-item { width: 100px; height: 65px; border-radius: 8px; overflow: hidden; cursor: pointer; flex-shrink: 0; opacity: 0.6; transition: all 0.3s ease; border: 2px solid transparent; position: relative; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-item:hover, .thumb-item.active { opacity: 1; border-color: var(--color-naranja); transform: scale(1.05); }
.visual-footer-text { text-align: center; font-size: 0.8rem; color: #999; margin-top: 10px; flex-shrink: 0; }
.img-fade-in { animation: fadeInImg 0.5s ease forwards; }
@keyframes fadeInImg { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
.play-icon-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 1.2rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); pointer-events: none; z-index: 2; }

/* MODAL CONTACTO */
#modalContacto { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px); overflow-y: auto; }
.modal-contact-card { background-color: #fff; margin: 10% auto; padding: 0; border-radius: 20px; width: 90%; max-width: 400px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); position: relative; overflow: hidden; animation: slideDown 0.4s ease; text-align: center; }
.close-contact-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold; color: #fff; cursor: pointer; transition: 0.3s; z-index: 5; }
.close-contact-btn:hover { color: #f0f0f0; transform: scale(1.1); }
.contact-header { background: linear-gradient(135deg, var(--color-naranja), #ff6b3d); padding: 40px 20px 30px; color: white; }
.contact-header i { font-size: 3rem; margin-bottom: 10px; opacity: 0.9; }
.contact-header h2 { margin: 0; font-size: 1.8rem; letter-spacing: 1px; }
.contact-header p { margin: 5px 0 0; opacity: 0.9; font-size: 0.9rem; }
.contact-body { padding: 30px; }
.contact-item { display: flex; align-items: center; background: #f8f9fa; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #eee; transition: transform 0.2s; }
.contact-item:hover { transform: translateY(-3px); border-color: var(--color-turquesa); }
.icon-box { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; margin-right: 15px; flex-shrink: 0; }
.email-icon { background-color: var(--color-turquesa); }
.whatsapp-icon { background-color: #25D366; }
.info-box { text-align: left; }
.info-box small { display: block; color: #888; font-size: 0.75rem; text-transform: uppercase; font-weight: bold; }
.info-box a { text-decoration: none; color: #333; font-weight: 600; font-size: 1rem; word-break: break-all; }
.info-box a:hover { color: var(--color-naranja); }
.contact-footer { background-color: #f4f4f4; padding: 15px; font-size: 0.8rem; color: #777; }

/* SLIDER NAV */
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 100px; background-color: rgba(0, 0, 0, 0.15); color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20; transition: all 0.3s ease; font-size: 1.8rem; backdrop-filter: blur(2px); }
.slider-nav:hover { background-color: rgba(0, 0, 0, 0.5); color: #fff; width: 70px; }
.slider-nav.prev { left: 0; border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.slider-nav.next { right: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; }

/* RESPONSIVE & FOOTER */
footer { background-color: #06748d; border-top: 1px solid #eeeeee; margin-top: 60px; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #ffffff; position: relative; }
.footer-left img { height: 50px; width: auto; display: block; }

/* --- AQUI ESTA LA MAGIA DE LA IMAGEN EN EL FOOTER --- */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute; /* CAMBIO: Absoluto al centro del footer para no depender del flujo */
    left: 50%;
    top: 0; /* Alineado al borde superior del footer */
    transform: translateX(-50%);
    height: 100%; /* Ocupa la altura para centrar si fuera necesario, pero la img es absoluta */
    width: 100px; /* Ancho reservado */
}

/* Footer Badge Image Style */
.footer-badge {
    /* TAMAÑO AUMENTADO */
    width: 130px;  
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    background-color: white; 
    padding: 0px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    
    /* POSICIONAMIENTO ABSOLUTO (FLOTANTE) */
    position: absolute;
    /* Top negativo: Mitad de 80px = 40px hacia arriba. */
    /* Le damos un poco más (-45px) para que sobresalga bien */
    top: -65px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: transform 0.3s ease;
}

.footer-badge:hover {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
}

/* Footer Right: Contiene Copyright + Iconos */
.footer-right { 
    display: flex; 
    gap: 25px; /* Espacio entre el texto y los iconos */
    align-items: center; 
}

.copyright-text {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a { color: #999999; font-size: 1.2rem; text-decoration: none; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; width: 35px; height: 35px; border-radius: 50%; background-color: #f9f9f9; }
.social-icons a:hover { color: #ffffff; transform: translateY(-3px); }
.social-icons a:nth-child(odd):hover { background-color: var(--color-turquesa); }
.social-icons a:nth-child(even):hover { background-color: #ff7f50; }

/* --- OVERLAY LOTTIE (ANIMACIÓN ÉXITO) --- */
#success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent !important; 
    z-index: 9999;
    display: none; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none; 
}

#success-overlay lottie-player {
    width: 100%;
    height: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent !important; 
    object-fit: cover; /* Aunque esto es para img, en lottie ayuda si se comportara como bloque */
}

/* --- MEDIA QUERY RESPONSIVA (MÓVIL) --- */
@media (max-width: 768px) {
    
    /* 1. Navbar: Altura ajustada a 80px */
    nav { 
        height: 90px; 
        padding: 0 20px; 
        align-items: center;
    }

    /* 2. Hamburguesa visible */
    .hamburger { 
        display: block; 
    }

    /* 3. Logo centrado */
    .logo { 
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); 
        margin-bottom: 0; 
    }
    
    .logo img {
        height: 50px; 
    }

    /* 4. Menú de enlaces */
    .nav-links { 
        position: fixed;
        top: 80px; 
        left: 0;
        width: 100%;
        height: 0; 
        background-color: rgba(0, 0, 0, 0.2); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        overflow: hidden; 
        flex-direction: column; 
        align-items: center;
        justify-content: flex-start; 
        padding-top: 0; 
        padding-bottom: 0;
        gap: 20px; 
        transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease; 
        margin-left: 0;
        padding-left: 0; padding-right: 0;
        box-shadow: none;
    }

    .nav-links.active {
        height: auto;
        max-height: 300px; 
        padding-top: 20px;
        padding-bottom: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .casetera-btn { 
        height: 50px; 
        width: 80%; 
        box-shadow: none !important; 
        transform: none !important; 
        border-right: none; 
        border-radius: 8px; 
        font-size: 1.1rem; 
        justify-content: center;
    }

    .casetera-btn.btn-naranja {
        background-color: var(--color-naranja) !important;
        border: none !important; 
        color: white !important;
    }
    
    .casetera-btn.btn-turquesa {
        background-color: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important; 
        color: white !important;
    }
    
    .separador-nav { display: none; }

    /* Ajustes generales móviles */
    .modal-flex-wrapper { flex-direction: column; align-items: center; margin-top: 10px; }
    .modal-main-content { width: 100%; max-width: 100%; border-radius: 15px; }
    .modal-right-sidebar { width: 95% !important; margin-left: 0; margin-top: -10px; border-radius: 0 0 15px 15px; height: auto; min-height: 400px; }
    .modal-right-sidebar.collapsed { height: 50px; width: 95%; }
    .sidebar-content { width: 100%; padding: 20px; }
    .sidebar-content ul { grid-template-columns: 1fr; }
    .video-buttons-container { position: relative; top: 0; right: 0; margin-bottom: 15px; justify-content: flex-start; }
    
    .hero { height: auto; min-height: 400px; padding: 40px 20px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    .slider-nav { width: 40px; height: 70px; font-size: 1.2rem; background-color: rgba(0, 0, 0, 0.2); }
    .slider-nav:hover { width: 45px; }
    .cinta-item { height: 25px; margin: 0 15px; }
    .cinta-track { animation: scroll-left 25s linear infinite; }
    .ofertas { padding: 40px 15px; }
    
    /* Ajuste Footer Móvil: Badge en flujo normal para no tapar logo */
    footer { 
        flex-direction: column; 
        gap: 30px; /* Más espacio vertical */
        padding: 40px 20px 30px; 
        text-align: center; 
        margin-top: 80px; /* Dar espacio extra arriba para la imagen flotante si es necesario */
    }
    
    .footer-left { order: 2; } /* Logo abajo */
    
    .footer-center { 
        position: static; /* Ya no es absoluto en móvil */
        transform: none; 
        width: auto;
        height: auto;
        order: 1; /* Imagen arriba del todo en el footer móvil */
        margin-top: -100px; /* Subirla para que flote sobre el borde en móvil también */
        margin-bottom: 5px;
    }
    
    .footer-badge {
        position: static; /* Estática dentro de su contenedor flex */
        transform: none;
        top: auto;
        left: auto;
        width: 110px; /* Un pelín más chica en móvil */
        height: 110px;
    }
    
    .footer-badge:hover {
        transform: scale(1.1);
    }

    .footer-right { 
        order: 3; 
        flex-direction: column; /* Apilar copyright e iconos en móvil */
        gap: 15px;
    }
    
    .copyright-text {
        text-align: center;
        order: 2; /* Copyright al final */
    }
    
    .social-icons {
        order: 1; /* Iconos primero */
        justify-content: center;
    }
}