/* AgendaJá Landing — tema escuro premium */

:root {
    --ld-bg: #06060a;
    --ld-bg-elevated: #0f0f14;
    --ld-bg-card: #14141c;
    --ld-border: rgba(255, 255, 255, 0.08);
    --ld-text: #f4f4f5;
    --ld-text-muted: #a1a1aa;
    --ld-emerald: #10b981;
    --ld-emerald-dim: rgba(16, 185, 129, 0.15);
    --ld-wa: #25d366;
    --ld-gold: #f59e0b;
    --ld-gold-dim: rgba(245, 158, 11, 0.12);
    --ld-violet: #8b5cf6;
    --ld-radius: 1.25rem;
    --ld-font: 'Outfit', system-ui, sans-serif;
}

.landing-body {
    font-family: var(--ld-font);
    background: var(--ld-bg);
    color: var(--ld-text);
    -webkit-font-smoothing: antialiased;
}

/* Bootstrap .text-muted é escuro demais no tema landing */
.landing-body .text-muted {
    color: var(--ld-text-muted) !important;
}

.landing-body .ld-module p,
.landing-body .ld-module .small {
    color: var(--ld-text-muted);
}

/* Nav */
.landing-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(6, 6, 10, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ld-border);
}

.landing-nav .nav-link {
    color: var(--ld-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.15s;
}

.landing-nav .nav-link:hover {
    color: var(--ld-text);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--ld-text) !important;
    font-size: 1.2rem;
    font-weight: 500;
}

.landing-brand strong {
    color: var(--ld-emerald);
    font-weight: 800;
}

.landing-brand-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ld-emerald), #059669);
    border-radius: 0.65rem;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.landing-toggler {
    border-color: var(--ld-border);
    filter: invert(1);
}

.btn-landing-primary {
    background: linear-gradient(135deg, var(--ld-emerald) 0%, #059669 100%);
    border: none;
    color: #fff !important;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-landing-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.45);
    color: #fff;
}

.btn-landing-ghost {
    background: transparent;
    border: 1px solid var(--ld-border);
    color: var(--ld-text) !important;
    font-weight: 600;
    border-radius: 999px;
}

.btn-landing-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ld-text) !important;
}

.btn-landing-outline {
    background: transparent;
    border: 2px solid var(--ld-emerald);
    color: var(--ld-emerald) !important;
    font-weight: 700;
    border-radius: 999px;
}

.btn-landing-outline:hover {
    background: var(--ld-emerald-dim);
    color: var(--ld-emerald) !important;
}

.btn-landing-white {
    background: #fff;
    color: #111 !important;
    font-weight: 700;
    border-radius: 999px;
    border: none;
}

.btn-landing-white:hover {
    background: #f4f4f5;
    color: #111 !important;
}

/* CTAs dos cards de plano */
.ld-price-card .btn {
    margin-top: auto;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.btn-landing-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ld-border);
    color: var(--ld-text) !important;
    font-weight: 700;
    border-radius: 999px;
    transition: background 0.15s, border-color 0.15s;
}

.btn-landing-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff !important;
}

.ld-price-card--featured .btn-landing-white {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ld-price-card--free .btn-landing-primary {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

/* Hero */
.ld-hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.ld-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(16, 185, 129, 0.22), transparent),
        radial-gradient(ellipse 50% 40% at 90% 50%, rgba(139, 92, 246, 0.12), transparent),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(245, 158, 11, 0.08), transparent);
    pointer-events: none;
}

.ld-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
    pointer-events: none;
}

.ld-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--ld-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ld-text-muted);
}

.ld-pill--green {
    border-color: rgba(16, 185, 129, 0.35);
    background: var(--ld-emerald-dim);
    color: var(--ld-emerald);
}

.ld-hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 1.25rem 0;
}

.ld-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--ld-emerald) 0%, #6ee7b7 50%, var(--ld-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ld-hero-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--ld-text-muted);
    max-width: 32rem;
}

.ld-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ld-border);
}

.ld-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--ld-text-muted);
}

.ld-trust-item i {
    color: var(--ld-emerald);
    font-size: 1.1rem;
}

/* Hero mockups */
.ld-mockup-stack {
    position: relative;
    min-height: 380px;
}

.ld-mockup {
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.ld-mockup--agenda {
    position: relative;
    z-index: 2;
}

.ld-mockup--wa {
    position: absolute;
    bottom: -8%;
    left: -6%;
    width: 58%;
    z-index: 3;
    animation: ld-float 5s ease-in-out infinite;
}

.ld-mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid var(--ld-border);
    font-size: 0.75rem;
    color: var(--ld-text-muted);
}

.ld-mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3f3f46;
}

.ld-mockup-body {
    padding: 1rem;
}

.ld-wa-bubble {
    max-width: 88%;
    padding: 0.55rem 0.85rem;
    border-radius: 0.85rem;
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
    line-height: 1.4;
}

.ld-wa-bubble--in {
    background: #1f2c34;
    border-bottom-left-radius: 0.2rem;
}

.ld-wa-bubble--out {
    background: #005c4b;
    margin-left: auto;
    border-bottom-right-radius: 0.2rem;
}

.ld-wa-bubble small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 0.2rem;
}

@keyframes ld-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections */
.ld-section {
    padding: 5rem 0;
}

.ld-section--alt {
    background: var(--ld-bg-elevated);
    border-top: 1px solid var(--ld-border);
    border-bottom: 1px solid var(--ld-border);
}

.ld-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ld-emerald);
    margin-bottom: 0.75rem;
}

.ld-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ld-subtitle {
    color: var(--ld-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 36rem;
}

.ld-subtitle.mx-auto {
    max-width: 42rem;
}

/* Problem band */
.ld-problem {
    text-align: center;
    padding: 3rem 0;
}

.ld-problem q {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    font-style: italic;
    color: var(--ld-text-muted);
    quotes: none;
    max-width: 40rem;
    margin: 0 auto 1rem;
}

/* Stats */
.ld-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.ld-stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
}

.ld-stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ld-emerald);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.ld-stat-card span {
    font-size: 0.8rem;
    color: var(--ld-text-muted);
}

/* Module cards */
.ld-module {
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s, transform 0.2s;
}

.ld-module:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-3px);
}

.ld-module-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--ld-emerald);
    margin-bottom: 0.75rem;
}

.ld-module-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.ld-module-icon--emerald { background: var(--ld-emerald-dim); color: var(--ld-emerald); }
.ld-module-icon--wa { background: rgba(37, 211, 102, 0.15); color: var(--ld-wa); }
.ld-module-icon--gold { background: var(--ld-gold-dim); color: var(--ld-gold); }
.ld-module-icon--violet { background: rgba(139, 92, 246, 0.15); color: var(--ld-violet); }
.ld-module-icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.ld-module-icon--pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.ld-module-icon--teal { background: rgba(20, 184, 166, 0.15); color: #14b8a6; }
.ld-module-icon--orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }

.ld-module h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ld-text);
}

.ld-module-text {
    color: var(--ld-text-muted);
    line-height: 1.55;
}

.ld-module ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.ld-module li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: var(--ld-text-muted);
    line-height: 1.45;
}

.ld-module li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ld-emerald);
    font-weight: 700;
    font-size: 0.75rem;
}

/* WhatsApp compare */
.ld-wa-hero {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, var(--ld-bg-card) 50%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.ld-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}

.ld-compare-table th,
.ld-compare-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--ld-border);
}

.ld-compare-table th {
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.ld-compare-table th:first-child,
.ld-compare-table td:first-child {
    text-align: left;
}

.ld-compare-table th.col-basico { color: var(--ld-emerald); }
.ld-compare-table th.col-completo { color: var(--ld-wa); }

.ld-compare-table .check-yes { color: var(--ld-emerald); }
.ld-compare-table .check-no { color: #52525b; }

.ld-plan-wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.ld-plan-wa-badge--basico {
    background: var(--ld-emerald-dim);
    color: var(--ld-emerald);
}

.ld-plan-wa-badge--completo {
    background: rgba(37, 211, 102, 0.15);
    color: var(--ld-wa);
}

/* Pricing */
.ld-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.ld-pricing-grid--tiers {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding-top: 1.25rem;
}

@media (min-width: 992px) {
    .ld-pricing-grid--tiers {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .ld-pricing-grid--tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ld-pill--outline {
    background: transparent;
    border: 1px solid var(--ld-border);
    color: var(--ld-text-muted);
}

.ld-price-card--free {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.07) 0%, var(--ld-bg-card) 45%);
}

.ld-price-badge--free {
    background: linear-gradient(135deg, var(--ld-emerald), #059669);
    color: #fff;
}

.ld-price-value--free {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--ld-emerald);
}

.ld-pricing-footnote {
    font-size: 0.85rem;
    color: var(--ld-text-muted);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Switch de periodicidade (Mensal / Semestral / Anual) */
.ld-billing-switch-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2.75rem;
    padding: 0 0.5rem;
    position: relative;
    z-index: 5;
}

.landing-body .ld-billing-switch {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.3rem;
    max-width: min(100%, 36rem);
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.landing-body .ld-billing-switch__glider {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    height: calc(100% - 0.6rem);
    width: 0;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.landing-body .ld-billing-switch__opt {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 0;
    padding: 0.7rem 0.85rem;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--ld-text-muted) !important;
    font-family: var(--ld-font);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.landing-body .ld-billing-switch__opt:hover:not(.is-active) {
    color: var(--ld-text) !important;
}

.landing-body .ld-billing-switch__opt.is-active {
    color: #111 !important;
}

.landing-body .ld-billing-switch__opt:focus-visible {
    outline: 2px solid var(--ld-emerald);
    outline-offset: 2px;
}

.landing-body .ld-billing-switch__label {
    display: block;
}

.landing-body .ld-billing-switch__chip {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    line-height: 1.2;
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.landing-body .ld-billing-switch__opt.is-active .ld-billing-switch__chip {
    background: rgba(16, 185, 129, 0.16);
    color: #047857;
}

.landing-body .ld-billing-switch__chip--save {
    background: rgba(245, 158, 11, 0.22);
    color: #fcd34d;
}

.landing-body .ld-billing-switch__opt.is-active .ld-billing-switch__chip--save {
    background: rgba(245, 158, 11, 0.2);
    color: #b45309;
}

@media (max-width: 640px) {
    .landing-body .ld-billing-switch {
        flex-direction: column;
        border-radius: 1rem;
        max-width: 18rem;
    }

    .landing-body .ld-billing-switch__glider {
        display: none;
    }

    .landing-body .ld-billing-switch__opt {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.85rem 1rem;
    }

    .landing-body .ld-billing-switch__opt.is-active {
        background: rgba(255, 255, 255, 0.95) !important;
        color: #111 !important;
    }
}

.ld-price-note--trial {
    margin-top: -0.75rem;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    opacity: 0.85;
}

@media (max-width: 1199px) {
    .ld-price-card--featured {
        transform: none;
    }
}

.ld-price-card {
    position: relative;
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ld-price-card--featured {
    border-color: var(--ld-emerald);
    box-shadow: 0 0 0 1px var(--ld-emerald), 0 24px 48px rgba(16, 185, 129, 0.15);
    transform: scale(1.02);
}

.ld-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: linear-gradient(135deg, var(--ld-gold), #d97706);
    color: #111;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.ld-price-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.ld-price-tagline {
    font-size: 0.85rem;
    color: var(--ld-text-muted);
    margin-bottom: 1.25rem;
    min-height: 2.5rem;
}

.ld-price-value {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ld-price-value small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ld-text-muted);
}

.ld-price-note {
    font-size: 0.78rem;
    color: var(--ld-text-muted);
    margin-bottom: 1.5rem;
}

.ld-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.ld-price-features li {
    font-size: 0.85rem;
    color: var(--ld-text-muted);
    padding: 0.35rem 0 0.35rem 1.35rem;
    position: relative;
    line-height: 1.4;
}

.ld-price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ld-emerald);
    font-weight: 700;
}

/* Segments */
.ld-seg-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: 999px;
    text-decoration: none;
    color: var(--ld-text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: border-color 0.15s, background 0.15s;
}

.ld-seg-chip:hover {
    border-color: var(--seg-color, var(--ld-emerald));
    background: rgba(255, 255, 255, 0.03);
    color: var(--ld-text);
}

.ld-seg-chip span.emoji {
    font-size: 1.25rem;
}

/* Testimonials */
.ld-quote {
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    padding: 1.75rem;
    height: 100%;
}

.ld-quote p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ld-text-muted);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.ld-quote-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--ld-text);
}

.ld-quote-author span {
    font-size: 0.8rem;
    color: var(--ld-text-muted);
}

/* FAQ */
.ld-faq .accordion-item {
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.ld-faq .accordion-button {
    background: transparent;
    color: var(--ld-text);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none !important;
    padding: 1.1rem 1.25rem;
}

.ld-faq .accordion-button:not(.collapsed) {
    background: rgba(16, 185, 129, 0.06);
    color: var(--ld-emerald);
}

.ld-faq .accordion-button::after {
    filter: invert(0.7);
}

.ld-faq .accordion-body {
    color: var(--ld-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    padding: 0 1.25rem 1.25rem;
}

/* CTA final */
.ld-cta-final {
    background: linear-gradient(135deg, #065f46 0%, #047857 40%, #059669 100%);
    border-radius: 1.75rem;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ld-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 50%);
}

.ld-cta-final h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}

.ld-cta-final p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

/* Footer */
.landing-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--ld-border);
    margin-top: 2rem;
}

.landing-brand--footer {
    margin-bottom: 1rem;
}

.landing-footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ld-text);
    margin-bottom: 1rem;
}

.landing-footer-text {
    color: var(--ld-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.landing-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-links li {
    margin-bottom: 0.5rem;
}

.landing-footer-links a {
    color: var(--ld-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.landing-footer-links a:hover {
    color: var(--ld-emerald);
}

.landing-footer-divider {
    border-color: var(--ld-border);
    margin: 2.5rem 0 1.5rem;
}

.landing-footer-copy {
    font-size: 0.8rem;
    color: var(--ld-text-muted);
}

/* Est cards on dark */
.ld-est-card {
    display: block;
    padding: 1.25rem;
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius);
    text-decoration: none;
    color: var(--ld-text);
    transition: border-color 0.15s;
}

.ld-est-card:hover {
    border-color: var(--ld-emerald);
    color: var(--ld-text);
}

@media (max-width: 991px) {
    .ld-price-card--featured {
        transform: none;
    }

    .ld-mockup--wa {
        left: 0;
        width: 70%;
    }
}

@media (max-width: 575px) {
    .ld-section {
        padding: 3rem 0;
    }

    .ld-hero {
        padding: 2.5rem 0 3rem;
    }

    .ld-wa-hero {
        padding: 1.5rem;
    }
}

/* ——— Página por segmento (/para/{chave}) ——— */

.seg-hero {
    position: relative;
    padding: 2rem 0 3rem;
    overflow: hidden;
}

.seg-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 100%),
        linear-gradient(135deg, var(--seg-primary) 0%, transparent 60%);
    opacity: 0.95;
}

.seg-breadcrumb {
    font-size: 0.85rem;
    color: var(--ld-text-muted);
}

.seg-breadcrumb a {
    color: var(--ld-text-muted);
    text-decoration: none;
}

.seg-breadcrumb a:hover {
    color: var(--ld-emerald);
}

.seg-hero-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.seg-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ld-text-muted);
    max-width: 36rem;
    margin-bottom: 0;
}

.seg-meta {
    font-size: 0.9rem;
    color: var(--ld-text-muted);
}

.seg-meta i {
    color: var(--seg-primary);
}

.seg-emoji-badge {
    font-size: 6rem;
    line-height: 1;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
}

.seg-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seg-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--ld-border);
    font-size: 0.95rem;
    color: var(--ld-text-muted);
    line-height: 1.5;
}

.seg-benefit-list li i {
    color: var(--seg-primary, var(--ld-emerald));
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ——— Auth (login / register) ——— */

.auth-landing-shell {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 65px);
}

@media (min-width: 992px) {
    .auth-landing-shell {
        flex-direction: row;
        align-items: stretch;
    }
}

.auth-landing-aside {
    display: none;
    background: linear-gradient(135deg, #065f46 0%, #047857 40%, #0f172a 100%);
    color: #fff;
    padding: 3rem 2.5rem;
}

@media (min-width: 992px) {
    .auth-landing-aside {
        display: flex;
        flex: 1;
        align-items: center;
    }
}

.auth-landing-aside-inner {
    max-width: 28rem;
}

.auth-landing-aside h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.auth-landing-aside-lead {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.auth-landing-aside-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.auth-landing-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.auth-landing-aside-list i {
    color: #6ee7b7;
    margin-top: 0.15rem;
}

.auth-landing-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.25rem 0.75rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 576px) {
    .auth-landing-main {
        padding: 1.5rem 1rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (min-width: 992px) {
    .auth-landing-main {
        align-items: center;
        padding: 2rem 1rem 3rem;
    }
}

.auth-landing-card {
    width: 100%;
    max-width: 420px;
    background: var(--ld-bg-card);
    border: 1px solid var(--ld-border);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

@media (min-width: 576px) {
    .auth-landing-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1.15rem;
    }
}

@media (min-width: 992px) {
    .auth-landing-card {
        padding: 2rem;
        border-radius: 1.25rem;
    }
}

.auth-landing-card--wide {
    max-width: 560px;
}

.auth-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.auth-form-subtitle {
    color: var(--ld-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.auth-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--ld-text);
}

.auth-input {
    background: var(--ld-bg-elevated) !important;
    border: 1px solid var(--ld-border) !important;
    color: var(--ld-text) !important;
    border-radius: 0.65rem !important;
    padding: 0.65rem 0.85rem !important;
}

.auth-input:focus {
    border-color: var(--ld-emerald) !important;
    box-shadow: 0 0 0 3px var(--ld-emerald-dim) !important;
}

.auth-password-wrap {
    position: relative;
}

.auth-password-wrap .auth-input {
    padding-right: 2.75rem !important;
}

.auth-password-toggle {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--ld-text-muted);
    padding: 0.25rem;
    line-height: 1;
    cursor: pointer;
}

.auth-password-toggle:hover {
    color: var(--ld-emerald);
}

.auth-password-toggle:focus-visible {
    outline: 2px solid var(--ld-emerald);
    border-radius: 0.25rem;
}

.auth-password-rules {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
}

.auth-password-rules li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: var(--ld-text-muted);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.auth-password-rules li i {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.auth-password-rules li.is-valid {
    color: var(--ld-emerald);
}

.auth-password-rules li.is-invalid {
    color: #dc3545;
}

.auth-password-hint {
    font-size: 0.78rem;
    color: var(--ld-text-muted);
    margin-top: 0.35rem;
    line-height: 1.45;
}

@media (min-width: 480px) {
    .auth-password-hint {
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

.auth-alert {
    font-size: 0.9rem;
    border-radius: 0.65rem;
}

.auth-terms-block {
    border-top: 1px solid var(--ld-border);
    padding-top: 1.25rem;
}

.auth-terms-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-terms-intro {
    font-size: 0.88rem;
    color: var(--ld-text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.auth-terms-intro a,
.auth-check-body a {
    color: var(--ld-emerald);
    text-decoration: underline;
}

.auth-check-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    margin-bottom: 0.65rem;
    background: var(--ld-bg-elevated);
    border: 1px solid var(--ld-border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: border-color 0.15s;
}

.auth-check-card:hover {
    border-color: rgba(16, 185, 129, 0.35);
}

.auth-check-card--error {
    border-color: #f87171;
}

.auth-check-input {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--ld-emerald);
}

.auth-check-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.82rem;
    color: var(--ld-text-muted);
    line-height: 1.45;
}

.auth-check-body strong {
    color: var(--ld-text);
    font-size: 0.9rem;
}

.auth-field-error {
    color: #f87171;
    font-size: 0.82rem;
    margin: 0 0 0.5rem;
}

.auth-footer-link {
    font-size: 0.9rem;
    color: var(--ld-text-muted);
}

.auth-footer-link a {
    color: var(--ld-emerald);
    font-weight: 600;
}

#registerSubmit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 575.98px) {
    .auth-landing .landing-nav .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .auth-form-title {
        font-size: 1.35rem;
    }

    .auth-form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.15rem;
    }

    .auth-terms-block {
        padding-top: 1rem;
    }

    .auth-check-card {
        padding: 0.75rem 0.85rem;
        gap: 0.7rem;
    }

    .auth-check-body {
        font-size: 0.8rem;
    }

    .auth-check-body strong {
        font-size: 0.85rem;
    }

    .auth-landing .site-wa-float {
        right: auto !important;
        left: 16px !important;
        bottom: 16px !important;
        transform: none !important;
    }
}

/* ——— Páginas legais ——— */

.legal-doc h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.75rem 0 0.65rem;
    color: var(--ld-text);
}

.legal-doc h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--ld-text);
}

.legal-doc p {
    color: var(--ld-text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.legal-doc a:not(.btn) {
    color: var(--ld-emerald);
}

.landing-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--ld-bg-elevated);
    color: var(--ld-text-muted);
    transition: color 0.15s, background 0.15s;
}

.landing-footer-social a:hover {
    color: var(--ld-emerald);
    background: var(--ld-emerald-dim);
}

.landing-brand-logo {
    height: clamp(36px, 4.2vw, 42px);
    width: auto;
    max-width: min(280px, 72vw);
    margin-right: 0.15rem;
    display: block;
    object-fit: contain;
}

/* ——— Botão flutuante WhatsApp (site institucional) ——— */

.site-wa-float {
    position: fixed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
    line-height: 1;
}

.site-wa-float:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.site-wa-float--circle {
    border-radius: 50%;
}

.site-wa-float--rounded {
    border-radius: 14px;
}

.site-wa-float--pill {
    border-radius: 999px;
    padding-left: 1.1rem;
    padding-right: 1.25rem;
}

.site-wa-float--sm {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
}

.site-wa-float--sm.site-wa-float--pill {
    width: auto;
    height: auto;
    min-height: 48px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.site-wa-float--md {
    width: 56px;
    height: 56px;
    font-size: 1.55rem;
}

.site-wa-float--md.site-wa-float--pill {
    width: auto;
    height: auto;
    min-height: 56px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-wa-float--lg {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
}

.site-wa-float--lg.site-wa-float--pill {
    width: auto;
    height: auto;
    min-height: 64px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.site-wa-float__label {
    font-size: 0.9rem;
    white-space: nowrap;
}

.site-wa-float--pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #25d366;
    opacity: 0.45;
    animation: site-wa-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes site-wa-pulse {
    0% { transform: scale(1); opacity: 0.45; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Parceiros landing */
.lp-partners .lp-partners-lead-note {
    color: rgba(226, 232, 240, 0.86);
    font-size: 1.02rem;
    margin: 0 0 1.4rem;
    max-width: 44rem;
}

.lp-partners-hero .ld-hero-lead {
    max-width: 44rem;
}

.lp-partners-hero-stack {
    display: grid;
    gap: 1rem;
}

.lp-partners-card {
    background: rgba(8, 15, 31, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.25rem;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.25);
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.95rem;
    line-height: 1.55;
}

.lp-partners-card strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 700;
}

.lp-premium-highlight h3 {
    color: #fff;
}

.lp-partners-kicker {
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7dd3fc;
    margin-bottom: 0.55rem;
}

.lp-partners-card--journey ol {
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(226, 232, 240, 0.95);
    font-size: 0.92rem;
    line-height: 1.5;
}

.lp-partners-card--journey li + li {
    margin-top: 0.4rem;
}

.lp-partners-card--premium span {
    color: #10b981;
    font-weight: 700;
}

.lp-partners-card--premium > div {
    margin-top: 0.35rem;
    color: rgba(226, 232, 240, 0.9);
}

.lp-step-card,
.lp-audience-card,
.lp-progress-item,
.lp-premium-stat,
.lp-benefit-note,
.lp-final-cta {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.1rem;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 14px 44px rgba(15, 23, 42, 0.06);
}

.lp-step-number {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

/* Ícones à esquerda — módulos e passos */
.lp-partners .ld-module {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.1rem;
    row-gap: 0.35rem;
    align-items: start;
}

.lp-partners .ld-module-icon {
    grid-row: 1 / -1;
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.55rem;
    margin-bottom: 0;
    border-radius: 1rem;
}

.lp-partners .ld-module h3 {
    grid-column: 2;
    margin-bottom: 0.65rem;
}

.lp-partners .ld-module ul,
.lp-partners .ld-module p {
    grid-column: 2;
    margin-bottom: 0;
}

.lp-partners .lp-step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.lp-partners .lp-step-number {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 0.95rem;
    margin-bottom: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.lp-partners .lp-step-card__body {
    flex: 1;
    min-width: 0;
}

.lp-partners .lp-step-card__body h3 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.lp-partners .lp-step-card__body p {
    margin-bottom: 0;
}

.lp-step-card h3,
.lp-step-card p,
.lp-progress-item,
.lp-progress-item strong,
.lp-progress-item span,
.lp-premium-stat,
.lp-premium-stat strong,
.lp-premium-stat span,
.lp-audience-card,
.lp-benefit-note,
.lp-final-cta {
    color: #0f172a;
}

.lp-step-card p {
    color: #475569;
    line-height: 1.55;
}

.lp-partners .lp-progress-item span {
    color: #334155 !important;
    font-weight: 600;
}

.lp-partners .lp-progress-item strong {
    color: #0f172a !important;
}

.lp-partners .lp-premium-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 5rem;
    overflow: visible;
}

.lp-partners .lp-premium-stat strong {
    color: #0f172a !important;
    font-size: 1.05rem;
    line-height: 1.3;
}

.lp-partners .lp-premium-stat span {
    color: #475569 !important;
    line-height: 1.4;
}

.lp-final-cta .ld-title {
    color: #0f172a;
}

.lp-final-cta .ld-subtitle {
    color: #475569;
}

.lp-final-cta .btn-landing-ghost {
    border-color: rgba(15, 23, 42, 0.22);
    color: #0f172a !important;
}

.lp-final-cta .btn-landing-ghost:hover {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a !important;
}

.lp-benefit-note {
    background: #fff;
    border-color: rgba(16, 185, 129, 0.28);
}

.lp-partners .lp-benefit-note,
.lp-partners .lp-benefit-note strong {
    color: #0f172a !important;
}

.lp-progress-board {
    display: grid;
    gap: 0.85rem;
}

.lp-progress-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.lp-partners .lp-progress-item--premium {
    justify-content: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #065f46 0%, #047857 55%, #059669 100%);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.22);
}

.lp-partners .lp-progress-item__icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.16);
    color: #fef3c7;
    font-size: 1.35rem;
}

.lp-partners .lp-progress-item__copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.lp-partners .lp-progress-item--premium strong,
.lp-partners .lp-progress-item--premium span {
    color: #fff !important;
}

.lp-partners .lp-progress-item--premium span {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 600;
}

.lp-premium-panel {
    display: grid;
    gap: 1.2rem;
    overflow: visible;
}

.lp-premium-highlight {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 1.2rem;
    padding: 1.4rem;
}

.lp-premium-highlight p {
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.lp-premium-highlight .ld-pill {
    margin-bottom: 0.8rem;
}

.lp-audience-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    min-height: 3.5rem;
}

.lp-audience-card i {
    color: #10b981;
}

.lp-faq .accordion-item {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0.9rem;
}

.lp-partners .lp-faq .accordion-item {
    background: #fff;
}

.lp-partners .lp-faq .accordion-button {
    font-weight: 700;
    color: #0f172a !important;
    background: #fff;
    box-shadow: none !important;
}

.lp-partners .lp-faq .accordion-button:not(.collapsed) {
    background: rgba(16, 185, 129, 0.08);
    color: #065f46 !important;
}

.lp-partners .lp-faq .accordion-button::after {
    filter: none;
}

.lp-partners .lp-faq .accordion-body {
    color: #334155 !important;
    background: #fff;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 0 1.25rem 1.25rem;
}

.lp-final-cta {
    padding: 2rem 1.4rem;
}

.ld-module-icon--green { background: var(--ld-emerald-dim); color: var(--ld-emerald); }
.ld-module-icon--amber { background: var(--ld-gold-dim); color: var(--ld-gold); }
.ld-module-icon--purple { background: rgba(139, 92, 246, 0.15); color: var(--ld-violet); }

@media (max-width: 767.98px) {
    .lp-partners .lp-progress-item:not(.lp-progress-item--premium) {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-partners .ld-module-icon {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.35rem;
    }
}
