/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary: #1a1a2e;
    --accent:  #e94560;
    --gold:    #f5a623;
    --bg:      #f8f9fa;
    --white:   #ffffff;
    --text:    #333333;
    --muted:   #888888;
    --border:  #e0e0e0;
    --success: #28a745;
    --danger:  #dc3545;
    --info:    #17a2b8;
    --warning: #ffc107;
    --radius:  8px;
    --shadow:  0 2px 12px rgba(0,0,0,.08);
}
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); font-size: .9rem; }
.section     { padding: 60px 0; }
.section-dark { background: var(--primary); color: #fff; }
.section-dark p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* ─── Navbar ─── */
.navbar { background: var(--primary); padding: 0 20px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar-brand { color: #fff; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.navbar-brand i { color: var(--accent); }
.navbar-links { display: flex; align-items: center; gap: 20px; }
.navbar-links a { color: rgba(255,255,255,.85); font-size: .95rem; }
.navbar-links a:hover { color: #fff; text-decoration: none; }

/* ─── Flash ─── */
.flash { padding: 12px 0; font-weight: 500; text-align: center; }
.flash-sucesso { background: #d4edda; color: #155724; }
.flash-erro    { background: #f8d7da; color: #721c24; }
.flash-info    { background: #d1ecf1; color: #0c5460; }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius); font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: .2s; }
.btn-primary   { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c73652; color: #fff; text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }
.btn-outline-sm  { padding: 6px 14px; border: 1.5px solid var(--accent); color: var(--accent); border-radius: 6px; font-size: .85rem; cursor: pointer; background: transparent; }
.btn-primary-sm  { padding: 6px 14px; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-size: .85rem; cursor: pointer; }
.btn-success-sm  { padding: 6px 12px; background: var(--success); color: #fff; border: none; border-radius: 6px; font-size: .82rem; cursor: pointer; }
.btn-info-sm     { padding: 6px 12px; background: var(--info); color: #fff; border: none; border-radius: 6px; font-size: .82rem; cursor: pointer; }
.btn-danger-sm   { padding: 6px 12px; background: var(--danger); color: #fff; border: none; border-radius: 6px; font-size: .82rem; cursor: pointer; }
.btn-back { color: var(--muted); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 16px; }

/* ─── Forms ─── */
.form-group   { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.form-control { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .95rem; transition: border .2s; }
.form-control:focus { outline: none; border-color: var(--accent); }
.form-check   { display: flex; align-items: center; gap: 10px; }
.form-check input { width: auto; }

/* ─── Hero ─── */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #16213e 60%, #0f3460 100%); color: #fff; padding: 80px 0 60px; }
.hero-inner { text-align: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 32px; }

/* Search box */
.search-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 20px; max-width: 780px; margin: 0 auto; backdrop-filter: blur(6px); }
.search-row { display: flex; gap: 10px; flex-wrap: wrap; }
.search-field { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 8px; padding: 0 14px; flex: 1; min-width: 160px; }
.search-field i { color: var(--muted); font-size: .9rem; flex-shrink: 0; }
.search-field input, .search-field select { border: none; outline: none; font-size: .95rem; width: 100%; padding: 12px 0; background: transparent; color: var(--text); }
.search-field select { cursor: pointer; }
.search-field-main { flex: 2; }
.search-field-uf { flex: 0 0 110px; min-width: 110px; }
.btn-buscar { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: 12px 24px; font-size: .95rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: .2s; display: flex; align-items: center; gap: 6px; }
.btn-buscar:hover { background: #c73652; }
.search-geo { margin-top: 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.search-geo button { background: transparent; border: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.85); border-radius: 20px; padding: 6px 16px; font-size: .85rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: .2s; }
.search-geo button:hover { border-color: #fff; color: #fff; }
.search-geo button:disabled { opacity: .6; cursor: not-allowed; }
#geo-label { font-size: .85rem; color: rgba(255,255,255,.75); }

/* Resultados */
.resultados-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.resultados-header h2 { font-size: 1.5rem; }

/* Skeleton loading */
.loading-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.skeleton { pointer-events: none; }
.skeleton .card-barbearia-img { background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
.skeleton .card-barbearia-body { padding: 16px; }
.skel-line { height: 14px; background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 200% 100%; border-radius: 4px; margin-bottom: 10px; animation: shimmer 1.2s infinite; }
.skel-line.short { width: 60%; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── Feature Cards ─── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-feature { background: #fff; padding: 32px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.card-feature i { font-size: 2.5rem; color: var(--accent); margin-bottom: 16px; }
.card-feature h3 { margin-bottom: 8px; }
.section-title { text-align: center; font-size: 1.8rem; margin-bottom: 40px; }

/* ─── Barbearias Grid ─── */
.grid-barbearias { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card-barbearia { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; color: var(--text); }
.card-barbearia:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); text-decoration: none; }
.card-barbearia-img { height: 160px; background: var(--primary); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-barbearia-img img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-logo { font-size: 3rem; color: rgba(255,255,255,.3); }
.card-barbearia-body { padding: 16px; }
.card-barbearia-body h3 { margin-bottom: 4px; }
.barbearia-endereco { color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.barbearia-meta { display: flex; align-items: center; justify-content: space-between; }

/* ─── Stars ─── */
.star-on  { color: var(--gold); }
.star-off { color: #ddd; }
.stars small { color: var(--muted); margin-left: 4px; }
.stars-wrap { display:inline-flex; align-items:center; gap:2px; }
.stars-wrap .fa-star, .stars-wrap .fa-star-half-alt { font-size:.9rem; }
.stars-nota { font-weight:800; color:var(--text); margin-left:6px; font-size:1.05rem; letter-spacing:-.01em; }
.stars-total { color:var(--muted); font-size:.82rem; margin-left:3px; font-weight:400; }

/* ─── Barbearia Perfil ─── */
.barbearia-perfil { background: #fff; border-radius: var(--radius); padding: 32px; margin-bottom: 24px; box-shadow: var(--shadow); }
.barbearia-perfil-header { display: flex; gap: 24px; align-items: flex-start; }
.barbearia-logo { width: 120px; height: 120px; border-radius: var(--radius); background: var(--primary); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.barbearia-logo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-logo-lg { font-size: 3rem; color: rgba(255,255,255,.4); }
.barbearia-info h1 { margin-bottom: 8px; }
.barbearia-info p { color: var(--muted); margin-bottom: 4px; }

/* ─── Tabs ─── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab { padding: 12px 20px; border: none; background: transparent; cursor: pointer; font-size: .95rem; color: var(--muted); font-weight: 500; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── Serviços ─── */
.servicos-lista { display: flex; flex-direction: column; gap: 12px; }
.servico-item { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.servico-preco { font-size: 1.2rem; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* ─── Barbeiros grid ─── */
.barbeiros-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.barbeiro-card { text-align: center; padding: 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.barbeiro-foto { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden; background: var(--primary); display: flex; align-items: center; justify-content: center; }
.placeholder-avatar { color: rgba(255,255,255,.5); font-size: 2rem; }

/* ─── Horários ─── */
.horarios-lista { max-width: 400px; }
.horario-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.horario-row.hoje { font-weight: 700; color: var(--accent); }

/* ─── Avaliações ─── */
.avaliacoes-lista { display: flex; flex-direction: column; gap: 12px; }
.avaliacao-item { padding: 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.avaliacao-header { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }

/* ─── Agendamentos (cliente) ─── */
.agendamentos-lista { display: flex; flex-direction: column; gap: 16px; }
.agendamento-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--border); }
.agendamento-card.status-aguardando  { border-left-color: var(--warning); }
.agendamento-card.status-confirmado  { border-left-color: var(--info); }
.agendamento-card.status-em_andamento{ border-left-color: #6f42c1; }
.agendamento-card.status-finalizado  { border-left-color: var(--success); }
.agendamento-card.status-cancelado   { border-left-color: var(--danger); opacity: .7; }
.agendamento-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.agendamento-header p { color: var(--muted); margin-top: 4px; font-size: .9rem; }
.agendamento-acoes { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.avaliacao-form { margin-top: 12px; padding: 12px; background: var(--bg); border-radius: var(--radius); }

/* ─── Estrelas CSS ─── */
.estrelas-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin-bottom: 10px; }
.estrelas-input input { display: none; }
.estrelas-input label { font-size: 1.5rem; color: #ddd; cursor: pointer; }
.estrelas-input input:checked ~ label,
.estrelas-input label:hover,
.estrelas-input label:hover ~ label { color: var(--gold); }

/* ─── Badges ─── */
.badge { padding: 3px 10px; border-radius: 20px; font-size: .78rem; font-weight: 600; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-primary { background: #cce5ff; color: #004085; }
.badge-secondary { background: #e2e3e5; color: #383d41; }

/* ─── Painel Layout ─── */
.painel-layout { display: flex; min-height: calc(100vh - 64px); }
.sidebar { width: 240px; background: var(--primary); color: #fff; flex-shrink: 0; padding: 20px 0; }
.sidebar-brand { padding: 16px 20px 24px; font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 8px; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,.7); font-size: .93rem; transition: .15s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.sidebar-nav a i { width: 18px; text-align: center; }
.painel-main { flex: 1; padding: 32px; overflow-x: auto; }

/* ─── Stats ─── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 20px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow); }
.stat-card i { font-size: 2rem; color: var(--accent); }
.stat-card.stat-destaque { border: 2px solid var(--gold); }
.stat-info { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.stat-info span:last-child { color: var(--muted); font-size: .82rem; margin-top: 2px; }

/* ─── Table ─── */
.table-wrapper { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table th { background: var(--primary); color: #fff; padding: 12px 16px; text-align: left; font-size: .85rem; font-weight: 600; }
.table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg); }

/* ─── Auth ─── */
.auth-wrapper { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 64px); padding: 40px 20px; }
.auth-card { background: #fff; border-radius: var(--radius); padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow); }
.auth-logo { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.auth-logo i { color: var(--accent); }
.auth-card h2 { margin-bottom: 24px; color: var(--muted); font-size: 1rem; font-weight: 400; }
.auth-footer { margin-top: 20px; text-align: center; color: var(--muted); font-size: .9rem; }

/* ─── Produtos ─── */
.produtos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.produto-card { background: #fff; border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); text-align: center; }
.produto-card img { height: 120px; object-fit: cover; border-radius: 6px; margin-bottom: 10px; }
.produto-card .preco { font-size: 1.1rem; font-weight: 700; color: var(--accent); display: block; margin-top: 8px; }

/* ─── Form agendar ─── */
.form-agendar { background: #fff; padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.resumo-box { background: #eafaf1; border: 1px solid #b7dfcb; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 16px; }

/* ─── Page header ─── */
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: 1.8rem; }
.page-header p { color: var(--muted); }

/* ─── Empty state ─── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ─── Modal ─── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 999; padding: 20px; }
.modal-box { background: #fff; border-radius: var(--radius); width: 100%; max-width: 520px; box-shadow: 0 20px 60px rgba(0,0,0,.3); animation: slideUp .2s ease; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 0; margin-bottom: 20px; }
.modal-header h3 { font-size: 1.2rem; }
.modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal-box form { padding: 0 24px 24px; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ─── Agenda ─── */
.agenda-lista { display: flex; flex-direction: column; gap: 12px; }
.agenda-item { display: flex; gap: 16px; background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); border-left: 4px solid var(--border); align-items: flex-start; }
.agenda-item.status-aguardando   { border-left-color: var(--warning); }
.agenda-item.status-confirmado   { border-left-color: var(--info); }
.agenda-item.status-em_andamento { border-left-color: #6f42c1; }
.agenda-item.status-finalizado   { border-left-color: var(--success); opacity: .8; }
.agenda-item.status-cancelado    { border-left-color: var(--danger); opacity: .6; }
.agenda-hora { text-align: center; min-width: 52px; }
.agenda-hora strong { font-size: 1.2rem; display: block; }
.agenda-hora small { color: var(--muted); font-size: .78rem; }
.agenda-info { flex: 1; }
.agenda-info p { color: var(--muted); font-size: .88rem; margin-top: 3px; }
.agenda-acoes { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.whatsapp-link { color: #25d366; margin-left: 8px; font-size: 1.1rem; }

/* ─── Horários editor ─── */
.horarios-editor { display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.horario-editor-row { display: flex; align-items: center; gap: 20px; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.horario-editor-row:last-child { border-bottom: none; }
.horario-dia-toggle { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #ccc; border-radius: 24px; transition: .3s; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .3s; }
.toggle-switch input:checked + .toggle-slider { background: var(--success); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ─── Barbeiros painel ─── */
.barbeiros-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.barbeiro-painel-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
.barbeiro-avatar { position: relative; width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.barbeiro-avatar img { width: 100%; height: 100%; object-fit: cover; }
.barbeiro-status { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; }
.barbeiro-status.ativo { background: var(--success); }
.barbeiro-status.inativo { background: var(--danger); }
.barbeiro-dados strong { display: block; margin-bottom: 4px; }
.barbeiro-dados p { font-size: .85rem; margin-top: 2px; }

/* ─── Perfil cliente ─── */
.perfil-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; gap: 20px; align-items: center; margin-bottom: 24px; }
.perfil-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perfil-avatar img { width: 100%; height: 100%; object-fit: cover; }
.perfil-avatar-placeholder { font-size: 2.5rem; color: rgba(255,255,255,.4); }
.form-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 20px; font-size: 1rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ─── Busca ─── */
.busca-form { background:#fff; border-radius:var(--radius); padding:16px 20px; box-shadow:var(--shadow); margin-bottom:20px; }
.busca-fields { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.busca-input-wrap { position:relative; flex:1; min-width:220px; }
.busca-input-wrap i { position:absolute; left:12px; top:50%; transform:translateY(-50%); color:var(--muted); }
.busca-input-wrap input { padding-left:36px; }

/* ─── Upload ─── */
.upload-area { border: 2px dashed var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; cursor: pointer; transition: .2s; background: var(--bg); }
.upload-area:hover, .upload-area.drag-over { border-color: var(--accent); background: #fff5f7; }
.upload-area i { font-size: 2.5rem; color: var(--muted); display: block; margin-bottom: 8px; }
.upload-area p { margin: 0; font-weight: 500; }

/* ─── Logo config ─── */
.logo-config-wrap { display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; }
.logo-atual { width:120px; height:120px; border-radius:var(--radius); overflow:hidden; background:var(--primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; border:2px solid var(--border); }
.logo-atual img { width:100%; height:100%; object-fit:cover; }
.logo-placeholder { display:flex; flex-direction:column; align-items:center; gap:6px; color:rgba(255,255,255,.4); font-size:.78rem; }
.logo-placeholder i { font-size:2rem; }

/* ─── Form sections ─── */
.form-section { background:#fff; border-radius:var(--radius); padding:24px; box-shadow:var(--shadow); }
.form-section-title { font-size:1rem; font-weight:700; color:var(--primary); margin-bottom:20px; display:flex; align-items:center; gap:8px; padding-bottom:12px; border-bottom:1px solid var(--border); }

/* ─── Footer ─── */
.footer { background: var(--primary); color: rgba(255,255,255,.5); text-align: center; padding: 20px; font-size: .85rem; margin-top: 60px; }
.main-content { min-height: calc(100vh - 64px); }
