* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

html, body {
    margin: 0;
    font-family: "Inter", sans-serif;
    text-align: center;
    font-size: 1.25vw;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    min-height: 100vh; /* Ensure the body extends to at least the full viewport height */
    position: relative;
    display: flex; /* Usamos flexbox para alinear elementos */
    flex-direction: column;
    width: 100%;
}
/* SOBRE NOSOTROS */ 

.titulo {
    margin-top: 12vh; /* Asegura que el título quede debajo del nav (2vh de espacio adicional) */
    width: 100%;
    height: auto;
}

h1 {
    font-family: "Domine", serif;
    font-size: 5.5vw;
    text-align: center;
    font-weight: 100;
    margin-inline: 20%;
}

b {
    font-family: "Domine", serif;
    font-weight: 300;
}



@media (max-width: 858px) {
    #titulo1, #titulo2 {
        margin-left: 5%; /* Ajusta márgenes para móviles */
        margin-right: 5%;
        margin-bottom: 5%;
        font-size: 10vw; /* Tamaño de fuente responsivo */

    }
}



#texto-club {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -150%); 
    color: white; 
    font-size: 24px; 
    font-weight: bold; 
    text-align: center; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px; 
    border-radius: 10px; 
}

#texto-sobrenosotros { 
    color: #000000; 
    font-size: 1.4vw; 
    font-weight: 500; 
    margin-left: 15%; 
    margin-right: 15%;
    text-align: center;
    margin-top: 3%;
}


.collage {
    display: flex; 
    gap: 20px; 
    max-width: 70%; 
    padding: 30px;
    margin: 0 auto;
}

.left-photo {
    flex: 1; 
    display: flex;
}

.left-photo img{
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}


.right-photos {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}


.right-photo {
    flex: 1; 
    display: flex;
}

.right-photo img {
    width: 100%; 
    height: auto;
    object-fit: cover;
}


.no-scroll {
    overflow: hidden;
}

footer {
    margin-top: auto; /* Asegura que el footer se quede en la parte inferior */
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

@media (max-width: 858px) {
    h1 {
        font-size: 5vw;
        text-align: center;
        margin-inline: 5%;
    }
    
    #texto-sobrenosotros { 
        color: #000000; 
        font-size: 2.5vw; 
        font-weight: 500; 
        margin-inline: 8%; 
    }

    .top-photo img {
        border-radius: 20px;
    }

    .left-photo {
        display: none;
    }

    .bottom-photo {
        display: none;
    }
    .collage {
        display: flex; 
        gap: 20px; 
        max-width: 100%; 
        padding: 0;
        margin: 5%;
    }
}

@media (max-width: 658px) { 
    h1 {
        font-size: 6vw;
        text-align: center;
        margin-inline: 5%;
    }
    
    #texto-sobrenosotros { 
        color: #000000; 
        font-size: 3vw; 
        font-weight: 500; 
        margin-inline: 8%; 
    }


}




@media (max-width: 458px) { 

    h1 {
        font-size: 7vw;
        text-align: center;
        margin-inline: 5%;
    }
    
    #texto-sobrenosotros { 
        color: #000000; 
        font-size: 3.5vw; 
        font-weight: 500; 
        margin-inline: 8%; 
    }

}


@media (max-width: 358px) { 

    h1 {
        font-size: 8vw;
        text-align: center;
        margin-inline: 5%;
    }
    
    #texto-sobrenosotros { 
        color: #000000; 
        font-size: 4vw; 
        font-weight: 500; 
        margin-inline: 8%; 
    }

    


}