* {
    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: 10000;;
    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;
}

/* ✅ ESTILOS PARA LOS BOTONES DE NAVEGACIÓN */
.login-nav-btn,
.cart-nav-btn,
.catalogo-nav-btn {
    background: #ff6b35 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.login-nav-btn:hover,
.cart-nav-btn:hover,
.catalogo-nav-btn:hover {
    background: #ff8555 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Ocultar texto de botones cuando DevTools está abierto o viewport estrecho */
@media (max-width: 1400px) {
    .catalogo-nav-btn .btn-text,
    .cart-nav-btn .btn-text,
    .login-nav-btn .btn-text {
        display: none;
    }
    
    .catalogo-nav-btn,
    .cart-nav-btn,
    .login-nav-btn {
        padding: 10px !important;
        min-width: 45px;
        justify-content: center;
    }
}

/* Mostrar texto nuevamente en pantallas más amplias */
@media (min-width: 1401px) {
    .catalogo-nav-btn .btn-text,
    .cart-nav-btn .btn-text,
    .login-nav-btn .btn-text {
        display: inline;
    }
}

/* 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);
}

/* ===== BOTONES CTA DEL BANNER - OCULTOS ===== */
.cta-button {
    background: #ff6b35;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: none !important;
    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);
}

/* ===== EXCEPCIÓN: Mostrar botón de la tienda de suplementos ===== */
.tienda-button {
    display: inline-block !important;
}

.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 ==================== */
.promociones {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.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;
}

.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;
}

.promociones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    padding: 0 20px;
}

.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;
}

.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; }

.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; }

.promocion-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.promocion-card:hover .promocion-img {
    transform: scale(1.02);
    filter: brightness(1);
}

.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%; }
}

.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;
}

.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;
}

.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);
}

.promocion-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    flex-grow: 1;
}

.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);
}

@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); }
}

@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 ==================== */
.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; }

.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; }

.plan-card:nth-child(1) { order: 1; }
.plan-card:nth-child(2) { order: 2; }
.plan-card:nth-child(3) { order: 3; }
.plan-card:nth-child(4) { order: 4; }
.plan-card:nth-child(5) { order: 6; }
.plan-card:nth-child(6) { order: 5; }

@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; }
    .nav-links { gap: 0.5rem; font-size: 0.85rem; }
    .nav-links a { padding: 5px 10px; }
    .login-nav-btn, .cart-nav-btn, .catalogo-nav-btn { padding: 8px 15px !important; font-size: 0.9rem; }
}

/* 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: 3rem 2rem 2rem;
    border-top: 3px solid #ff6b35; position: relative;
}

.footer-logo {
    position: absolute; top: 20px; right: 30px;
    height: 120px; width: auto; opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover { opacity: 1; transform: scale(1.05); }

.footer-content { margin-right: 220px; }
.footer-content h3 { color: #ff6b35; font-size: 1.8rem; margin-bottom: 0.5rem; }
.footer-content > p { color: rgba(255, 255, 255, 0.7); margin-bottom: 0.5rem; }

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 12px 40px;
    margin: 25px auto 20px;
    max-width: 320px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none; font-size: 0.95rem; font-weight: 500;
    transition: color 0.3s ease; cursor: pointer; position: relative;
}

.footer-nav a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: #ff6b35; transition: width 0.3s ease;
}

.footer-nav a:hover { color: #ff6b35; }
.footer-nav a:hover::after { width: 100%; }

.footer-copyright { margin-top: 1.5rem; color: rgba(255, 255, 255, 0.45); font-size: 0.9rem; }

@media (max-width: 600px) {
    .footer-nav { gap: 10px 20px; }
    .footer-nav a { font-size: 0.88rem; }
    .footer-logo {
        position: static; transform: none;
        display: block; margin: 0 auto 1.5rem; height: 110px;
    }
    .footer-logo:hover { transform: scale(1.05); }
    .footer-content { margin-right: 0; }
}

@media (max-width: 1024px) {
    .promociones-grid, .instalaciones-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .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
   ========================================== */
.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; }
}

/* ============================================================
   🤖 CHATBOT IA - POLUX GYM
   ============================================================ */

#polux-chat-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #e63900);
    border: none; cursor: pointer; z-index: 9999;
    box-shadow: 0 4px 20px rgba(230,57,0,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: polux-pulse 2.5s infinite;
}
#polux-chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(230,57,0,0.65); }
@keyframes polux-pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(230,57,0,0.5); }
    50%      { box-shadow: 0 4px 36px rgba(230,57,0,0.8); }
}
#polux-chat-btn svg { width: 28px; height: 28px; }

#polux-chat-bubble {
    position: fixed; bottom: 100px; right: 28px;
    background: #1a1a1a; color: #fff;
    padding: 10px 16px; border-radius: 12px 12px 0 12px;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
    z-index: 9998; pointer-events: none;
    opacity: 1; transition: opacity 0.5s;
    white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
#polux-chat-bubble::after {
    content: ''; position: absolute; bottom: -8px; right: 16px;
    border: 8px solid transparent; border-top-color: #1a1a1a; border-bottom: none;
}

#polux-chat-window {
    position: fixed; bottom: 100px; right: 28px;
    width: 370px; max-height: 560px;
    background: #111; border-radius: 20px; z-index: 9997;
    display: none; flex-direction: column; overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,106,0,0.2);
    font-family: 'DM Sans', sans-serif;
    animation: polux-slideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes polux-slideUp {
    from { opacity:0; transform: translateY(20px) scale(0.95); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}

#polux-chat-header {
    background: linear-gradient(135deg, #e63900, #ff6a00);
    padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.polux-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.3);
}
.polux-header-info { flex: 1; }
.polux-header-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 20px;
    letter-spacing: 1px; color: #fff; line-height: 1; margin-bottom: 2px;
}
.polux-header-status {
    font-size: 12px; color: rgba(255,255,255,0.8);
    display: flex; align-items: center; gap: 5px;
}
.polux-status-dot {
    width: 7px; height: 7px; background: #7fff6a;
    border-radius: 50%; display: inline-block; box-shadow: 0 0 6px #7fff6a;
}
#polux-close-btn {
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
#polux-close-btn:hover { background: rgba(255,255,255,0.3); }

#polux-messages {
    flex: 1; overflow-y: auto; padding: 18px 16px;
    display: flex; flex-direction: column; gap: 12px;
    scroll-behavior: smooth; max-height: 380px;
}
#polux-messages::-webkit-scrollbar { width: 4px; }
#polux-messages::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

.polux-msg {
    max-width: 82%; padding: 10px 14px; border-radius: 16px;
    font-size: 14px; line-height: 1.5; animation: polux-fadeMsg 0.25s ease;
}
@keyframes polux-fadeMsg {
    from { opacity:0; transform: translateY(6px); }
    to   { opacity:1; transform: translateY(0); }
}
.polux-msg.bot {
    background: #1e1e1e; color: #e8e8e8;
    border-bottom-left-radius: 4px; align-self: flex-start;
    border: 1px solid #2a2a2a;
}
.polux-msg.user {
    background: linear-gradient(135deg, #e63900, #ff6a00);
    color: #fff; border-bottom-right-radius: 4px; align-self: flex-end;
}

.polux-typing {
    display: flex; gap: 5px; align-items: center;
    padding: 12px 16px; background: #1e1e1e;
    border-radius: 16px 16px 16px 4px; align-self: flex-start;
    border: 1px solid #2a2a2a;
}
.polux-typing span {
    width: 7px; height: 7px; background: #ff6a00;
    border-radius: 50%; animation: polux-bounce 1.2s infinite;
}
.polux-typing span:nth-child(2) { animation-delay: 0.2s; }
.polux-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes polux-bounce {
    0%,60%,100% { transform: translateY(0); opacity: 0.4; }
    30%          { transform: translateY(-6px); opacity: 1; }
}



#polux-input-area {
    display: flex; gap: 8px; padding: 12px 16px;
    border-top: 1px solid #1e1e1e; background: #0d0d0d;
}
#polux-input {
    flex: 1; background: #1a1a1a; border: 1px solid #2a2a2a;
    border-radius: 24px; padding: 10px 16px; color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    outline: none; transition: border-color 0.2s;
}
#polux-input:focus { border-color: rgba(255,106,0,0.5); }
#polux-input::placeholder { color: #555; }
#polux-send-btn {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #e63900, #ff6a00);
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.15s, opacity 0.2s;
}
#polux-send-btn:hover { transform: scale(1.08); }
#polux-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
#polux-send-btn svg { width: 18px; height: 18px; }

@media (max-width: 420px) {
    #polux-chat-window { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
    #polux-chat-btn { right: 16px; bottom: 16px; }
}