/* Estilos para el Popup de Bienvenida BlueCard */

.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 3px solid #007bff;
}

.welcome-popup-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    position: relative;
    text-align: center;
}

.welcome-popup-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.welcome-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.welcome-popup-close:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.welcome-popup-body {
    padding: 30px 25px;
    line-height: 1.6;
    color: #333;
}

.welcome-popup-body p {
    margin-bottom: 15px;
    font-size: 16px;
}

.welcome-popup-body strong {
    color: #007bff;
}

.welcome-link-container {
    background: #f8f9fa;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.welcome-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    word-break: break-all;
    transition: color 0.3s ease;
}

.welcome-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.welcome-popup-footer {
    padding: 20px 25px 25px;
    text-align: center;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.welcome-popup-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.welcome-popup-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.welcome-popup-btn:active {
    transform: translateY(0);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.welcome-popup-content {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-popup-content {
        width: 95%;
        margin: 10px;
    }
    
    .welcome-popup-header h2 {
        font-size: 20px;
    }
    
    .welcome-popup-body {
        padding: 20px 15px;
    }
    
    .welcome-popup-body p {
        font-size: 14px;
    }
    
    .welcome-link {
        font-size: 14px;
    }
}

/* Scrollbar personalizado para el popup */
.welcome-popup-content::-webkit-scrollbar {
    width: 8px;
}

.welcome-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.welcome-popup-content::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

.welcome-popup-content::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
} 