* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

.login-nav-btn,
.cart-nav-btn {
    background: #ff6b35 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.login-nav-btn:hover,
.cart-nav-btn:hover {
    background: #ff8555 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Banner */
.hero-banner {
    margin-top: 70px;
    height: 600px;
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInDown 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background: #ff8555;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.8);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slider-btn:hover {
    background: rgba(255, 107, 53, 1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.3);
}

/* Sobre Nosotros */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.about h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    color: white;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== PROMOCIONES - DISEÑO FORMAL Y LLAMATIVO ==================== */
.promociones {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Efectos de fondo animados - más sutiles */
.promociones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.promociones-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Título principal */
.promociones h2 {
    text-align: center;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    animation: fadeInDown 0.8s ease;
}

.promociones-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease;
}

/* Grid de promociones */
.promociones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    padding: 0 20px;
}

/* Tarjetas de promoción - Diseño formal */
.promocion-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 107, 53, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
}

/* Animación escalonada para las tarjetas */
.promocion-card:nth-child(1) { animation-delay: 0.1s; }
.promocion-card:nth-child(2) { animation-delay: 0.2s; }
.promocion-card:nth-child(3) { animation-delay: 0.3s; }
.promocion-card:nth-child(4) { animation-delay: 0.4s; }

/* Efecto hover elegante */
.promocion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.promocion-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.promocion-card:hover::before {
    opacity: 1;
}

/* Imagen de la promoción */
.promocion-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.promocion-card:hover .promocion-img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Placeholder para imágenes - Diseño más formal */
.promocion-img-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.promocion-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 53, 0.1),
        transparent
    );
    animation: slideLight 3s infinite;
}

@keyframes slideLight {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Información de la promoción */
.promocion-info {
    padding: 35px 25px 25px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Badge de descuento - Más elegante */
.promocion-badge {
    position: absolute;
    top: -18px;
    right: 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 
        0 5px 20px rgba(255, 107, 53, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

/* Título de la promoción */
.promocion-info h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Descripción */
.promocion-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    flex-grow: 1;
}

/* Fecha de validez - Diseño más formal */
.promocion-fecha {
    color: #ff6b35;
    font-size: 0.95rem;
    margin-top: 20px;
    padding: 15px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .promociones-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .promociones {
        padding: 60px 15px;
    }

    .promociones h2 {
        font-size: 2rem;
    }

    .promociones-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .promociones-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .promocion-badge {
        font-size: 1rem;
        padding: 8px 20px;
        top: -15px;
        right: 20px;
    }

    .promocion-info h3 {
        font-size: 1.4rem;
    }

    .promocion-img,
    .promocion-img-placeholder {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .promociones h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .promociones-subtitle {
        font-size: 0.95rem;
    }

    .promocion-info {
        padding: 30px 20px 20px;
    }
}

/* Instalaciones */
.instalaciones {
    background: linear-gradient(135deg, #090909 0%, #1a1a1a 100%);
    padding: 5rem 2rem;
}

.instalaciones-container {
    max-width: 1400px;
    margin: 0 auto;
}

.instalaciones h2 {
    color: #ff6b35;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.instalaciones-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.instalaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
}

.instalacion-card {
    background: #2d2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    height: 100%;
}

.instalacion-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.instalacion-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instalacion-card:hover .instalacion-img {
    transform: scale(1.1);
}

.instalacion-info {
    padding: 1.5rem;
}

.instalacion-info h3 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.instalacion-info p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Horarios */
.horarios {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.horarios h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.horarios-info {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
}

.horarios-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.horarios-cta {
    margin-top: 1.5rem;
    color: #ff6b35;
    font-size: 1.3rem;
}

/* ==================== MEMBRESÍAS - 3 ARRIBA, 3 ABAJO ==================== */
.carrito {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #3e3e3e 100%);
}

.carrito-container {
    max-width: 1400px;
    margin: 0 auto;
}

.carrito h2 {
    color: #ff6b35;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.membresias-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
}

.plan-card {
    background: linear-gradient(145deg, #b8b6b6 0%, #d0d0d0 100%);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.plan-card.premium {
    background: linear-gradient(145deg, #b8b6b6 0%, #b8b6b6 100%);
    border-color: #ff6b35;
}

.plan-card.premium h3,
.plan-card.premium .precio,
.plan-card.premium .plan-features li {
    color: rgb(6, 5, 5);
}

.plan-card.premium .precio {
    color: #ff6b35;
}

.plan-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.precio {
    color: #ff6b35;
    font-size: 2.8rem;
    font-weight: bold;
    margin: 1rem 0;
}

.precio span {
    font-size: 1rem;
    color: #050505;
}

.plan-card.destacado .precio span {
    color: rgba(10, 10, 10, 0.8);
}

.plan-card.premium .precio span {
    color: rgba(10, 10, 10, 0.8);
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #0d0d0d;
    font-size: 0.95rem;
}

/* Tarjeta del reglamento */
.reglamento-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-color: #ff8555;
    overflow: hidden;
}

.reglamento-container {
    width: 150%;
    height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reglamento-img {
    width: 150%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.reglamento-img:hover {
    transform: scale(1.05);
}

.tienda-button-container {
    text-align: center;
    margin-top: 3rem;
}

.tienda-button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Orden específico de las tarjetas */
.plan-card:nth-child(1) { order: 1; } /* Visitas Diarias */
.plan-card:nth-child(2) { order: 2; } /* Plan Semanal */
.plan-card:nth-child(3) { order: 3; } /* Plan Quincenal */
.plan-card:nth-child(4) { order: 4; } /* Plan Mensual */
.plan-card:nth-child(5) { order: 6; } /* Reglamento */
.plan-card:nth-child(6) { order: 5; } /* Plan Mensual + Caminadora */

/* Responsive */
@media (max-width: 1024px) {
    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .instalaciones-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .planes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-card.destacado {
        transform: scale(1);
    }

    .carrito h2 {
        font-size: 2rem;
    }
    
    .reglamento-img {
        max-height: 400px;
    }
    
    .instalaciones-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Ubicación */
.ubicacion {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3e3e3e 0%, #2d2d2d 100%);
}

.ubicacion h2 {
    color: #ff6b35;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 2rem auto;
}

.mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mapa-iframe {
    border: none;
    border-radius: 15px;
}

.ubicacion-info {
    background: linear-gradient(145deg, #b8b2b2 0%, #d0d0d0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ubicacion-info h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ubicacion-subtitle-como-llegar,
.ubicacion-subtitle-transporte {
    margin-top: 2rem;
}

.ubicacion-info p {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.ubicacion-maps-button {
    margin-top: 2rem;
    text-align: center;
}

.btn-mapa {
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-mapa:hover {
    background: #ff8555;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

/* Contacto */
.contacto {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3e3e3e 0%, #2d2d2d 100%);
}

.contacto-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contacto h2 {
    color: #ff6b35;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contacto-cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.info-item {
    background: linear-gradient(145deg, #b8b2b2 0%, #d0d0d0 100%);
    padding: 2rem;
    border-radius: 15px;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.info-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.atencion-item {
    border: 2px solid #ff6b35;
}

.whatsapp-item {
    background: linear-gradient(145deg, #b0afaf 0%, #b0afaf 100%);
    cursor: pointer;
    border: 2px solid #1fa855;
}

.whatsapp-item:hover {
    background: linear-gradient(145deg, #b0afaf 0%, #b0afaf 100%);
}

.whatsapp-title {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
}

.whatsapp-custom-icon {
    width: 30px;
    height: 30px;
}

.whatsapp-phone {
    color: rgb(4, 4, 4);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 3px solid #ff6b35;
}

.footer-content h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .promociones-grid,
    .instalaciones-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .nav-links a {
        padding: 5px 10px;
    }
    
    .login-nav-btn,
    .cart-nav-btn {
        padding: 8px 15px !important;
        font-size: 0.9rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .promociones h2,
    .instalaciones h2,
    .carrito h2,
    .ubicacion h2,
    .contacto h2 {
        font-size: 2rem;
    }

    .promociones-grid,
    .instalaciones-grid,
    .planes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ubicacion-content {
        grid-template-columns: 1fr;
    }

    .plan-card.destacado {
        transform: scale(1);
    }

    .slider-btn {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .contacto-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.3rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 40px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .promocion-badge {
        font-size: 1rem;
        padding: 8px 18px;
    }

    .promocion-info h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   MODAL DE GALERÍA - AGREGAR AL FINAL
   ========================================== */

.galeria-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(239, 237, 108, 0.95);
    color: rgb(12, 12, 12);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.modal-galeria {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 999999 !important;
    display: flex !important;
}

.modal-galeria-contenido {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-cerrar {
    position: absolute !important;
    top: 20px !important;
    right: 30px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 3px solid white !important;
    color: white !important;
    font-size: 40px !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000001 !important;
}

.modal-cerrar:hover {
    background: rgba(239, 237, 108, 0.95) !important;
    transform: rotate(90deg) scale(1.1);
}

.modal-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 3px solid white !important;
    color: white !important;
    font-size: 30px !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000001 !important;
}

.modal-prev { left: 30px !important; }
.modal-next { right: 30px !important; }

.modal-nav:hover {
    background: rgba(239, 237, 108, 0.95) !important;
    transform: translateY(-50%) scale(1.15) !important;
}

.modal-imagen-container {
    max-width: 90%;
    max-height: 70vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-imagen-container img {
    max-width: 100% !important;
    max-height: 70vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: block !important;
}

.modal-info {
    position: absolute !important;
    bottom: 140px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center;
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 10px;
}

.modal-info h3 {
    font-size: 28px !important;
    margin: 0 0 10px 0 !important;
    color: white !important;
}

.modal-contador {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}

.modal-miniaturas {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 15px;
    max-width: 90%;
    overflow-x: auto;
}

.miniatura {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    border: 3px solid transparent !important;
    flex-shrink: 0;
    display: block !important;
}

.miniatura:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.miniatura.activa {
    border-color: #ff5722 !important;
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.5);
}

body.modal-abierto {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .modal-cerrar {
        top: 10px !important;
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 30px !important;
    }
    
    .modal-nav {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    
    .modal-prev { left: 10px !important; }
    .modal-next { right: 10px !important; }
    
    .modal-imagen-container,
    .modal-imagen-container img {
        max-height: 55vh !important;
    }
    
    .modal-info {
        bottom: 110px !important;
        padding: 10px 20px;
    }
    
    .modal-info h3 { font-size: 20px !important; }
    .modal-contador { font-size: 14px !important; }
    
    .modal-miniaturas {
        bottom: 20px !important;
        gap: 8px;
        padding: 10px;
    }
    
    .miniatura {
        width: 60px !important;
        height: 60px !important;
    }
    
    .galeria-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
}