:root {
    /* Colors */
    --primary: #171717;
    --primary-hover: #262626;
    --bg-main: #fcfcfc;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f5f5f5;
    
    --text-primary: #171717;
    --text-secondary: #737373;
    --text-tertiary: #a3a3a3;
    
    --border-light: #e5e5e5;
    --border-strong: #d4d4d4;
    
    /* Status Colors */
    --status-green: #10b981;
    --status-green-bg: #d1fae5;
    --status-red: #ef4444;
    --status-red-bg: #fee2e2;
    --status-yellow: #f59e0b;
    --status-yellow-bg: #fef3c7;
    --status-blue: #3b82f6;
    --status-blue-bg: #dbeafe;
    --status-purple: #8b5cf6;
    --status-purple-bg: #ede9fe;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
    --primary: #f5f5f5;
    --primary-hover: #e5e5e5;
    --bg-main: #121212;
    --bg-surface: #1e1e1e;
    --bg-surface-hover: #2d2d2d;
    
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --text-tertiary: #737373;
    
    --border-light: #2d2d2d;
    --border-strong: #404040;
    
    --status-green-bg: #064e3b;
    --status-red-bg: #7f1d1d;
    --status-yellow-bg: #78350f;
    --status-blue-bg: #1e3a8a;
    --status-purple-bg: #4c1d95;
    
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
}

/* Fix Button Contrast and Logo in Dark Mode */
body.dark-mode .btn-secondary {
    background: #2d2d2d;
    border-color: #3d3d3d;
    color: #f5f5f5;
}
body.dark-mode .btn-secondary:hover {
    background: #3d3d3d;
}
body.dark-mode .btn-primary {
    background: #3b82f6; /* Ensure visible blue in dark mode */
    color: #ffffff !important;
}
body.dark-mode .logo-container img {
    content: url("../assets/logo_locare_horizontal_cinza.png");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Layout */
#app {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--bg-surface);
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    transition: var(--transition-normal);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.75rem 2rem 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

/* Mobile Bottom Nav */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    z-index: 100;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.25rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav .nav-item {
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    gap: 0.2rem;
    font-size: 0.65rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    min-width: 56px;
    background: none;
    border: none;
    cursor: pointer;
}

.bottom-nav .nav-item span {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1;
}

.bottom-nav .nav-item i {
    width: 1.25rem;
    height: 1.25rem;
}

.bottom-nav .nav-item.active {
    color: var(--status-blue);
    background: var(--status-blue-bg);
}

/* FAB central */
.bottom-nav-fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.bottom-nav-fab:active {
    transform: scale(0.94);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.bottom-nav-fab i { width: 1.375rem; height: 1.375rem; }

body.dark-mode .bottom-nav-fab { background: var(--status-blue); }

/* Drawer "Mais" */
.mais-overlay, .menu-rapido-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.25s;
}
.mais-overlay.open, .menu-rapido-overlay.open {
    display: block;
    opacity: 1;
}

.mais-drawer {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-radius: 1rem 1rem 0 0;
    z-index: 200;
    padding: 0.5rem 1rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    transition: bottom 0.3s cubic-bezier(0.4,0,0.2,1);
}

.mais-drawer.open { bottom: 64px; }

.mais-drawer-handle {
    width: 36px;
    height: 4px;
    background: var(--border-strong);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.mais-drawer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.mais-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 0.25rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    min-height: 64px;
}

.mais-item:hover, .mais-item.active {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.mais-item i { width: 1.375rem; height: 1.375rem; }

.mais-item-sair { color: var(--status-red); width: 100%; }
.mais-item-sair:hover { background: var(--status-red-bg); }

/* Menu Rápido */
.menu-rapido {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-radius: 1rem 1rem 0 0;
    z-index: 200;
    padding: 0.75rem 1rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    transition: bottom 0.3s cubic-bezier(0.4,0,0.2,1);
}

.menu-rapido.open { bottom: 64px; }

.menu-rapido-titulo {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}

.menu-rapido-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 0.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

.menu-rapido-item:hover, .menu-rapido-item:active {
    background: var(--bg-surface-hover);
}

.menu-rapido-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-rapido-icon i { width: 1.125rem; height: 1.125rem; }

.menu-rapido-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.menu-rapido-desc {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.125rem;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

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

.nav-item.active {
    background-color: var(--bg-surface-hover);
    color: var(--text-primary);
    font-weight: 600;
}

.nav-item i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: var(--bg-main);
}

.page-header {
    padding: 2rem 3rem 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--bg-surface);
    position: sticky;
    top: 0;
    z-index: 10;
}

.page-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.page-content {
    padding: 2rem 3rem;
    flex: 1;
}

/* Components */
.card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--bg-surface-hover);
    border-color: #a3a3a3;
}

/* Icon-only action button */
.btn-icon {
    background: var(--bg-surface);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    padding: 0.375rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.btn-icon:hover {
    background: var(--bg-surface-hover);
    border-color: #a3a3a3;
    color: var(--text-primary);
}
.btn-icon.danger:hover {
    background: var(--status-red-bg);
    border-color: var(--status-red);
    color: var(--status-red);
}

.pg-btn.active-pg {
    background: var(--status-blue-bg) !important;
    border-color: var(--status-blue) !important;
    color: var(--status-blue) !important;
    font-weight: 700;
}

/* Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input {
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-primary);
    background-color: var(--bg-surface);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(23, 23, 23, 0.1);
}

/* Table */
.table-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    background-color: var(--bg-surface-hover);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-light);
}

td {
    padding: 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: var(--bg-surface-hover);
}

/* Badges / Status */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-green { background-color: var(--status-green-bg); color: var(--status-green); }
.badge-red { background-color: var(--status-red-bg); color: var(--status-red); }
.badge-yellow { background-color: var(--status-yellow-bg); color: var(--status-yellow); }
.badge-blue { background-color: var(--status-blue-bg); color: var(--status-blue); }
.badge-purple { background-color: var(--status-purple-bg); color: var(--status-purple); }

/* Utility */
.grid { display: grid; }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Login Page specific */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: var(--bg-main);
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.login-logo {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn var(--transition-normal) forwards;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: var(--transition-normal);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.modal-close {
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Calendar Styles */
.calendar-grid-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(100px, 1fr));
    gap: 1px;
    background-color: var(--border-light);
    min-width: 700px;
}

.calendar-header-day {
    background-color: var(--bg-surface-hover);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.calendar-day {
    background-color: var(--bg-surface);
    min-height: 120px;
    padding: 0.5rem;
}

.calendar-day-openable {
    cursor: pointer;
    touch-action: manipulation;
}

.calendar-day-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.calendar-event:hover {
    filter: brightness(0.95);
}

/* Calendar — drag-over highlight */
.calendar-day.drag-over {
    background-color: var(--status-blue-bg);
    outline: 2px dashed var(--status-blue);
    outline-offset: -2px;
}

/* Calendar — quick-add button visible on hover */
.calendar-day-add {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0.1rem 0.25rem;
    border-radius: var(--radius-sm);
    display: none;
    transition: var(--transition-fast);
}
.calendar-day:hover .calendar-day-add {
    display: block;
}
.calendar-day-add:hover {
    color: var(--primary);
    background: var(--bg-surface-hover);
}

/* Calendar — faded empty cells */
.calendar-day.faded {
    background-color: #fafafa;
    opacity: 0.6;
}

/* Grid col-2 */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* textarea as form input */
textarea.form-input {
    resize: vertical;
    min-height: 60px;
}

/* Spin animation for loader */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* View-button active state */
.view-btn.active-view {
    background: var(--bg-surface) !important;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

/* Action buttons row */
.action-btns {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}

/* Payment badge */
.payment-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg-surface-hover);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .sidebar {
        width: 60px;
        padding: 1rem 0.5rem;
        overflow: hidden;
    }
    .sidebar .logo-container img { display: none; }
    .sidebar .logo-container::after {
        content: 'LP';
        font-weight: 800;
        font-size: 0.875rem;
        color: var(--primary);
    }
    .nav-item span,
    .nav-item { justify-content: center; }
    .nav-item { font-size: 0; gap: 0; padding: 0.625rem; }
    .nav-item i { width: 1.25rem; height: 1.25rem; }

    .page-header  { padding: 1rem 1.25rem; }
    .page-content { padding: 1rem 1.25rem; }

    .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-cols-2 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
    .sidebar { display: none; }
    .bottom-nav { display: flex; }
    .main-content {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
        overflow-y: auto;
    }

    #layout-container { flex-direction: column; }

    .page-header {
        padding: 0.875rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .page-title { font-size: 1.125rem; }

    .page-content { padding: 0.875rem 1rem; }

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 { grid-template-columns: minmax(0, 1fr); }

    .card { min-width: 0; max-width: 100%; }

    /* Modais como bottom sheet no mobile */
    .modal-content {
        margin: 0;
        border-radius: 1rem 1rem 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 90vh;
        overflow-y: auto;
        padding-bottom: 2rem;
    }
    .modal-overlay { align-items: flex-end; }
    .modal-header { margin-bottom: 1rem; }

    /* Formulário Nova Reserva compacto */
    #formReserva .form-group { margin-bottom: 0.875rem !important; }
    #formReserva [style*="margin-bottom:1.5rem"] { margin-bottom: 0.875rem !important; }
    #formReserva [style*="gap-6"] { gap: 0.75rem !important; }
    #formReserva [style*="margin-top:2rem"] { margin-top: 1.25rem !important; }
    #formReserva .grid { gap: 0.75rem !important; }
    #formReserva [style*="padding:1.25rem 1.5rem"] { padding: 0.875rem 1rem !important; }
    #formReserva [style*="font-size:2rem"] { font-size: 1.5rem !important; }

    /* Tabelas como cards no mobile */
    .table-container table thead { display: none; }
    .table-container table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--border-light);
        padding: 0.875rem 0;
    }
    .table-container table td {
        border-bottom: none;
        padding: 0.2rem 1rem;
        font-size: 0.875rem;
    }
    .table-container table {
        min-width: unset;
        width: 100%;
    }

    /* Calendário compacto */
    .calendar-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        min-width: 0;
    }
    .calendar-day { min-width: 0; min-height: 60px; padding: 0.25rem; }
    .calendar-day-number { margin-bottom: 0.25rem; font-size: 0.75rem; }
    .calendar-event { padding: 0.2rem; font-size: 0.55rem !important; }
    .calendar-grid-month .calendar-event > div:not(:first-child),
    .calendar-grid-week .calendar-event > div:not(:first-child) { display: none; }
    .calendar-grid-day .calendar-event {
        padding: 10px 12px;
        font-size: 1rem !important;
    }
    .calendar-header-day { font-size: 0.65rem; padding: 0.375rem 0; }

    /* Touch targets maiores */
    .btn { min-height: 40px; }
    .form-input { min-height: 44px; font-size: 1rem; }

    /* Cards compactos */
    .card { padding: 1rem; }
    .metric-value { font-size: 1.625rem; }
}
