﻿/* Fondo del modal */
.modal-informativo {
    display: none; /* Se controla con JS */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Fondo semitransparente */
    justify-content: center;
    align-items: center;
}

/* Contenido del modal */
.modal-content-informativo {
    background: #fff;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    width: 900px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    text-align: center;
    animation: aparecer 0.3s ease;
}

/* Animación */
@keyframes aparecer {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Botón de cierre (X) */
.close-btn-informativo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

    .close-btn-informativo:hover {
        color: #000;
    }

/* Botón de cerrar */
.cerrar-brtn-info {
    margin-top: 15px;
    padding: 8px 18px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    .cerrar-brtn-info:hover {
        background: #0056b3;
    }
