/* Popup */
.popup {
    display: none; /* Inicialmente está oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que el popup esté por encima de otros elementos */
}

.popup-content {
    background-color: white;
    padding: 1.2rem;
    border-radius: 20px; /* Ajusta el borde redondeado */
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
    opacity: 1;
    visibility: visible; /* Inicialmente visible */
    transition: opacity 0.4s ease, visibility 0.4s ease; /* Desvanecimiento y visibilidad suave */
    width: 100%;
    max-width: 450px; /* Limita el ancho máximo */
	max-height: 150px;
    min-height: 120px;
}

/* Botones dentro del popup */
.popup-content .btn {
    background-color: var(--button-color, #395886); /* Usa color de botón predeterminado */
    color: white;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 33px; /* Ajuste de borde redondeado */
    border: 2px solid var(--button-color, #395886);    
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

/* Cambio al pasar el cursor sobre los botones */
.popup-content button:hover {
    background-color: white;
    color: var(--button-color, #395886);
}
