.subastas {
    width: 100%;
    height: fit-content;
    padding: 40px 10px;
    background: #041E40;
    background: linear-gradient(180deg, rgba(4, 30, 64, 1) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 1;

}

.subastas_title {
    color: white;
    font-size: 3rem;
    font-family: "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: bolder;
}

.subastas_container {
    width: 90%;
    max-width: 800px;
    height: max-content;
    margin: 20px 40px;
    /* background: black; */
    display: flex;
    flex-direction: column;
    transition: all .3s;
    z-index: 3;


}

.subastas_container.active {
    height: 400px;
}

.subastas_container_info {
    width: 100%;
    height: 200px;
    min-height: max-content;
    display: flex;
}

.subasta_img {
    width: 200px;
    height: 100%;
    background-color: white;
}

.subasta_img figure {
    width: 100%;
    height: 85%;
}

.subasta_img figure img {
    object-fit: cover;
}

.subasta-medio {
    width: 100%;
    height: 15%;
    background: #737373;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.subastas_info_container {
    width: 100%;
    min-height: 100%;
    height: max-content;
    background: #041e40;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;

}

.subastas_info {
    width: 100%;
    /* height: 120px; */
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-evenly; */
    /* padding: 30px 0 0 40px; */
    /* background: #04401e; */
}


.subastas_info h2 {
    width: 100%;
    padding: 7px 0;
    background: white;
    margin-bottom: 20px;
    color: #041E40;
    text-align: center;
    font-size: 1.7rem;
}

.subastas_botones {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.subastas_botones a {
    margin: 10px 0;
}

.subastas_info_container p {
    color: white;
    font-family: "Calibri", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.2rem;
}

.contenedor-flecha {
    width: 19px;
    height: 19px;
    margin-left: 7px;
}

.triangulo,
.triangulo-2 {
    width: 20px;
    fill: white;
    /* Un color verde, por ejemplo */
    transition: transform 0.3s;
    /* Efecto elástico */
    transform: rotate(0deg);
}

.boton-dos {
    display: none;
}

.mas-info,
.mas-info-1 {
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.mas-info-1 {
    display: none;
}

.rotar {
    transform: rotate(180deg);

}

.subasta_description {
    width: 100%;
    height: 200px;
    position: static;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: none;
}

.subasta_img img:hover {
    filter: brightness(50%);
}

.subastas_info p {
    text-align: center;
    margin: 0 5px;
}

@media screen and (min-width: 1000px) {

    .boton-dos {
        display: flex;
    }

    .boton-uno {
        display: none;
    }

    .subastas_info_container {
        display: flex;
        flex-direction: row;
    }

    .subastas_info h2 {
        background: #041E40;
        color: white;
        font-size: 2rem;
    }

    .subastas_info h2,
    .subastas_info p {
        /* width: 100%; */
    }

    .subastas_info {
        width: 60%;
        height: fit-content;
        align-items: center;
        /* padding: 0 40px; */
    }

    .mas-info-1 {
        margin-top: 10px;
        display: flex;
        display: none;
    }

}