/* Cadastro público - estilo Anota AI */
:root {
    --primary: #FF6B35;
    --primary-dark: #e55a2b;
    --dark: #1A1A2E;
}

.cadastro-body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.cadastro-nav {
    background: var(--dark);
    padding: 1rem 0;
}

.cadastro-nav .brand {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
}

.cadastro-nav .brand i { color: var(--primary); }

/* Hero */
.hero-cadastro {
    background: linear-gradient(135deg, var(--dark) 0%, #16213E 60%, #0f3460 100%);
    color: #fff;
    padding: 4rem 0;
}

.badge-hero {
    background: rgba(255,107,53,0.2);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-cadastro h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.2;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.hero-features li {
    padding: 0.4rem 0;
    font-size: 1.05rem;
}

.hero-features i { color: #4ade80; margin-right: 0.5rem; }

.btn-hero {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.875rem 2rem;
}

.btn-hero:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Mockup */
.hero-mockup { display: flex; justify-content: center; }

.mockup-phone {
    background: #fff;
    border-radius: 24px;
    width: 280px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.mockup-header {
    height: 80px;
    background: linear-gradient(var(--primary), #ff8c5a);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.mockup-item {
    height: 60px;
    background: #f1f3f5;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.mockup-item.short { width: 70%; }

.mockup-cart {
    background: var(--primary);
    color: #fff;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    margin-top: 1rem;
}

/* Tipos */
.tipos-negocio { padding: 3rem 0; }
.tipos-negocio h2 { font-weight: 800; margin-bottom: 1rem; }

.tipo-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    line-height: 1.4;
}

.cta-final {
    background: var(--dark);
    color: #fff;
    padding: 3rem 0;
}

.cta-final h2 { font-weight: 800; }

/* Wizard */
.cadastro-wizard { max-width: 680px; }

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.wizard-step.active .step-circle {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.wizard-step.done .step-circle {
    background: #198754;
    color: #fff;
}

.step-label { font-size: 0.75rem; font-weight: 600; color: #6c757d; }
.wizard-step.active .step-label { color: var(--primary); }

.step-line {
    flex: 1;
    height: 3px;
    background: #dee2e6;
    margin: 0 0.25rem;
    margin-bottom: 1.5rem;
    max-width: 60px;
}

.step-line.done { background: #198754; }

.cadastro-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.cadastro-card-header {
    padding: 2rem 2rem 0;
}

.cadastro-card-header h2 {
    font-weight: 800;
    font-size: 1.5rem;
}

.cadastro-form { padding: 1.5rem 2rem 2rem; }

.slug-preview {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Sucesso */
.sucesso-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 700px;
}

.sucesso-icon { font-size: 4rem; margin-bottom: 1rem; }

.link-card {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
}

.link-url a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.next-step-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.next-step-card i {
    font-size: 2rem;
    color: var(--primary);
}

.next-step-card p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-cadastro h1 { font-size: 1.75rem; }
    .cadastro-form { padding: 1rem 1.25rem 1.5rem; }
    .cadastro-card-header { padding: 1.5rem 1.25rem 0; }
}
