.home-page {
    position: relative;
    --home-bg: #f6f3ff;
    --home-surface: rgba(255, 255, 255, 0.86);
    --home-surface-strong: #ffffff;
    --home-border: rgba(103, 61, 230, 0.12);
    --home-border-strong: rgba(103, 61, 230, 0.22);
    --home-ink: #160f2f;
    --home-copy: #564876;
    --home-muted: #7f7397;
    --home-shadow: 0 24px 60px rgba(26, 16, 51, 0.10);
    --home-shadow-strong: 0 30px 70px rgba(91, 33, 182, 0.18);
    --home-radius-lg: 28px;
    --home-radius-md: 22px;
    --home-radius-sm: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.14), transparent 28rem),
        radial-gradient(circle at 100% 8%, rgba(217, 70, 239, 0.10), transparent 22rem),
        linear-gradient(180deg, #faf8ff 0%, var(--home-bg) 32%, #ffffff 100%);
    color: var(--home-ink);
}

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

/* Acessibilidade: atalho para o CTA principal (teclado) */
.home-skip-link {
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    z-index: 1080;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--home-ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(26, 16, 51, 0.25);
}

.home-skip-link:focus-visible {
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
    outline: 3px solid rgba(139, 92, 246, 0.65);
    outline-offset: 2px;
}

.home-shell {
    position: relative;
    z-index: 1;
}

.home-reveal {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    animation: home-fade-up .78s cubic-bezier(.2, .7, .2, 1) forwards;
    animation-delay: var(--home-delay, 0s);
}

.home-hero,
.home-section,
.home-stats,
.home-cta {
    position: relative;
}

.home-hero {
    overflow: clip;
    padding: clamp(2.8rem, 7vw, 5.4rem) 0 clamp(2.4rem, 5vw, 4.5rem);
}

.home-hero::before,
.home-cta::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}

.home-hero::before {
    width: 18rem;
    height: 18rem;
    top: 3rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(103, 61, 230, 0.20) 0%, rgba(103, 61, 230, 0) 72%);
}

.home-kicker,
.home-section-overline {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    width: fit-content;
    margin-bottom: 1rem;
    padding: .5rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.08);
    color: var(--primary-on-light);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-kicker::before,
.home-section-overline::before {
    content: "";
    width: .52rem;
    height: .52rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.home-section-overline--light {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
}

.home-title {
    max-width: 13ch;
    margin: 0 0 1rem;
    font-size: clamp(2.3rem, 6vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 800;
    color: var(--home-ink);
    text-wrap: balance;
}

.home-title span {
    background: linear-gradient(135deg, var(--primary) 0%, #d946ef 55%, #7c3aed 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-lead,
.home-section-subtitle,
.home-feature-text,
.home-dashboard-text,
.home-cta-text {
    color: var(--home-copy);
    line-height: 1.72;
}

.home-lead {
    max-width: 60ch;
    margin: 0 0 1.6rem;
    font-size: 1.02rem;
}

.home-hero-actions,
.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.home-btn {
    min-height: 3.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .95rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, border-color .2s ease, background-color .2s ease;
}

.home-btn i {
    transition: transform .2s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn:hover i {
    transform: translateX(2px);
}

.home-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 18px 32px rgba(var(--primary-rgb), 0.26);
}

.home-btn-primary:hover,
.home-btn-primary:focus-visible {
    color: #fff;
    filter: brightness(1.03);
}

.home-btn-secondary {
    border-color: rgba(var(--primary-rgb), 0.20);
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary-on-light);
    box-shadow: 0 12px 26px rgba(26, 16, 51, 0.06);
}

.home-btn-secondary:hover,
.home-btn-secondary:focus-visible {
    color: var(--primary-on-light-strong);
    border-color: rgba(var(--primary-rgb), 0.34);
    background: #fff;
}

.home-btn-outline {
    width: 100%;
    margin-top: auto;
    border-color: rgba(var(--primary-rgb), 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-on-light);
    box-shadow: 0 12px 26px rgba(26, 16, 51, 0.06);
}

.home-btn-outline:hover,
.home-btn-outline:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    border-color: transparent;
}

.home-btn-cta {
    background: #fff;
    color: #5b21b6;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.home-btn-cta:hover,
.home-btn-cta:focus-visible {
    color: #4c1d95;
}

/* Hero — CTA principal com hierarquia (conversão) */
.home-btn-hero-primary {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 3.65rem;
    box-shadow: 0 22px 40px rgba(var(--primary-rgb), 0.32);
}

.home-btn-hero-primary__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 0;
}

.home-btn-hero-primary__text {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.home-btn-hero-primary__hint {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.92;
}

@media (min-width: 576px) {
    .home-btn-hero-primary {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: center;
        gap: 0.75rem;
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }

    .home-btn-hero-primary__stack {
        align-items: flex-start;
    }

    .home-btn-hero-primary__icon {
        font-size: 1.35rem;
    }
}

.home-btn-hero-secondary {
    font-weight: 700;
}

.home-btn-plan-cta {
    font-weight: 800;
    min-height: 3.15rem;
}

.home-btn-cta-footer {
    min-height: 3.35rem;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-proof-list {
    display: grid;
    gap: .75rem;
    margin: 1.5rem 0 0;
    padding: 0;
}

.home-proof-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--home-copy);
    font-weight: 600;
}

.home-proof-list i {
    color: #16a34a;
    margin-top: .12rem;
}

.home-signal-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.home-signal-card,
.home-stat-card,
.home-feature-card,
.home-plan-card {
    border: 1px solid var(--home-border);
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(12px);
}

.home-signal-card {
    padding: 1rem 1.05rem;
    border-radius: var(--home-radius-sm);
}

.home-signal-label {
    display: block;
    margin-bottom: .28rem;
    color: var(--home-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-signal-value {
    display: block;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--home-ink);
}

.home-dashboard-card {
    position: relative;
    padding: .9rem;
    border-radius: 32px;
    border: 1px solid var(--home-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.30));
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(14px);
}

.home-dashboard-card::before,
.home-feature-card::before,
.home-plan-card::before,
.home-stat-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-dashboard-glow {
    position: absolute;
    inset: 8% 5%;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.30) 0%, transparent 66%);
    opacity: .88;
    pointer-events: none;
}

.home-dashboard-window {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 26px;
    background: var(--home-surface-strong);
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.12);
}

.home-dashboard-topbar {
    display: flex;
    gap: .45rem;
    padding: .95rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, #faf7ff 0%, #f5f1ff 100%);
}

.home-dashboard-topbar span {
    width: .7rem;
    height: .7rem;
    border-radius: 999px;
}

.home-dashboard-topbar span:nth-child(1) { background: #fda4af; }
.home-dashboard-topbar span:nth-child(2) { background: #fcd34d; }
.home-dashboard-topbar span:nth-child(3) { background: #86efac; }

.home-dashboard-body {
    display: grid;
    gap: 1.25rem;
    padding: 1.4rem;
}

.home-dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    margin-bottom: .85rem;
    padding: .38rem .72rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-on-light);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-dashboard-title {
    margin: 0 0 .55rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.06;
    letter-spacing: -.03em;
    font-weight: 800;
    color: var(--home-ink);
    text-wrap: balance;
}

.home-dashboard-text {
    margin: 0;
}

.home-kpi-grid {
    display: grid;
    gap: .9rem;
}

.home-kpi-card {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.10);
    background: linear-gradient(180deg, #ffffff 0%, #f7f5ff 100%);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-kpi-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.62) 50%, transparent 100%);
    transform: translateX(-140%);
    animation: home-shimmer 4.8s ease-in-out infinite;
    animation-delay: var(--home-shimmer-delay, 0s);
    pointer-events: none;
}

.home-kpi-card:nth-child(1) { --home-shimmer-delay: .25s; }
.home-kpi-card:nth-child(2) { --home-shimmer-delay: .85s; }
.home-kpi-card:nth-child(3) { --home-shimmer-delay: 1.45s; }

.home-kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.18);
    box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.10);
}

.home-kpi-card--highlight {
    border-color: rgba(34, 197, 94, 0.18);
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.96));
}

.home-kpi-label {
    display: block;
    margin-bottom: .3rem;
    color: var(--home-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-kpi-value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--home-ink);
}

.home-kpi-note {
    display: block;
    margin-top: .55rem;
    color: var(--home-copy);
    font-size: .84rem;
}

.home-metrics-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.home-metric-pill {
    display: inline-flex;
    flex-direction: column;
    gap: .12rem;
    min-width: 9rem;
    padding: .85rem .95rem;
    border-radius: 18px;
    background: #f8f7ff;
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.home-metric-pill span {
    color: var(--home-muted);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-metric-pill strong {
    color: var(--home-ink);
    font-size: .98rem;
}

.home-stats,
.home-section {
    padding: clamp(2.6rem, 6vw, 4.8rem) 0;
}

/* Performance: pintar seções abaixo da dobra com menor prioridade (sem afetar hero) */
.home-stats,
.home-section,
.home-cta {
    content-visibility: auto;
    contain-intrinsic-size: 1px 480px;
}

.home-stats {
    background: rgba(255, 255, 255, 0.56);
    border-top: 1px solid rgba(var(--primary-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.home-section--muted {
    background: linear-gradient(180deg, #faf8ff 0%, #f3efff 100%);
}

.home-section-head {
    max-width: 760px;
    margin-bottom: 2rem;
}

.home-section-head--center {
    margin-inline: auto;
    text-align: center;
}

.home-section-title,
.home-cta-title {
    margin: 0;
    font-size: clamp(1.7rem, 3.8vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 800;
    color: var(--home-ink);
    text-wrap: balance;
}

.home-section-subtitle {
    margin: 1rem auto 0;
    max-width: 64ch;
    font-size: 1rem;
}

.home-stat-card,
.home-feature-card,
.home-plan-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.home-stat-card {
    display: grid;
    gap: .35rem;
    justify-items: center;
    padding: 1.2rem 1rem;
    border-radius: var(--home-radius-md);
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-stat-card:hover,
.home-feature-card:hover,
.home-plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--home-border-strong);
    box-shadow: var(--home-shadow-strong);
}

.home-stat-value {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--home-ink);
}

.home-stat-label {
    color: var(--home-copy);
    font-weight: 600;
}

.home-feature-card {
    padding: 1.45rem;
    border-radius: var(--home-radius-lg);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(217, 70, 239, 0.10));
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 14px 26px rgba(var(--primary-rgb), 0.16);
}

.home-feature-title,
.home-plan-title {
    margin: 0 0 .6rem;
    font-size: 1.2rem;
    line-height: 1.18;
    letter-spacing: -.02em;
    font-weight: 800;
    color: var(--home-ink);
}

.home-feature-text {
    margin: 0;
    font-size: .96rem;
}

.home-plan-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.55rem;
    border-radius: var(--home-radius-lg);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-plan-card--featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 255, 0.98));
}

.home-plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: .36rem .7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1f2937;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-plan-badge--promo {
    max-width: min(100%, 11.5rem);
    text-align: center;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: .02em;
    font-size: .68rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.35);
}

.home-plan-badge--intro {
    max-width: min(100%, 12rem);
    text-align: center;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: .04em;
    font-size: .68rem;
    font-weight: 800;
    color: #312e81;
    background: linear-gradient(135deg, rgba(199, 210, 254, 0.95), rgba(224, 231, 255, 0.98));
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
}

.home-plan-card--intro-promo {
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: 0 18px 42px rgba(79, 70, 229, 0.1);
}

.home-plan-card--start-promo {
    border-color: rgba(220, 38, 38, 0.28);
    box-shadow: 0 18px 40px rgba(220, 38, 38, 0.12);
}

.home-plan-intro-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: .5rem .6rem;
    margin: 0 0 .55rem;
    padding: .62rem .78rem;
    border-radius: 14px;
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    font-size: .84rem;
    line-height: 1.45;
    color: var(--home-copy);
}

.home-plan-intro-pill {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    flex-shrink: 0;
    padding: .2rem .52rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-on-light);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-plan-intro-copy {
    flex: 1 1 12rem;
    margin: 0;
    font-weight: 600;
    color: var(--home-ink);
}

.home-plan-deal-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: .55rem .65rem;
    margin: 0 0 .55rem;
    padding: .65rem .78rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.11), rgba(234, 88, 12, 0.07));
    border: 1px solid rgba(220, 38, 38, 0.22);
    font-size: .84rem;
    line-height: 1.45;
    color: var(--home-ink);
}

.home-plan-deal-pill {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    flex-shrink: 0;
    padding: .22rem .58rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-plan-deal-pill i {
    font-size: .78rem;
}

.home-plan-deal-copy {
    flex: 1 1 12rem;
    margin: 0;
    color: var(--home-copy);
    font-weight: 600;
}

.home-plan-deal-copy s {
    color: var(--home-ink);
    font-weight: 700;
}

.home-plan-kicker {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    width: fit-content;
    margin-bottom: .55rem;
    padding: .35rem .68rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-on-light);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-plan-kicker::before {
    content: "";
    width: .42rem;
    height: .42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #d946ef);
}

.home-plan-subtitle,
.home-plan-price-detail {
    margin: 0;
    color: var(--home-copy);
}

.home-plan-price {
    display: block;
    margin-bottom: .35rem;
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--home-ink);
}

.home-plan-list {
    display: grid;
    gap: .72rem;
    margin: 0;
    padding: 0;
}

.home-plan-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding-bottom: .72rem;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
    color: var(--home-copy);
}

.home-plan-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-plan-list i {
    color: #16a34a;
    margin-top: .16rem;
}

.home-plan-list li.is-disabled {
    color: #8d84a3;
}

.home-plan-list li.is-disabled i {
    color: #dc2626;
}

.home-cta {
    overflow: clip;
    padding: clamp(2.8rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #160f2f 0%, #341a63 55%, #5b21b6 100%);
}

.home-cta::before {
    width: 19rem;
    height: 19rem;
    right: -6rem;
    bottom: -7rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
}

.home-cta-panel {
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.18);
}

.home-cta-title {
    color: #fff;
}

.home-cta-text {
    max-width: 58ch;
    margin: .95rem 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.home-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.home-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .78rem .95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-weight: 600;
}

.home-contact-chip:hover,
.home-contact-chip:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.home-btn:focus-visible,
.home-contact-chip:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.28);
    outline-offset: 2px;
}

@keyframes home-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes home-shimmer {
    0%, 72%, 100% {
        transform: translateX(-140%);
    }

    84% {
        transform: translateX(140%);
    }
}

@media (min-width: 768px) {
    .home-proof-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-cta-panel {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, .85fr);
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .home-title {
        max-width: 14ch;
    }

    .home-signal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        padding-top: 2.25rem;
    }

    .home-title {
        max-width: none;
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .home-hero-actions,
    .home-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-btn {
        width: 100%;
    }

    .home-dashboard-card,
    .home-dashboard-window,
    .home-feature-card,
    .home-plan-card,
    .home-stat-card,
    .home-cta-panel {
        border-radius: 24px;
    }

    .home-dashboard-body,
    .home-feature-card,
    .home-plan-card {
        padding: 1.2rem;
    }

    .home-plan-badge {
        position: static;
        width: fit-content;
        margin-bottom: .2rem;
    }

    .home-metrics-row {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-reveal,
    .home-kpi-card::after {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .home-btn,
    .home-btn i,
    .home-kpi-card,
    .home-stat-card,
    .home-feature-card,
    .home-plan-card {
        transition: none;
    }
}

/* Modal oferta Start — coluna única, minimalista, mobile-first */
.home-oferta-modal__dialog {
    width: min(100%, 26rem);
    margin: 0.5rem auto;
}

@media (min-width: 576px) {
    .home-oferta-modal__dialog {
        margin: 1rem auto;
    }
}

.home-oferta-modal__sheet {
    position: relative;
    border-radius: clamp(16px, 3.5vw, 22px);
    overflow: hidden;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    box-shadow: 0 28px 64px rgba(26, 16, 51, 0.22);
}

.home-oferta-modal__glow {
    position: absolute;
    inset: -40% -20% auto auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.28) 0%, rgba(103, 61, 230, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.home-oferta-modal__sheet .modal-body {
    z-index: 1;
}

.home-oferta-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    opacity: 0.9;
}

.home-oferta-modal__hero {
    position: relative;
    padding: 2.35rem 1.15rem 1.25rem;
    background: linear-gradient(150deg, #160f2f 0%, #2d1a5c 45%, #5b21b6 100%);
}

@media (min-width: 576px) {
    .home-oferta-modal__hero {
        padding: 2.5rem 1.5rem 1.35rem;
    }
}

.home-oferta-modal__kicker {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
}

.home-oferta-modal__headline {
    margin-top: 0.35rem;
    font-size: clamp(1.35rem, 4.2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.home-oferta-modal__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem 0.65rem;
    margin-top: 1rem;
}

.home-oferta-modal__price-was {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.82;
}

.home-oferta-modal__price-was s {
    text-decoration-thickness: 2px;
}

.home-oferta-modal__price-sep {
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    margin: 0 0.1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    vertical-align: middle;
    align-self: center;
}

@media (min-width: 400px) {
    .home-oferta-modal__price-sep {
        width: 1px;
        height: 1.25rem;
        border-radius: 0;
        margin: 0 0.15rem;
    }
}

.home-oferta-modal__price-now {
    font-size: clamp(1.65rem, 6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.home-oferta-modal__price-unit {
    font-size: 0.48em;
    font-weight: 700;
    opacity: 0.85;
    margin-left: 0.06em;
}

.home-oferta-modal__save {
    margin-top: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0.88;
}

.home-oferta-modal__panel {
    padding: 1.1rem 1.15rem 1.15rem;
    background: #fff;
}

@media (min-width: 576px) {
    .home-oferta-modal__panel {
        padding: 1.2rem 1.35rem 1.3rem;
    }
}

.home-oferta-modal__note {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.home-oferta-modal__bar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

@media (min-width: 576px) {
    .home-oferta-modal__bar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem 1rem;
    }

    .home-oferta-modal__check {
        flex: 1 1 12rem;
        min-width: 0;
    }

    .home-oferta-modal__actions {
        flex: 0 1 auto;
        justify-content: flex-end;
    }
}

.home-oferta-modal__check .form-check-label {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
}

.home-oferta-modal__actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 576px) {
    .home-oferta-modal__actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        width: auto;
        gap: 0.5rem;
    }
}

.home-oferta-modal__ghost {
    min-height: 2.75rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #fff;
}

.home-oferta-modal__ghost:hover,
.home-oferta-modal__ghost:focus-visible {
    color: #334155;
    border-color: #94a3b8;
    background: #f8fafc;
}

.home-oferta-modal__cta {
    min-height: 2.75rem;
    flex: 1 1 auto;
    justify-content: center;
    font-weight: 800;
}

@media (min-width: 576px) {
    .home-oferta-modal__cta {
        flex: 0 1 auto;
        min-width: 8.5rem;
    }
}

.home-oferta-modal .modal-body .home-btn-primary {
    min-height: 2.75rem;
}
