

.activity-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-box:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.activity-box h3 {
    color: #007bff;
    font-size: 1.25rem;
}

.activity-box p {
    color: #555;
    font-size: 1rem;
}

.activity-box img {
    border-radius: 8px; /* Borde redondeado de las imágenes */
    transition: transform 0.3s ease;
}

.activity-box img:hover {
    transform: scale(1.05); /* Efecto de zoom al pasar el ratón sobre la imagen */
}

.img-bordered {
    border-width: 4px; /* Aumentar grosor del borde de la imagen */
}
.table {
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Estilo para las filas al pasar el ratón */
.table-hover tbody tr:hover {
    background-color: #f1f1f1;
    transform: scale(1.02);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Estilos para la cabecera */
.thead-dark th {
    background-color: #343a40;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Estilos para las celdas de la tabla */
.table td {
    padding: 15px;
    vertical-align: middle;
    font-size: 1rem;
    text-align: left;
}

/* Estilo para las columnas de la tabla */
.table td ul {
    list-style-type: none;
    padding: 0;
}

.table td li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 300;
    color: #333;
}

/* Estilo para la tabla responsiva */
.table-responsive {
    margin: 0 auto;
    max-width: 100%;
}

/* Estilo para los bordes de las celdas */
.table td, .table th {
    border: 1px solid #ddd;
}

/* Estilos para las tablas en dispositivos pequeños */
@media (max-width: 768px) {
    .table td, .table th {
        font-size: 14px;
    }

    .table td {
        padding: 10px;
    }

    .table td ul {
        padding-left: 20px;
    }
}
.home{
    width: 100%;
    height: 75vh;
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.2)), url(gymhome.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.home .content{
    text-align: center;
    padding-top: 200px;
}
.home .content h5{
    color: white;
    font-size: 38px;
    font-weight: 550;
    text-shadow: 0px 1px 1px black;
}
.home .content h1{
    color: white;
    font-size: 70px;
    font-weight: 550;
    text-shadow: 0px 1px 1px black;
    margin-top: 5px;
}
.changecontent::after{
    content: ' ';
    color: #5af706;
    text-shadow: 0px 1px 1px black;
    animation: changetext 10s infinite linear;
}
@keyframes changetext{
    0%{content: "Aerobicos";}
    10%{content: "Piscina";}
    20%{content: "Pilates";}
    30%{content: "Nutrición";}
    40%{content: "Cardio";}
    50%{content: "Musculación";}
    60%{content: "Preparación Fisica";}
    
} 
.home .content p{
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
    margin-bottom: 30px;
    margin-top: 5px;
}
.home .content a{
    padding: 10px;
    background: white;
    color: black;
    letter-spacing: 2px;
    font-weight: 550;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.5s;
}
.home .content a:hover{
    background: #5af706;
    color: white;
}
@media (max-width:850px){
    .home{
        background-position: 50%;
    }
}
@media (max-width:450px){
    .home .content h5{
        font-size: 25px;
    }
    .home .content h1{
        font-size: 38px;
    }
    .home .content p{
        font-size: 13px;
    }
}
/* Home Section End */

/* Section Book Start */
.book{
    background: #f9f9f9;
    padding: 50px;
}
.main-text h1{
    text-align: center;
    text-shadow: 0px 1px 1px black;
    font-weight: 600;
}
.main-text h1 span{
    color: #5af706;
}
.book .card{
    border-radius: 10px;
    box-shadow: 0px 5px 5px -6px black;
}
.book .row{
    margin-top: 30px;
}
.book form input{
    padding: 10px;
    color: black;
    border: none;
    outline: none;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px -6px black;
}
.book form textarea{
    border: none;
    border-radius: 10px;
    resize: none;
    box-shadow: 0px 5px 5px -6px black;
    height: 200px;
}
.book .submit{
    width: 160px;
    font-size: 16px;
    font-weight: 550;
    background: #5af706;
    color: white;
    margin-top: 10px;
    transition: 0.5s;
}
.book .submit:hover{
    width: 170px;
}
@media (max-width:765px){
    .book{
        padding: 0;
    }
    .main-text h1{
        padding: 20px;
    }
}
/* Section Book End */


/* Contenedor título e imagen */
.titulo-imagen {
    display: flex;
    align-items: center;
}

.titulo-imagen h1 {
    margin: 0;
    padding-right: 10px;
}

/* Estilos para servicios */
.services-container {
    display: flex;
    justify-content: space-between;
}

.services-column {
    width: 45%;
}

/* Estilos para ubicación */
.location-container {
    display: flex;
    align-items: center;
}

.location-container img {
    border-radius: 10px;
    margin-right: 20px;
}

.location-description {
    max-width: 600px;
}

/* Estilos para galería */
.galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.item-imagen {
    text-align: center;
}

.item-imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.descripcion {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Estilos para contenido centrado */
.contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.texto {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Estilos para beneficios */
.contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: 0 10%;
}

h1, h2 {
    color: #5af706;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif;
}
/* Section Book Start */
.book{
    background: #f9f9f9;
    padding: 50px;
}
.main-text h1{
    text-align: center;
    text-shadow: 0px 1px 1px black;
    font-weight: 600;
}
.main-text h1 span{
    color: #5af706;
}
.book .card{
    border-radius: 10px;
    box-shadow: 0px 5px 5px -6px black;
}
.book .row{
    margin-top: 30px;
}
.book form input{
    padding: 10px;
    color: black;
    border: none;
    outline: none;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px -6px black;
}
.book form textarea{
    border: none;
    border-radius: 10px;
    resize: none;
    box-shadow: 0px 5px 5px -6px black;
    height: 200px;
}
.book .submit{
    width: 160px;
    font-size: 16px;
    font-weight: 550;
    background: #5af706;
    color: white;
    margin-top: 10px;
    transition: 0.5s;
}
.book .submit:hover{
    width: 170px;
}
@media (max-width:765px){
    .book{
        padding: 0;
    }
    .main-text h1{
        padding: 20px;
    }
}
/* Section Book End */





/* Section Packages Start */
.main-txt h1{
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
}
.main-txt h1 span{
    color: #5af706;
}
.packages .card{
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
}
.packages .card img{
    border-radius: 5px;
}
.packages .card .card-body{
    background: transparent;
}
.packages .card .card-body h3{
    font-size: 25px;
    font-weight: 600;
}
.packages .card .card-body p{
    font-size: 15px;
}
.checked{
    color: #5af706;
}
.star i{
    font-size: 15px;
}
.packages .card .card-body h6{
    font-size: 20px;
}
.packages .card .card-body a{
    padding: 10px;
    text-decoration: none;
    background: #5af706;
    color: white;
    border-radius: 5px;
}
/* Section Packages End */




/* Section Services Start */
.services{
    background: #f9f9f9;
    margin-top: 50px;
}
.services .card{
    box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
    border: none;
    cursor: pointer;
}
.services .card i{
    font-size: 80px;
    text-align: center;
    color: #5af706;
    margin-top: 20px;
}
.services .card .card-body h3{
    font-weight: 600;
}
.services .card .card-body{
    text-align: center;
}
/* Section Services End */





/* Section Gallary Start */
.gallary{
    margin-top: 50px;
}
.gallary .card{
    border-radius: 10px;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
    cursor: pointer;
}
.gallary .card img{
    border-radius: 10px;
    transition: 0.5s;
}
.gallary .card img:hover{
    transform: scale(1.1);
}
/* Section Gallary End */




/* About Start */
.about{
    padding: 50px;
    margin-top: 50px;
    background: #f9f9f9;
}
.about .card{
    border-radius: 10px;
}
.about .card img{
    border-radius: 10px;
}
.about h2{
    font-weight: 600;
    letter-spacing: 1px;
}
.about p{
    font-weight: 500;
}
#about-btn{
    width: 150px;
    height: 38px;
    border: none;
    border-radius: 5px;
    background: #5af706;
    color: white;
    letter-spacing: 2px;
    font-weight: 550;
    transition: 0.5s ease;
    cursor: pointer;
}
#about-btn:hover{
    width: 170px;
}
@media (max-width:765px){
    .about{
        padding: 0;
    }
}
/* About End */




.logo-animado {
    height: 70px;
    transition: transform 0.5s ease-in-out;
}

.logo-animado:hover {
    transform: scale(1.1) translateY(-5px); /* Hace zoom y sube un poco */
}

/* Animación en los iconos de redes sociales */
.social-icon {
    transition: transform 0.3s ease-in-out, color 0.3s;
}

.social-icon:hover {
    transform: scale(1.3) rotate(10deg); /* Se agranda y gira un poco */
    color: #5af706; /* Cambia a rojo */
}
.fakeimg {
    height: 200px;
    background: #aaa;
  }

