/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Configura el fondo inicialmente transparente */
    transition: background-color 0.5s; /* Agrega una transición de color de fondo */
    z-index: 4;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    text-align: center;
    z-index: 2;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: .2rem .6rem;
    border-radius: 50%;
    background-color: #BA0B35;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.close:hover{
    background-color: #dc0f3f;
}

@media (max-width: 931px){
    .modal-content img{
        max-height: 300px;
    }
}

@media (max-width: 638px){
    .modal-content img{
        max-height: 200px;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: .13rem .4rem;
        border-radius: 50%;
        background-color: #BA0B35;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        text-align: center;
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
    }
    
}

@media (max-width: 428px){
    .modal-content img{
        max-height: 150px;
    }
}
