:root {
    --landing-accent: #6c4de0;
    --landing-accent-dark: #4f36b3;
    --landing-ink: #201f36;
}

body.landing-body {
    font-family: 'Poppins', sans-serif;
    color: var(--landing-ink);
    background: #fff;
}

/* ---------- Navbar ---------- */

.landing-nav {
    padding: 1.1rem 0;
    border-bottom: 1px solid #eee;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--landing-ink);
    text-decoration: none;
}

.landing-brand .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--landing-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-nav-link {
    color: var(--landing-ink);
    text-decoration: none;
    font-weight: 500;
}

.landing-nav-link:hover {
    color: var(--landing-accent);
}

.btn-landing-cta {
    background: var(--landing-accent);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
}

.btn-landing-cta:hover {
    background: var(--landing-accent-dark);
    color: #fff;
}

.btn-landing-outline {
    background: transparent;
    border: 1.5px solid var(--landing-accent);
    color: var(--landing-accent);
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
}

.btn-landing-outline:hover {
    background: var(--landing-accent);
    color: #fff;
}

/* ---------- Hero ---------- */

.landing-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #f6f4ff 0%, #fff 100%);
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eee7ff;
    color: var(--landing-accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.landing-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    max-width: 760px;
    margin: 0 auto 1.2rem;
}

.landing-hero-subtitle {
    font-size: 1.15rem;
    color: #5b5a70;
    max-width: 620px;
    margin: 0 auto;
}

.landing-hero-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8b8a9c;
}

/* ---------- Features ---------- */

.landing-features {
    padding: 5rem 0;
}

.landing-features h2 {
    font-weight: 700;
    font-size: 1.9rem;
}

.feature-card {
    background: #fbfaff;
    border: 1px solid #eee7ff;
    border-radius: 14px;
    padding: 1.8rem;
    height: 100%;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--landing-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-weight: 600;
}

.feature-card p {
    color: #6b6a7d;
    margin-bottom: 0;
}

/* ---------- Como funciona ---------- */

.landing-steps {
    padding: 5rem 0;
    background: #fbfaff;
}

.landing-steps h2 {
    font-weight: 700;
    font-size: 1.9rem;
}

.step-card {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--landing-accent);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h5 {
    font-weight: 600;
}

.step-card p {
    color: #6b6a7d;
}

/* ---------- CTA final ---------- */

.landing-cta-banner {
    padding: 4rem 0;
    background: var(--landing-accent);
    color: #fff;
}

.landing-cta-banner h2 {
    font-weight: 700;
}

.landing-cta-banner .btn-landing-cta {
    background: #fff;
    color: var(--landing-accent-dark);
    margin-top: 1rem;
}

.landing-cta-banner .btn-landing-cta:hover {
    background: #f1eeff;
}

/* ---------- Footer ---------- */

.landing-footer {
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    color: #8b8a9c;
    font-size: 0.9rem;
}

.landing-footer a {
    color: #8b8a9c;
    text-decoration: none;
}

.landing-footer a:hover {
    color: var(--landing-accent);
}

/* ---------- Wizard de cadastro ---------- */

.wizard-body {
    background: #fbfaff;
}

.wizard-main {
    padding: 3rem 0 4rem;
}

.wizard-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee7ff;
    border-radius: 16px;
    padding: 2rem;
}

.wizard-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.wizard-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0eefe;
    color: #a6a3c2;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.wizard-dot.active {
    background: var(--landing-accent);
    color: #fff;
}

.wizard-dot.done {
    background: #d9d2ff;
    color: var(--landing-accent-dark);
}

.wizard-step h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.wizard-footer {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 0.75rem;
}

.btn-template {
    background: #f0eefe;
    border: 1.5px solid transparent;
    color: var(--landing-ink);
    font-weight: 500;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-template.active {
    border-color: var(--landing-accent);
    background: #e5e0ff;
}

.category-block {
    border: 1px solid #eee7ff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.9rem;
}

.category-block__header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.btn-remove-category,
.btn-remove-service {
    background: #fdeaea;
    color: #c0392b;
    border: none;
    border-radius: 8px;
    width: 42px;
    flex: 0 0 auto;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 80px 90px 42px;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Cabecalho das colunas do servico - so texto, mesma grade dos inputs
   embaixo, pra explicar o que cada campo significa mesmo depois de
   preenchido por um template (onde o placeholder some). */
.service-row-header {
    display: grid;
    grid-template-columns: 1fr 80px 90px 42px;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.service-row-header span {
    font-size: 0.72rem;
    color: #8a8a99;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 576px) {
    .service-row-header {
        display: block;
        font-size: 0.72rem;
        color: #8a8a99;
        margin-bottom: 0.35rem;
    }

    .service-row-header span:nth-child(4) {
        display: none;
    }

    .service-row-header span:nth-child(1)::after,
    .service-row-header span:nth-child(2)::after {
        content: ' · ';
    }
}

.btn-add-service {
    background: transparent;
    border: 1px dashed #c9c2f5;
    color: var(--landing-accent-dark);
    font-size: 0.85rem;
    border-radius: 8px;
    padding: 0.35rem 0.8rem;
    margin-top: 0.3rem;
}

.wizard-review-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0eefe;
}

.wizard-review-row:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .landing-hero h1 {
        font-size: 2rem;
    }

    .wizard-card {
        padding: 1.4rem;
    }

    .service-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "name name" "duration price" "remove remove";
    }

    .service-row .service-name-input { grid-area: name; }
    .service-row .service-duration-input { grid-area: duration; }
    .service-row .service-price-input { grid-area: price; }
    .service-row .btn-remove-service { grid-area: remove; width: 100%; }
}
