
.modal-overlay, 
.modal-overlay-lg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75); /* Fondo oscuro semi-transparente */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10; 
}
.modal-img{
    width: 6rem;
}
.formulario-modal,
.formulario-modal-lg {
    padding: 2rem 5rem;
    width: 90%; 
    background-color: white;
    border-radius: 10px;
    max-width: 1280px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; 
}
.fomulario__h3-modform-contacto-sm{
    color: var(--eein-cafe-con-leche);
    font-size: 1.5rem;
    font-weight: 700;
}
body.modal-open {
    overflow: hidden;
}

.close{
    display: flex;
    font-size: .85rem;
    color: var(--eein-cafe-con-leche);
    align-items: center;
    gap: 1rem;
    align-self: end;
    cursor: pointer;
}
.close-form{
    width: 1.6rem;
}

.form-sm{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    
}