/* Estilos del fondo oscuro */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

/* Contenedor del popup */
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease;
}

.modal h2 {
    margin-top: 0;
    font-size: 22px;
    color: #333;
}

.modal p {
    margin: 10px 0;
    line-height: 1.5;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
