/* Overlay (el fondo oscuro) */
#vpd-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Oculto por defecto */
    z-index: 99999;
}

/* Contenido del Pop-up (centrado) */
#vpd-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 450px; /* Ancho máximo para el pop-up */
    width: 90%;
}

/* Botón de Cerrar (X) */
#vpd-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

#vpd-close-btn:hover {
    color: #cc0000;
}

/* Mensaje y Imagen */
.vpd-message {
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

#vpd-popup-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 4px;
}

/* Contenedor de Botones */
#vpd-button-container {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Estilo base para botones */
.vpd-btn {
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.1s;
    width: 50%;
    font-weight: bold;
}

.vpd-btn:active {
    transform: scale(0.98);
}

/* Botón Principal (Ir a Venezuela) */
.vpd-btn-primary {
    background-color: #8454ff; /* Azul */
    color: white;
}

.vpd-btn-primary:hover {
    background-color: #0056b3;
}

/* Botón Secundario (Continuar aquí) */
.vpd-btn-secondary {
    background-color: #6c757d; /* Gris */
    color: white;
}

.vpd-btn-secondary:hover {
    background-color: #5a6268;
}
