﻿#img_sedatu {
    width: 100%;
    height: auto;
}

#sniiv_home {
    width: 35%;
    float: left;
    padding-right: 50px;
}

#prnv {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    padding: 10px;
}

.img-text {
    text-align: center;
    font-size: 14px;
}

/* Estilos para el modal personalizado */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 880px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: #611232;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 12px;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .close-button:hover {
        transform: scale(1.2);
    }

.modal-body {
    flex: 1;
    padding: 0;
}

    .modal-body iframe {
        width: 100%;
        height: 500px;
        border: none;
        display: block;
    }

@media (max-width: 600px) {
    .modal-body iframe {
        height: 300px;
       
    }
}


