/* Estilos para la página de Perfil */
.profile-page {
    background: linear-gradient(135deg, #2e335a 0%, #1a1a2e 50%, #0e0e0e 100%);
    color: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
}

/* Hero Section */
.profile-hero {
    padding: 120px 0 0;
    text-align: center;
}

.profile-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 16px;
    font-family: 'Jost', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Jost', sans-serif;
}

/* Profile Content */
.profile-content {
    padding: 60px 0 80px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.profile-card-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-color);
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-card-title i {
    color: #3b82f6;
    font-size: 22px;
}

.profile-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Profile Info Item */
.profile-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-info-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Jost', sans-serif;
}

.profile-info-value {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Jost', sans-serif;
}

.profile-role-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

/* Profile Form */
.profile-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.profile-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Jost', sans-serif;
}

.profile-form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
}

.profile-form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.profile-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.profile-form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-form-actions {
    margin-top: 24px;
}

.profile-error-message,
.profile-success-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
}

.profile-error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.profile-success-message {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.profile-logout-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-hero-title {
        font-size: 36px;
    }
    
    .profile-hero-subtitle {
        font-size: 18px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .profile-card {
        padding: 24px;
    }
    
    .profile-card-title {
        font-size: 20px;
    }
}

