/* ============================================================
   HelpDesk - Cliente Area CSS
   Estilos específicos da área pública do cliente
   ============================================================ */

/* ---- Validação de apelido ---- */

#hd-app .hd-cliente-wrap {
    min-height: 100vh;
    background: var(--hd-surface);
    padding: 32px 20px;
}

#hd-app .hd-cliente-header {
    text-align: center;
    margin-bottom: 32px;
}

#hd-app .hd-cliente-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--hd-dark);
    margin-bottom: 12px;
}

#hd-app .hd-cliente-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--hd-primary);
    border-radius: var(--hd-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

#hd-app .hd-servico-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

#hd-app .hd-servico-card {
    background: var(--hd-white);
    border: 2px solid var(--hd-border);
    border-radius: var(--hd-radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

#hd-app .hd-servico-card:hover {
    border-color: var(--hd-primary);
    box-shadow: var(--hd-shadow);
    transform: translateY(-2px);
}

#hd-app .hd-servico-icon {
    width: 52px;
    height: 52px;
    background: var(--hd-primary);
    border-radius: var(--hd-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

#hd-app .hd-servico-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--hd-dark);
    margin-bottom: 6px;
}

#hd-app .hd-servico-desc {
    font-size: 12.5px;
    color: var(--hd-text-muted);
    line-height: 1.5;
}

/* ---- Formulário de migração ---- */

#hd-app .hd-migracao-wrap {
    max-width: 640px;
    margin: 0 auto;
}

#hd-app .hd-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

#hd-app .hd-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hd-border);
    transition: background 0.2s;
}

#hd-app .hd-step-dot.active {
    background: var(--hd-primary);
    width: 24px;
    border-radius: 4px;
}

#hd-app .hd-step-dot.done {
    background: var(--hd-success);
}
