* {
    color: #032c69;
}

main {
    width: 100%;
    height: fit-content;
}

body.no-scroll {
    overflow: hidden;
}

.artsy_container {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 44, 105, .95);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transition: all .3s ease;
}

.artsy_container.active {
    opacity: 1;
    visibility: visible;
}

.artsy_container p {
    color: white;
    font-size: 2rem;
    margin: 40px 40px;
    max-width: 700px;
    text-align: center;
}

.artsy_container div {
    display: flex;
    width: 300px;
    justify-content: space-around;

}

.artsy_container div a {
    color: #032c69;
    background: white;
    border-radius: 40px;
    width: 130px;
    height: 40px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}




header {
    width: 100dvw;
    height: 75px;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid black; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background: #fff;
    font-family: "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

}

.logo {
    width: 250px;
    height: fit-content;
    object-fit: cover;
}

.logo img {
    width: 100%;
    height: auto;
}







nav {
    height: 100%;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ham-menu {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ham-menu.active {
    background: rgba(3, 44, 105, 1);
}

.menu {
    position: fixed;
    top: 74px;
    left: 100%;
    width: 100%;
    height: 92%;
    background: rgba(3, 44, 105, 0);
    color: white;
    transition: all .3s ease;
    z-index: 2;

}

.menu ul {
    width: 100%;
    height: 100%;
    font-size: 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */

    padding: 20px 0 0 0;


}

.menu ul li:nth-last-child(-n+2) {
    background: rgba(255, 255, 255, .8);
    color: #032c69;

}

.menu ul li.active {
    font-weight: bolder;
}

.menu ul li a {
    text-decoration: none;
    font-family: "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.menu ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    color: white;
    list-style: none;
    cursor: pointer;
    font-family: "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

}

.menu.active {
    left: 0;
    background: rgba(3, 44, 105, .95);
}

.ham-menu-color {
    transition: all .3s ease;
}

.ham-menu-color.active {
    stroke: #ffffffff;
}











main {
    width: 100%;
    height: 100dvh;
    margin-top: 75px;
}

.slider {
    width: 100%;
    height: 65dvh;
    min-height: 584px;

}

.slider_imgs {
    display: flex;
    width: 100%;
    height: 50%;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;

}

.slider_img {
    width: 100%;
    height: 100%;
    flex: 0 0 auto;
    scroll-snap-align: start;

}

.slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.slider_arrows {
    margin: 10px 0;
    width: 100%;
    height: 22%;
    background: white;
    display: flex;
    justify-content: center;

}

.points {
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.point {
    width: 10px;
    height: 10px;
    background: #c3c2c2;
    border-radius: 20px;
}

.point.active {
    background: #464646;
}

.slider_info {
    width: 100%;
    height: 50%;
    /* background: pink; */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    font-family: "Times New Roman", Times, serif;

}

.slider_info_descriptions {
    width: 100%;
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;


}

.slider_info_card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.slider_info_description {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 10px;

    font-family: "Times New Roman", Times, serif;

}


h2 b {
    font-weight: bold;
}

.slider_info_description p {
    width: fit-content;
    padding-left: 20px;
    color: #032c69;
    font-size: 1.3rem;
    margin-bottom: 5px;

    font-family: "Times New Roman", Times, serif;



}

h2 {
    width: fit-content;
    margin: 0 0px 10px 0;
    font-size: 1.8rem;
    font-weight: lighter;
    color: #032c69;

}

.slider_cointainer_bottons {
    margin: 10px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-size: 1.3rem;
}

.botton {
    width: 150px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #032c69;
    text-decoration: none;
    color: white;
}

.botton-little {
    width: 130px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #032c69;
    border: solid 1px #032c69;


}

.botton.white {
    width: 150px;
    height: 30px;
    border-radius: 30px;
    background: white;
    color: #032c69;
    border: solid 1px #032c69;
}

.events {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    background: white;
}

.cointainer_events {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    /* height: fit-content; */
    margin-top: 10px;
}

.event {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    margin: 0 20px;

}



.event_img {
    width: 300px;
    height: 180px;
    position: relative;
}

.event_img img {
    width: 100%;
    height: 100%;
    transition: all .3s ease;
    object-fit: cover;
    object-position: top;
}

.cointainer_events .event_img:hover img {
    filter: brightness(70%);


}

.event_img:hover .cubridor {
    opacity: 1;


}

.event_info p {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.event_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0 10px 0;
}

.botton-little {
    align-self: self-end;
}


.cubridor {
    /* background: rgba(1, 1, 1, .7); */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .3s ease;
    cursor: pointer;

}



.cubridor a {

    font-size: 2rem;
    z-index: 1;
    color: white;

}



.cointainer_news {
    display: flex;
    overflow-x: auto;
    /* Permite scroll táctil en móviles */
    scroll-behavior: smooth;
    /* Movimiento fluido */
    /* gap: 20px; */
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    max-width: 1300px;



    /* width: max-content;
    display: flex; */

    /* 
    justify-content: center;
    align-items: center;
    gap: 2rem;
    min-width: 350px; */
}


.cointainer_news_general {
    width: 100%;
    display: flex;
    align-items: center;
    /* gap: 10px; */
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    justify-content: center;
    /* width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;


    overflow: hidden; */
    /* oculta lo que no cabe */


}

.cointainer_news_general button {

    position: absolute;
    /* se posicionan respecto al contenedor */
    top: 50%;
    /* mitad vertical */
    transform: translateY(-50%);
    /* centra exactamente */
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.btn-izq {
    left: 10px;
    /* pegado al lado izquierdo */
}

.btn-der {
    right: 10px;
    /* pegado al lado derecho */
}


.news {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.news button {
    width: fit-content;
    position: absolute;
    background: rgba(248, 248, 248, .2);
    border-radius: 32px;
    border: none;
    z-index: 1;
}

.cointainer_new {
    width: 100dvw;
    /* min-width: 300px; */
    /* Ancho de cada tarjeta */
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.new {
    min-width: 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    /* flex: 0 0 33.33%; */
    /* 3 elementos visibles por fila */
    /* box-sizing: border-box; */




}

@media (max-width: 900px) {
    .new {
        flex: 0 0 50%;
    }
}

/* Pantallas pequeñas: 1 elemento */
@media (max-width: 600px) {
    .item {
        flex: 0 0 100%;
    }
}


.new_info {
    width: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    background: white;
    padding: 13px;
    padding-top: 25px;
}

.new_info p:first-child {
    text-decoration: underline;
}

.new_info p {
    margin-bottom: 10px;
}

.new a:last-child {
    margin-top: 15px;
    align-self: flex-end;

}

.video {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 100px;
}

.title-video {
    text-align: center;
}

.video iframe {
    max-width: 700px;
    height: 200px;
}










.subasta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #032c69;

}

.subasta_img {

    width: 100%;
    height: 450px;
}

.subasta_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.subasta_container {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.subasta_info {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subasta_info h2,
.subasta_info p,
.subasta_info a {
    color: white;
}

.subasta_bottons {
    width: 350px;
    display: flex;
    justify-content: space-around;
}









.logos {
    width: 100%;
    height: auto;
    margin-top: 50px;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            #000, #000, #000, #000,
            #000, #000, #000, #000,
            transparent);
    display: flex;
    flex-direction: column;

}

.logos h2 {
    font-size: 2rem;
    text-align: center;
}

.logos img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 40px 30px 20px 30px;
}

.logos--right {
    width: fit-content;
    left: 0;
    display: flex;
    animation: scroll 50s linear infinite;


}

.marcas {
    background: white;
}





.artistas_title {
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    margin-bottom: 50px;
    font-size: 2.3rem;
}

.artistas_info p {
    font-size: 1.3rem;
}

.artistas_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0 20px 0;

}

@keyframes scroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-260px * 35));
    }

}








@media screen and (min-width: 1000px) {
    .ham-menu {
        display: none;
    }

}

@media screen and (min-width: 1000px) {

    nav {
        margin-right: 50px;
        width: 800px;
    }

    .menu {
        position: static;

    }

    /* .menu.active {
        background: white;
    } */

    .menu ul {
        display: flex;
        flex-direction: row;
        padding: 0;



    }

    .menu ul li {
        color: #032c69;
        font-size: 1.2rem;
        width: 80px;
        height: 50%;

    }

    .menu ul li:nth-last-child(3) {
        border-right: solid #000 1px;
    }

    .menu ul li:nth-last-child(-n+2) {
        width: 40px;
        color: #000;
    }

    .events h2 {
        width: 780px;
    }




    .slider {
        height: 70dvh;
        display: flex;
        flex-direction: row-reverse;
    }

    .slider_imgs {
        height: 100%;
    }

    .slider_img {
        height: 100%;
    }

    .slider_info {
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .slider_arrows {
        background: #f8f8f8;
    }

    .cointainer_new {
        flex: 0 0 calc(50%);
    }

    .subasta {
        display: flex;
        flex-direction: row-reverse;
    }

    .subasta_img {
        max-width: 50%;
    }

    .subasta_info {
        max-width: 50%;
    }




    .video iframe {
        width: 80%;
        max-width: 800px;
        height: 400px;
    }
}

@media screen and (min-width: 1200px) {
    .cointainer_new {
        flex: 0 0 calc(100%/3);
    }

}

@media screen and (min-width: 1254px) {
    .events h2 {
        width: 1234px;
    }

}