/* assets/css/welcome.css - Estilos específicos para página de bienvenida */

.welcome-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
}

.welcome-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-graphic {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.welcome-logo h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--text);
}

.welcome-message {
    margin-bottom: 2rem;
}

.welcome-message p {
    font-size: 1rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.welcome-action {
    margin-bottom: 2rem;
}

.system-info {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.system-info p {
    margin: 0.3rem 0;
}

/* Vista desktop para welcome */
@media (min-width: 769px) {
    .welcome-container {
        padding: 2rem;
    }
    
    .logo-graphic {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .welcome-logo h1 {
        font-size: 1.8rem;
    }
    
    .welcome-message p {
        font-size: 1.1rem;
    }
}

/* Vista móvil muy pequeña */
@media (max-width: 360px) {
    .welcome-container {
        padding: 0.5rem;
    }
    
    .logo-graphic {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .welcome-logo h1 {
        font-size: 1.3rem;
    }
}

/* Ajustes para altura muy pequeña */
@media (max-height: 600px) {
    .welcome-container {
        padding: 0.5rem;
    }
    
    .welcome-logo {
        margin-bottom: 1rem;
    }
    
    .welcome-message {
        margin-bottom: 1rem;
    }
    
    .welcome-action {
        margin-bottom: 1rem;
    }
}