/* Splash Screen - Pantalla de introducción */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3c5e 0%, #0d2135 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

.splash-logo {
    max-width: 200px;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out;
}

.splash-title {
    color: #d6a52c;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.splash-subtitle {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.splash-loader {
    width: 40px;
    height: 40px;
    margin: 30px auto 0;
    border: 3px solid rgba(214, 165, 44, 0.3);
    border-top: 3px solid #d6a52c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Versión para video (opcional) */
.splash-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .splash-logo { max-width: 150px; }
    .splash-title { font-size: 22px; }
    .splash-subtitle { font-size: 14px; }
}