/* IZPlanner - Sistema de Planner SaaS */
/* Tema Claro */

/* ===== CSS Variables ===== */
:root {
    /* Cores Principais */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary: #ec4899;
    --accent: #f59e0b;
    
    /* Cores de Status */
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #2563eb;
    
    /* Tons de Cinza */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Background */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    
    /* Texto */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Bordas */
    --border-color: #e2e8f0;
    --border-color-hover: #cbd5e1;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.15);
    
    /* Transições */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Fontes */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'DM Sans', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding: 2rem;
    padding-top: 5rem;
    margin-left: 0;
    transition: margin-left var(--transition-normal);
}

/* Quando sidebar está aberta, conteúdo compacta */
.sidebar.open ~ .main-content {
    margin-left: 280px;
}

/* ===== Sidebar ===== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 150;
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.sidebar-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
    border-left: 3px solid transparent;
    text-decoration: none;
}

.nav-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.nav-item.active {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 500;
}

.nav-item-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.nav-item-text {
    font-weight: 500;
}

.sidebar-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Header ===== */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.page-title-icon {
    font-size: 2rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Cards ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

/* ===== Sections Grid ===== */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .sections-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Section Block ===== */
.section-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.section-block:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.section-icon {
    font-size: 1.25rem;
}

.section-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.section-block:hover .section-actions {
    opacity: 1;
}

.section-content {
    padding: 1rem 1.25rem;
}

/* ===== Block Items ===== */
.block-items {
    list-style: none;
}

.block-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.block-item:last-child {
    border-bottom: none;
}

.block-item:hover {
    background: var(--bg-tertiary);
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.block-item-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color-hover);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--bg-secondary);
}

.block-item-checkbox:hover {
    border-color: var(--primary);
}

.block-item-checkbox.checked {
    background: var(--primary);
    border-color: var(--primary);
}

.block-item-checkbox.checked::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.block-item-content {
    flex: 1;
    min-width: 0;
}

.block-item-text {
    word-wrap: break-word;
    color: var(--text-primary);
}

.block-item.completed .block-item-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.block-item-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.block-item:hover .block-item-actions {
    opacity: 1;
}

/* ===== Add Item ===== */
.add-item-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.add-item-input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.add-item-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: var(--bg-secondary);
}

.add-item-input::placeholder {
    color: var(--text-muted);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bg-tertiary);
    border-color: var(--border-color-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem;
}

.btn-ghost:hover:not(:disabled) {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #b91c1c;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn-icon-sm {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

/* ===== Calendar ===== */
.calendar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.calendar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.calendar-weekday {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    min-height: 100px;
    padding: 0.5rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
    cursor: pointer;
    background: var(--bg-secondary);
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day:hover {
    background: var(--bg-tertiary);
}

.calendar-day.other-month {
    background: var(--bg-tertiary);
    opacity: 0.5;
}

.calendar-day.today {
    background: rgba(79, 70, 229, 0.05);
}

.calendar-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.calendar-day.today .calendar-day-number {
    background: var(--primary);
    color: white;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-event {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    font-weight: 500;
}

/* ===== Week View ===== */
.week-view {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .week-view {
        grid-template-columns: 1fr;
    }
}

.week-day {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.week-day-header {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.week-day-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.week-day-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.week-day.today .week-day-header {
    background: rgba(79, 70, 229, 0.1);
}

.week-day.today .week-day-name {
    color: var(--primary);
}

.week-day-tasks {
    padding: 0.75rem;
    min-height: 150px;
}

.week-task {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
    transition: all var(--transition-fast);
}

.week-task:hover {
    background: var(--bg-primary);
}

.week-task.completed {
    opacity: 0.6;
    border-left-color: var(--success);
}

.week-task.priority-high {
    border-left-color: var(--danger);
}

.week-task.priority-low {
    border-left-color: var(--gray-400);
}

/* ===== Goals ===== */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.goal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.goal-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.goal-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.goal-status {
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.goal-status.pending {
    background: rgba(217, 119, 6, 0.1);
    color: var(--warning);
}

.goal-status.in_progress {
    background: rgba(37, 99, 235, 0.1);
    color: var(--info);
}

.goal-status.completed {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
}

.goal-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.goal-progress {
    margin-bottom: 1rem;
}

.goal-progress-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.goal-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.goal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast-icon {
    font-size: 1.25rem;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* ===== Loading ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.empty-state-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ===== Add Section Button ===== */
.add-section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.add-section-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79, 70, 229, 0.03);
}

/* ===== Auth Pages ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.auth-logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 500;
}

/* ===== Responsive - Desktop & Tablet Only ===== */
.mobile-block-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.mobile-block-overlay .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mobile-block-overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mobile-block-overlay p {
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
}

/* Mobile block - controlado via JavaScript */
.mobile-block-overlay.active {
    display: flex !important;
}

.mobile-block-overlay.active ~ .app-wrapper,
.mobile-block-overlay.active ~ .auth-container {
    display: none !important;
}

body.mobile-blocked .app-wrapper,
body.mobile-blocked .auth-container {
    display: none !important;
}

body.mobile-blocked .mobile-block-overlay {
    display: flex !important;
}

/* Hamburger Menu Button - Sempre visível */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 200;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: left var(--transition-normal);
}

.hamburger-btn:hover span {
    background: var(--primary);
}

/* Quando sidebar está aberta, botão vai junto */
.hamburger-btn.active {
    left: calc(280px + 1.25rem);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Tablets - fonte menor */
@media (max-width: 1024px) {
    html {
        font-size: 12px;
    }
    
    .main-content {
        padding: 1.5rem;
        padding-top: 5rem;
    }
    
    .sections-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .week-view {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .calendar-day {
        min-height: 70px;
    }
}

/* ===== Emoji Picker ===== */
.emoji-picker {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.25rem;
    padding: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.emoji-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.emoji-btn:hover {
    background: var(--bg-secondary);
}

.emoji-btn.selected {
    background: var(--primary);
    border-radius: var(--radius-md);
}

/* ===== Color Picker ===== */
.color-picker {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: var(--text-primary);
}

/* ===== Priority Badges ===== */
.priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
}

.priority-badge.high {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger);
}

.priority-badge.medium {
    background: rgba(217, 119, 6, 0.1);
    color: var(--warning);
}

.priority-badge.low {
    background: rgba(107, 114, 128, 0.1);
    color: var(--gray-500);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* ===== Selection ===== */
::selection {
    background: rgba(79, 70, 229, 0.2);
    color: var(--text-primary);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.animate-slide-up {
    animation: slideUp 0.4s ease;
}

.sections-grid > *:nth-child(1) { animation-delay: 0.05s; }
.sections-grid > *:nth-child(2) { animation-delay: 0.1s; }
.sections-grid > *:nth-child(3) { animation-delay: 0.15s; }
.sections-grid > *:nth-child(4) { animation-delay: 0.2s; }
.sections-grid > *:nth-child(5) { animation-delay: 0.25s; }
.sections-grid > *:nth-child(6) { animation-delay: 0.3s; }

/* ===== Profile Page ===== */
.profile-page {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== Blocks Grid System ===== */
.blocks-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

/* Block Sizes */
.profile-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: grab;
}

.profile-block:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.profile-block.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

/* Size Classes */
.profile-block.size-full {
    grid-column: span 12;
}

.profile-block.size-half {
    grid-column: span 6;
}

.profile-block.size-third {
    grid-column: span 4;
}

.profile-block.size-quarter {
    grid-column: span 3;
}

@media (max-width: 1200px) {
    .profile-block.size-quarter {
        grid-column: span 4;
    }
}

@media (max-width: 1024px) {
    .profile-block.size-quarter,
    .profile-block.size-third {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .blocks-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-block.size-full,
    .profile-block.size-half,
    .profile-block.size-third,
    .profile-block.size-quarter {
        grid-column: span 1;
    }
}

/* Block Header */
.block-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-left: none;
    color: var(--text-primary);
}

.block-drag-handle {
    cursor: grab;
    padding: 0.25rem 0.5rem;
    margin-right: 0.25rem;
    font-size: 1rem;
    opacity: 0.4;
    touch-action: none;
    user-select: none;
    color: var(--text-secondary);
    background: transparent;
}

.block-drag-handle:hover {
    opacity: 1;
}

.block-drag-handle:active {
    cursor: grabbing;
}

.profile-block.dragging {
    opacity: 0.5;
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.profile-block.drag-over {
    border: 2px dashed var(--border-color-hover);
    background: var(--bg-tertiary);
}

.block-move-btns {
    display: none;
}

/* Mostrar botões de mover em telas pequenas onde touch não funciona bem */
@media (max-width: 600px) {
    .block-drag-handle {
        display: none;
    }
    
    .block-move-btns {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-right: 0.25rem;
    }
    
    .block-move-btns button {
        padding: 0.125rem 0.375rem;
        font-size: 0.75rem;
        line-height: 1;
        color: var(--text-secondary);
        opacity: 0.7;
    }
    
    .block-move-btns button:hover {
        opacity: 1;
        background: rgba(0,0,0,0.1);
    }
}

.block-actions button {
    color: var(--text-secondary);
    opacity: 0.8;
}

.block-actions button:hover {
    opacity: 1;
    background: rgba(0,0,0,0.1);
}

.block-icon {
    font-size: 1.1rem;
}

.block-title {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.block-actions {
    display: flex;
    gap: 0.25rem;
}

.size-indicator {
    font-size: 0.7rem;
    color: var(--text-secondary);
    padding: 0.125rem 0.375rem;
    background: rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
}

/* Block Content */
.block-content {
    padding: 1rem;
    min-height: 80px;
}

.block-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.block-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    padding: 1rem;
    line-height: 1.6;
}

.quote-mark {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 0;
    vertical-align: middle;
}

.block-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.block-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: var(--bg-tertiary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.block-image-placeholder:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Block List */
.block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-list-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.block-list-item:last-child {
    border-bottom: none;
}

.block-list-item:hover {
    background: var(--bg-tertiary);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.block-list-item .list-bullet {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.block-list-item .list-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.block-list-item .item-delete {
    opacity: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.block-list-item:hover .item-delete {
    opacity: 1;
}

.block-list-empty {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Add Item Inline */
.add-item-inline {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.add-item-inline input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.add-item-inline input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-secondary);
}

.add-item-inline input::placeholder {
    color: var(--text-muted);
}

/* Size Menu Dropdown */
.size-menu {
    position: fixed;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    overflow: hidden;
    min-width: 160px;
}

.size-menu button {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.size-menu button:hover {
    background: var(--bg-tertiary);
}

/* Block Type Selector */
.block-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.block-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.block-type-option:hover {
    border-color: var(--primary);
}

.block-type-option.selected {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
}

.block-type-option input {
    display: none;
}

.block-type-option .type-icon {
    font-size: 1.5rem;
}

.block-type-option .type-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Empty Blocks State */
.empty-blocks-state {
    grid-column: span 12;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-xl);
}

.empty-blocks-state .empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-blocks-state h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.empty-blocks-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Profile Header Card */
.profile-header-card {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.profile-cover {
    height: 40px;
    background: #d1fae5;
    position: relative;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.5rem 1rem;
    margin-top: -35px;
    position: relative;
}

.profile-header-actions {
    margin-left: auto;
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: #10b981;
    border: 3px solid var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-large .avatar-initials {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

.profile-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.8rem;
    box-shadow: var(--shadow-md);
}

.profile-avatar-edit:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.profile-header-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    color: var(--text-primary);
}

.profile-email {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Profile Quote Card */
.profile-quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.profile-quote-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.quote-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.quote-content {
    flex: 1;
}

.quote-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.quote-placeholder {
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.profile-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Profile Cards */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.profile-card:hover {
    box-shadow: var(--shadow-md);
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.profile-card-header h3 {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.profile-card-icon {
    font-size: 1.25rem;
}

.profile-card-actions {
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.profile-card:hover .profile-card-actions {
    opacity: 1;
}

.profile-card-content {
    padding: 1.25rem;
}

/* Editable Text */
.editable-text {
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    min-height: 80px;
}

.editable-text:hover {
    background: var(--bg-tertiary);
}

.editable-text p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
}

.text-placeholder {
    color: var(--text-muted);
    font-style: italic;
}

/* Profile Lists */
.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.profile-list-item:last-child {
    border-bottom: none;
}

.profile-list-item:hover {
    background: var(--bg-tertiary);
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.list-bullet {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.list-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.item-delete {
    opacity: 0;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.profile-list-item:hover .item-delete {
    opacity: 1;
}

.profile-list-empty {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

/* Add List Item Form */
.add-list-item-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.add-list-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.add-list-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-secondary);
}

.add-list-input::placeholder {
    color: var(--text-muted);
}

/* Add Profile Section Button */
.add-profile-section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.add-profile-section-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79, 70, 229, 0.03);
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem 1rem;
    }
    
    .profile-avatar-large {
        width: 100px;
        height: 100px;
    }
    
    .profile-avatar-large .avatar-initials {
        font-size: 2rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-quote-card {
        flex-direction: column;
        text-align: center;
    }
}
