main {
    border-top: 2px solid rgb(0, 0, 0);
    margin-top: 10px;
    /* ajusta un borde para separ main y header */
}
.contenido-imagen {
    margin-top: 10px;
    background-image: url('../Imagenes/Carroussel/Carroussel-1.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 60vh;
    align-content: center;
}
.contenido-imagen p {
    font-size: 4vh;
    font-style: black;
    color: rgb(255, 255, 255);
    width: 10px;
    padding-left: 25px;
}
.contenido-imagen p {
    display: flex;
    flex-direction: column;
}
.contenido-bajo {
    display: flex;
    justify-content: space-between;
    align-content: center;
    height: 30vh;
    margin-top: 10px;
}
.contenido-texto {
        display: flex;
        flex-direction: column;
        width: 50%;
        padding-left: 10px;
        padding-right: 5px;
}
.comprar-ahora {
    border: 1 solid rgb(0, 0, 0);
    border-radius: 60px;
    color: white;
    background-color: rgb(0, 0, 0);
    margin-left: 10px;
    width: 10rem;
    height: 3rem;
    /* ajusta el botón de compra */
}
 .comprar-ahora:hover {
    background-color: rgb(255, 230, 0);
    color: black;
 }
.imagenes-bajo {
    align-content: center;
    flex-direction: row;
    width: 50%;
}
.imagenes-bajo img {
    width: 14vw;
    flex-basis: 30%;
}

@media (max-width: 600px) {
    .contenido-bajo {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .contenido-texto {
        width: 90%;
        padding: 0;
    }
    .comprar-ahora {
        width: 8rem;
        height: 2.5rem;
        font-size: 14px;
        text-align: center; 
        align-self: center;
    }
    .imagenes-bajo {
        padding-top: 10px;
        flex-direction: column;
    }
}

