﻿/* Asegurar que no haya scroll horizontal */
html, body {
    overflow-x: hidden;
}

.footer-modern {
/*    background: linear-gradient(135deg, var(--lila-color) -20%, var(--primary-lemon-color) 120%);*/
    background-color: var(--dark-color);
    padding: 40px 0 0;
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    position: relative;
}

    .footer-modern .container {
        /*max-width: 1200px;*/
        margin: 0 auto;
        padding: 0 20px;
    }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

/* Sección de horarios */
.footer-hours {
    flex: 1;
    min-width: 250px;
}

    .footer-hours h5 {
        color: white;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-lemon-color);
        padding-bottom: 8px;
        display: inline-block;
    }

    .footer-hours ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-hours li {
        color: #e9ecef;
        font-size: 14px;
        margin-bottom: 8px;
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

/* Sección de precios */
.footer-pricing {
    flex: auto;
    min-width: 250px;
    text-align: center;
}

    .footer-pricing h5 {
        color: white;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-lemon-color);
        padding-bottom: 8px;
        display: inline-block;
    }

.pricing-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .pricing-item h6 {
        color: var(--primary-lemon-color);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .pricing-item p {
        color: #e9ecef;
        font-size: 14px;
        margin: 0;
    }

/* Sección de ubicación */
.footer-location {
    flex: 1;
    min-width: 250px;
    text-align: right;
}

    .footer-location h5 {
        color: white;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-lemon-color);
        padding-bottom: 8px;
        display: inline-block;
    }

    .footer-location p {
        color: #e9ecef;
        font-size: 16px;
        margin: 0;
        line-height: 1.6;
    }

.text-center {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-location {
        text-align: center;
    }

        .footer-hours h5,
        .footer-pricing h5,
        .footer-location h5 {
            text-align: center;
            width: 100%;
        }

    .footer-social {
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

        .social-icon i {
            font-size: 16px;
        }
}
/* Estilos para la sección del equipo */
.inicio-equipo {
    padding: 40px 20px;
    text-align: center;
}

    .inicio-equipo h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 40px;
        color: #333;
    }

/* Contenedor principal del equipo - Flexbox horizontal */
.equipo-lista {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cada miembro del equipo */
.equipo-miembro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 250px; /* Ancho fijo para cada miembro */
}

    /* Estilos para las imágenes */
    .equipo-miembro img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid #ddd;
        transition: transform 0.3s ease;
    }

        .equipo-miembro img:hover {
            transform: scale(1.05);
        }

    /* Estilos para los nombres */
    .equipo-miembro h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin: 0;
        line-height: 1.4;
    }

/* Responsive design */
@media (max-width: 768px) {
    .equipo-lista {
        flex-direction: column;
        align-items: center;
    }

    .equipo-miembro {
        margin-bottom: 30px;
    }
}
/*
imagenes del gimnasio*/
.inicio-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
}

    .inicio-header h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .inicio-header p {
        font-size: 2.3rem;
        color: #666;
        margin-bottom: 30px;
        font-weight: 400;
    }

.imagenes-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.seccion-imagen {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .seccion-imagen:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

/* Responsive para tablets */
@media (max-width: 768px) {
    .inicio-header h1 {
        font-size: 2rem;
    }

    .inicio-header p {
        font-size: 1.1rem;
    }

    .imagenes-container {
        gap: 10px;
    }

    .seccion-imagen {
        width: 170px;
        height: 110px;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .inicio-header {
        padding: 30px 15px;
    }

        .inicio-header h1 {
            font-size: 1.5rem;
        }

        .inicio-header p {
            font-size: 1rem;
        }

    .imagenes-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .seccion-imagen {
        width: 280px;
        height: 150px;
    }
}