/* Brezee Flow — Landing Page (seção 1a) */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: #2a2e33;
    background: oklch(0.99 0.004 80);
}

a {
    color: #2f5c56;
    text-decoration: none;
}

a:hover {
    color: #c16854;
}

/* ── Layout ─────────────────────────────────────────────────── */
.lp-section {
    padding: 0 64px;
}

.lp-container {
    max-width: 1080px;
    margin: 0 auto;
}

/* ── Nav ────────────────────────────────────────────────────── */
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
}

.lp-nav__logo img {
    height: 64px;
    width: auto;
}

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.lp-nav__links a {
    font-size: 14px;
    font-weight: 600;
    color: #2a2e33;
}

/* ── Buttons ────────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s ease, background 0.15s ease;
    text-decoration: none;
    border: none;
}

.lp-btn--solid {
    padding: 16px 30px;
    background: #2f5c56;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
}

.lp-btn--solid:hover {
    opacity: 0.9;
    color: #fff;
}

.lp-btn--outline {
    padding: 16px 30px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: #2a2e33;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
}

.lp-btn--outline:hover {
    background: #fff;
    color: #2a2e33;
}

.lp-btn--nav {
    padding: 11px 22px;
    border-radius: 10px;
    background: #2f5c56;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.lp-btn--nav:hover {
    opacity: 0.9;
    color: #fff;
}

.lp-btn--plan {
    width: 100%;
    margin-top: 8px;
    padding: 13px 16px;
    border-radius: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.lp-btn--plan-ghost {
    border: 2px solid rgba(0, 0, 0, 0.14);
    background: transparent;
    color: #2a2e33;
}

.lp-btn--plan-solid {
    background: #2f5c56;
    color: #fff;
}

.lp-btn--plan-solid:hover {
    color: #fff;
    opacity: 0.9;
}

/* ── Hero ───────────────────────────────────────────────────── */
.lp-hero {
    padding: 64px 64px 100px;
    text-align: center;
}

.lp-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-hero__badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    font-size: 12.5px;
    font-weight: 700;
    color: #2f5c56;
    letter-spacing: 0.03em;
    margin-bottom: 26px;
}

.lp-hero__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.lp-hero__title-accent {
    color: #c16854;
}

.lp-hero__subtitle {
    margin: 26px auto 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(42, 46, 51, 0.72);
    max-width: 560px;
    font-weight: 500;
}

.lp-hero__buttons {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* ── Steps (fluxograma) ─────────────────────────────────────── */
.lp-steps {
    padding: 0 64px 70px;
}

.lp-steps__title {
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.lp-steps__subtitle {
    text-align: center;
    font-size: 14.5px;
    color: rgba(42, 46, 51, 0.6);
    font-weight: 500;
    margin: 0 0 48px;
}

.lp-steps__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
}

.lp-step {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.lp-step__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 220px;
    margin: 0 auto;
}

.lp-step__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lp-step__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-step__desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(42, 46, 51, 0.62);
    font-weight: 500;
}

.lp-step__connector {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgba(0, 0, 0, 0.18) 0 6px,
        transparent 6px 12px
    );
    margin-top: 26px;
}

/* ── Features grid ──────────────────────────────────────────── */
.lp-features {
    padding: 0 64px 90px;
}

.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.lp-feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
}

.lp-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.lp-feature-card__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-feature-card__desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(42, 46, 51, 0.65);
    font-weight: 500;
}

/* ── Pricing ────────────────────────────────────────────────── */
.lp-pricing {
    padding: 90px 64px 110px;
    background: #faf3ec;
}

.lp-pricing__header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-pricing__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.lp-pricing__subtitle {
    font-size: 15px;
    color: rgba(42, 46, 51, 0.65);
    font-weight: 500;
    margin: 0;
}

.lp-pricing__cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
}

.lp-plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 340px;
    padding: 32px 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-plan-card--highlight {
    background: #fffdf9;
    border: 2px solid #2f5c56;
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.lp-plan-card__name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-plan-card__tagline {
    font-size: 14px;
    color: rgba(42, 46, 51, 0.6);
    font-weight: 500;
    margin-bottom: 20px;
}

.lp-plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.lp-plan-card__price-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.lp-plan-card__price-period {
    font-size: 14px;
    color: rgba(42, 46, 51, 0.55);
    font-weight: 600;
}

.lp-plan-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-plan-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: none;
}

/* ── Footer CTA ─────────────────────────────────────────────── */
.lp-footer-cta {
    padding: 70px 64px;
    text-align: center;
}

.lp-footer-cta__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.lp-footer {
    padding: 28px 64px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer__copy {
    font-size: 13px;
    color: rgba(42, 46, 51, 0.6);
    font-weight: 500;
}

.lp-footer__phone {
    font-size: 13px;
    color: rgba(42, 46, 51, 0.6);
    font-weight: 600;
}

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .lp-nav,
    .lp-hero,
    .lp-steps,
    .lp-features,
    .lp-pricing,
    .lp-footer-cta,
    .lp-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .lp-hero__title {
        font-size: 38px;
    }

    .lp-steps__row {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .lp-step {
        flex: none;
        justify-content: center;
    }

    .lp-step__connector {
        display: none;
    }

    .lp-features__grid {
        grid-template-columns: 1fr;
    }

    .lp-pricing__cards {
        flex-direction: column;
        align-items: center;
    }

    .lp-plan-card--highlight {
        transform: none;
    }
}
