

.index-main-container-who-we-are,
.index-main-container-collections{
    height: 100vh;
    background-size: cover;
    display: grid;
    place-content: center;
}

.index-main-container-who-we-are{
    background-image: url(../assets/img/coleccion_metales.webp);
}

.index-main-container-collections{
    background-image: url(../assets/img/coleccion_indumentaria.webp);
}

.index-content-container-who-we-are,
.index-content-container-collections {
    background-color: white; /* Fondo con opacidad del 60% */
    padding: 1rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.index-content-container-who-we-are h2,
.index-content-container-collections h2{
    font-size: 1.1rem;
}

.index-content-container-who-we-are h3,
.index-content-container-collections h3{
    opacity: 0.5;
}

.index-content-container-who-we-are a,
.index-content-container-collections a{
    text-decoration: none;
    background-color: var(--color-carmesi);
    padding: 6px;
    color: white;
}

video{
    max-width: 100%;
    height: auto;
}

.video-buttons img{
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.data-museum{
    background-color: rgb(86, 85, 85);
}

.data-museum>div:first-child {
    width: 80%;
    margin-left: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
}

.data-museum div p{
    color: white;
    opacity: 1;
    display: grid;
    font-size: 1.1rem;
}

.parallax {
    height: 450px; /* Altura de la sección */
    background-image: url('../assets/img/fachada.webp'); /* Reemplaza con tu imagen */
    background-attachment: fixed; /* Fija la imagen para el efecto */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.test-svg{
    border: solid 2px white;
    border-radius: 50%;
    padding: 10px;
}

.social-links-list{
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 420px){
    .parallax{
        height: 250px;
    }

    .data-museum>div:first-child{
        width: 80%;
        margin-left: 10%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    

    .data-museum div p{
        color: white;
    }

    .index-main-container-who-we-are,
    .index-main-container-collections{
        height: 50vh;
    }

    .index-content-container-who-we-are,
    .index-content-container-collections{
        width: 200px;
    }


}
