:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
}

body {
    min-height: 100vh;
    background: #f8f9fa;
}

.navbar {
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 40px;
}

.user-info {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.welcome-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.welcome-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.welcome-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Estilos generales para la portada */
.body-landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.welcome-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.welcome-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.welcome-card:hover {
    transform: translateY(-5px);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.welcome-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.welcome-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-button {
    background-color: var(--accent-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.login-button i {
    margin-right: 0.5rem;
}

footer {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .welcome-card {
        padding: 2rem;
        margin: 1rem;
    }
    .welcome-title {
        font-size: 2rem;
    }
    .welcome-subtitle {
        font-size: 1rem;
    }
}

/* Estilos para las cards de acción en el dashboard */
.action-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.action-card .card-body {
    padding: 1.5rem;
}

.action-card .card-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.action-card i {
    color: var(--accent-color);
} 