/* Reset y estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de colores verde */
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --primary-green: #00ff88;
    --secondary-green: #00cc6a;
    --accent-green: #00ffaa;
    --neon-green: #39ff14;
    --dark-green: #004d1a;
    
    /* Tipografía */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaciado */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    
    /* Sombras modernas */
    --shadow-light: 0 4px 20px rgba(0, 255, 136, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 255, 136, 0.2);
    --shadow-heavy: 0 12px 40px rgba(0, 255, 136, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.5);
    
    /* Bordes redondeados */
    --border-radius: 12px;
    --border-radius-large: 20px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background: var(--primary-black);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-green);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-green);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-neon);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid var(--primary-green);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-green);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* WhatsApp responsivo para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-float {
        width: 75px;
        height: 75px;
        bottom: 35px;
        right: 35px;
        font-size: 38px;
    }
    
    .whatsapp-float svg {
        width: 38px;
        height: 38px;
    }
}

/* WhatsApp responsivo para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 65px;
        height: 65px;
        bottom: 25px;
        right: 25px;
        font-size: 32px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

/* WhatsApp responsivo para móviles pequeños */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav {
    padding: 20px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.logo-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-green));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Banner responsivo para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-video {
        object-position: center 25%;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        gap: 60px;
        margin-bottom: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        gap: 25px;
    }
}

/* Banner optimizado para pantallas grandes de escritorio */
@media (min-width: 1025px) and (max-width: 1440px) {
    .hero {
        height: 100vh;
        min-height: 800px;
    }
    
    .hero-content {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 60px;
        max-width: 900px;
    }
    
    .hero-stats {
        gap: 100px;
        margin-bottom: 70px;
    }
    
    .stat {
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .hero-actions {
        gap: 35px;
    }
    
    .btn {
        padding: 18px 40px;
        font-size: 18px;
    }
}

/* Banner optimizado para pantallas ultra grandes */
@media (min-width: 1441px) {
    .hero {
        height: 100vh;
        min-height: 900px;
    }
    
    .hero-content {
        max-width: 1400px;
        padding: 0 50px;
    }
    
    .hero-title {
        font-size: 6rem;
        letter-spacing: 4px;
        margin-bottom: 35px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 70px;
        max-width: 1000px;
    }
    
    .hero-stats {
        gap: 120px;
        margin-bottom: 80px;
    }
    
    .stat {
        min-width: 160px;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
        letter-spacing: 2.5px;
    }
    
    .hero-actions {
        gap: 40px;
    }
    
    .btn {
        padding: 20px 45px;
        font-size: 20px;
        letter-spacing: 1.5px;
        border-radius: 15px;
    }
}

/* Configuraciones adicionales para escritorio */
@media (min-width: 1025px) {
    .btn {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .btn:hover {
        transform: translateY(-5px) scale(1.08);
        box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    }
    
    .hero-title .highlight {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.7);
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Banner responsivo para móviles */
@media (max-width: 768px) {
    .hero {
        height: 55vh;
        min-height: 320px;
    }
    
    .hero-video {
        object-position: center 20%;
    }
    
    .hero-content {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        letter-spacing: 0.8px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 30px;
        margin-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }
}

/* Banner responsivo para móviles pequeños */
@media (max-width: 480px) {
    .hero {
        height: 45vh;
        min-height: 280px;
    }
    
    .hero-video {
        object-position: center 15%;
    }
    
    .hero-content {
        padding: 0 8px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 20px;
        margin-bottom: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 70px;
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-actions {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
        width: 100%;
        max-width: 200px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: var(--light-gray);
    line-height: 1.9;
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.stat-label {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Trusted Section */
.trusted {
    padding: 80px 0;
    background: var(--secondary-black);
}

.trusted-content {
    text-align: center;
}

.trusted-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trusted-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-gray);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover {
    color: var(--primary-green);
    opacity: 1;
    transform: scale(1.1);
}

/* Secciones generales */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    position: relative;
}

/* Eliminado el pseudo-elemento decorativo */

.section-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Nosotros */
.nosotros {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nosotros-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    position: relative;
}

/* Eliminado el pseudo-elemento decorativo */

.nosotros-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.nosotros-text p:hover {
    color: var(--white);
    transform: translateX(5px);
}

.nosotros-text .highlight {
    color: var(--primary-green);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.nosotros-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    filter: drop-shadow(0 0 5px var(--primary-green));
}

.feature span {
    font-weight: 500;
    color: var(--light-gray);
}

.feature:hover span {
    color: var(--white);
}

.nosotros-video {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
}

.nosotros-video:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary-green);
}

.nosotros-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--dark-gray);
    transition: all 0.4s ease;
}

.nosotros-video:hover video {
    transform: scale(1.05);
}

/* Servicios */
.servicios {
    padding: var(--section-padding);
    background: var(--secondary-black);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.servicio-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.servicio-card:hover::before {
    transform: translateX(100%);
}

.servicio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.servicio-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--primary-green);
    filter: drop-shadow(0 0 10px var(--primary-green));
    transition: all 0.3s ease;
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.servicio-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.servicio-card p {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.servicio-card ul {
    list-style: none;
    text-align: left;
}

.servicio-card li {
    color: var(--light-gray);
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.servicio-card li:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.servicio-card li::before {
    content: "✓";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 5px var(--primary-green);
}



/* Galería */
.galeria {
    padding: var(--section-padding);
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.galeria-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.filter-btn.active {
    background: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.galeria-item {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    background: var(--dark-gray);
    margin-bottom: 20px;
}

.galeria-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
    border-width: 3px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9) contrast(1.1);
    background: var(--dark-gray);
    border-radius: 18px;
}

.galeria-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
    transform: translateY(0);
}

.galeria-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.galeria-item:hover .galeria-content h3 {
    transform: translateX(0);
}

.galeria-content p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.5;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
}

.galeria-item:hover .galeria-content p {
    transform: translateX(0);
}

/* Animación de entrada para galería */
.galeria-item {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.galeria-item:nth-child(1) { animation-delay: 0.1s; }
.galeria-item:nth-child(2) { animation-delay: 0.2s; }
.galeria-item:nth-child(3) { animation-delay: 0.3s; }
.galeria-item:nth-child(4) { animation-delay: 0.4s; }
.galeria-item:nth-child(5) { animation-delay: 0.5s; }
.galeria-item:nth-child(6) { animation-delay: 0.6s; }
.galeria-item:nth-child(7) { animation-delay: 0.7s; }
.galeria-item:nth-child(8) { animation-delay: 0.8s; }
.galeria-item:nth-child(9) { animation-delay: 0.9s; }



/* Efectos adicionales del carrusel */
.carrusel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(0, 255, 136, 0.08) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    animation: carruselGlow 4s ease-in-out infinite;
}

@keyframes carruselGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Efecto de entrada para el carrusel */
.carrusel-container {
    animation: carruselEntrance 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes carruselEntrance {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.7) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Efecto de partículas flotantes */
.carrusel-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-green), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--primary-green), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-green), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--primary-green), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--primary-green), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-100px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive para galería */
@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
    }
    
    .galeria-item {
        height: 400px;
    }
    
    .galeria-filters {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .galeria-overlay {
        padding: 30px;
    }
    
    .galeria-content h3 {
        font-size: 1.5rem;
    }
    
    .galeria-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .galeria-item {
        height: 350px;
    }
    
    .galeria-filters {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .galeria-overlay {
        padding: 20px;
    }
    
    .galeria-content h3 {
        font-size: 1.3rem;
    }
    
    .galeria-content p {
        font-size: 0.85rem;
    }
}

/* Estilos adicionales para el lightbox de la galería */
.galeria-lightbox .lightbox-close:hover {
    background: rgba(0, 255, 136, 0.2) !important;
    color: var(--primary-green) !important;
    transform: scale(1.1);
}

/* Efecto de carga para imágenes de la galería */


/* Entrenadores */
.entrenadores {
    padding: var(--section-padding);
    background: var(--secondary-black);
}

.entrenadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.entrenador-card {
    background: var(--dark-gray);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.entrenador-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.entrenador-img {
    height: 300px;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
}

.entrenador-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.entrenador-card:hover .entrenador-img img {
    transform: scale(1.1);
}

.entrenador-info {
    padding: 30px 20px;
}

.entrenador-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 700;
}

.entrenador-especialidad {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entrenador-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Imágenes simples sin estilo de card */
.entrenador-img-simple {
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.entrenador-img-simple:hover {
    transform: scale(1.05);
}

.entrenador-img-simple img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.entrenador-img-simple:hover img {
    transform: scale(1.1);
}

/* Imágenes verticales específicas */
.entrenador-img-simple:nth-child(1),
.entrenador-img-simple:nth-child(2) {
    height: 500px;
    width: 400px;
    justify-self: center;
}

.entrenador-img-simple:nth-child(1) img,
.entrenador-img-simple:nth-child(2) img {
    object-fit: cover;
    object-position: center;
}

/* Horarios */
.horarios {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.horario-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.horario-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.horario-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.horario-item:hover {
    background: rgba(0, 255, 136, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: var(--border-radius);
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-hora {
    color: var(--primary-green);
    font-weight: 600;
}

.horario-clase {
    color: var(--light-gray);
}

/* Precios */
.precios {
    padding: var(--section-padding);
    background: var(--secondary-black);
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.precio-card {
    background: var(--dark-gray);
    padding: 50px 40px;
    border-radius: var(--border-radius-large);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 255, 136, 0.1);
    overflow: hidden;
}

.precio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.precio-card:hover::before {
    transform: translateX(100%);
}

.precio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.precio-card.popular {
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.precio-card.popular:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: var(--shadow-neon);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--neon-green) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-light);
}

.precio-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.precio {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.precio span {
    font-size: 1.2rem;
    color: var(--light-gray);
    font-weight: 400;
}

.precio-card ul {
    list-style: none;
    margin-bottom: 35px;
}

.precio-card li {
    color: var(--light-gray);
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.precio-card li:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.precio-card li::before {
    content: "✓";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 5px var(--primary-green);
}

/* Información adicional de precios */
.precios-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: var(--dark-gray);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.info-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 136, 0.05);
    border-radius: var(--border-radius);
}

.info-item h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contacto */
.contacto {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contacto-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    filter: drop-shadow(0 0 5px var(--primary-green));
}

.contacto-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.contacto-item p {
    color: var(--light-gray);
}

.contacto-form {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    background: var(--medium-gray);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 60px 0 20px;
    border-top: 1px solid var(--dark-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

/* Logo específico del footer */
.footer .logo-icon {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer .logo:hover .logo-icon {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    color: var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark-gray);
}

.social-link:hover {
    color: var(--primary-green);
    background: var(--medium-gray);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
    color: var(--light-gray);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-green);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-green), 0 0 30px var(--primary-green);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Efectos especiales */
.pulse {
    animation: pulse 2s infinite;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Hover effects mejorados */
.nav-link:hover {
    animation: pulse 0.3s ease-in-out;
}

.btn:hover {
    animation: glow 0.5s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navegación móvil */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero section */
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        gap: 15px;
    }

    /* Secciones generales */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Nosotros section */
    .nosotros-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nosotros-text {
        text-align: center;
    }
    
    .nosotros-text h3 {
        font-size: 1.8rem;
    }
    
    .nosotros-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nosotros-video {
        width: 100%;
        height: 400px;
    }

    /* Servicios */
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .servicio-card {
        padding: 30px 20px;
    }

    /* Entrenadores */
    .entrenadores-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .entrenador-img-simple {
        height: 250px;
    }

    .entrenador-img-simple:nth-child(1),
    .entrenador-img-simple:nth-child(2) {
        height: 400px;
        width: 100%;
    }

    /* Horarios */
    .horarios-grid {
        grid-template-columns: 1fr;
    }

    /* Precios */
    .precios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .precio-card {
        padding: 30px 20px;
    }

    .precio {
        font-size: 3rem;
    }

    .precios-info {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }



    /* Logo */
    .logo-icon {
        width: 65px;
        height: 65px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Footer logo específico para tablets */
    .footer .logo-icon {
        width: 85px !important;
        height: 85px !important;
    }
}

@media (max-width: 480px) {
    /* Hero section */
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* Banner responsivo para pantallas muy pequeñas */
@media (max-width: 360px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-video {
        object-position: center 10%;
    }
    
    .hero-content {
        padding: 0 6px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
        letter-spacing: 0.2px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 15px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 60px;
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-actions {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 90px;
        width: 100%;
        max-width: 180px;
    }
}
    
    /* Secciones generales */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Container */
    .container {
        padding: 0 10px;
    }

    /* Logo */
    .logo-icon {
        width: 55px;
        height: 55px;
    }

    .logo-text {
        font-size: 18px;
    }

    /* Footer logo específico para móviles */
    .footer .logo-icon {
        width: 75px !important;
        height: 75px !important;
    }

    /* Nosotros */
    .nosotros-video {
        height: 350px;
    }

    .nosotros-text h3 {
        font-size: 1.6rem;
    }

    /* Servicios */
    .servicio-card {
        padding: 25px 15px;
    }

    .servicio-card h3 {
        font-size: 1.4rem;
    }

    /* Entrenadores */
    .entrenador-img-simple {
        height: 200px;
    }

    .entrenador-img-simple:nth-child(1),
    .entrenador-img-simple:nth-child(2) {
        height: 350px;
    }

    /* Precios */
    .precio-card {
        padding: 25px 15px;
    }

    .precio {
        font-size: 2.5rem;
    }

    .precio span {
        font-size: 1rem;
    }

    .precios-info {
        padding: 25px 15px;
    }

    /* Footer */
    .footer-content {
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }
}

/* Tablet media query */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Container */
    .container {
        padding: 0 30px;
    }

    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }

    /* Grid layouts */
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .entrenadores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .precios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Nosotros */
    .nosotros-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .nosotros-video {
        width: 100%;
        height: 450px;
    }

    /* Entrenadores */
    .entrenador-img-simple:nth-child(1),
    .entrenador-img-simple:nth-child(2) {
        height: 450px;
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Estilos para la imagen de Rose en el footer */
.rose-image {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
    margin-left: 5px;
}

.rose-image img {
    max-width: 450px;
    height: auto;
    transition: transform 0.3s ease;
}

.rose-image img:hover {
    transform: scale(1.05);
}

/* Responsive para la imagen de Rose */
@media (max-width: 768px) {
    .rose-image img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .rose-image img {
        max-width: 280px;
    }
}

/* Banner responsivo para pantallas extremadamente pequeñas */
@media (max-width: 320px) {
    .hero {
        height: 35vh;
        min-height: 220px;
    }
    
    .hero-video {
        object-position: center 5%;
    }
    
    .hero-content {
        padding: 0 4px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
        letter-spacing: 0.1px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-stats {
        gap: 8px;
        margin-bottom: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 50px;
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-actions {
        gap: 6px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 80px;
        width: 100%;
        max-width: 150px;
    }
}