/* Agrega estos estilos al final de tu archivo CSS o enlaza un nuevo archivo CSS */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    z-index: 1001;
}

.popup h2 {
    color: #333;
}

.popup p {
    color: #555;
}

#cerrar {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

/* Estilos de las tarjetas (cards) */
.card {
    position: relative;
    z-index: 0; /* Asegura que las tarjetas estén por debajo del aviso emergente */
}
