/* Landing v5 — estilos completos (funciona mesmo sem atualizar style.css) */

.landing-v5 {
    --lp-max: 1140px;
    --lp-pad: clamp(20px, 4vw, 32px);
    --lp-section-y: clamp(56px, 8vw, 96px);
    --lp-gap: 24px;
    --lp-border: rgba(255, 255, 255, 0.12);
    --lp-surface: rgba(255, 255, 255, 0.06);
    --lp-surface-2: rgba(15, 23, 42, 0.85);
}

.landing-v5 .lp-main {
    display: flex;
    flex-direction: column;
}

.landing-v5 .lp-container,
.landing-v5 .landing-container {
    width: 100%;
    max-width: var(--lp-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--lp-pad);
    padding-right: var(--lp-pad);
}

.landing-v5 .lp-section {
    padding-block: var(--lp-section-y);
    position: relative;
}

.landing-v5 .lp-section--tight {
    padding-block: clamp(32px, 5vw, 48px);
}

.landing-v5 .lp-section--divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--lp-max), 100% - var(--lp-pad) * 2);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-border), transparent);
}

/* Cabeçalhos */
.landing-v5 .lp-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 56px);
}

.landing-v5 .lp-head--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.landing-v5 .lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.landing-v5 .lp-eyebrow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.45);
    font-size: 0.7rem;
    color: #fff;
}

.landing-v5 .lp-head h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
}

.landing-v5 .lp-head p {
    font-size: 1.02rem;
    color: var(--slate-400);
    line-height: 1.65;
    margin: 0;
}

/* Header */
.landing-v5 .landing-header-inner {
    max-width: var(--lp-max);
}

.landing-v5 .landing-nav-desktop {
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
}

.landing-v5 .landing-nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.landing-v5 .landing-hero {
    padding-top: clamp(88px, 12vw, 120px);
}

.landing-v5 .landing-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-v5 .landing-pill-btn {
    border: none;
    background: inherit;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.landing-v5 .landing-pill-btn:hover {
    color: var(--gold);
}

.landing-v5 .lp-pill-icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(245, 158, 11, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Faixa de métricas + features (padrão unificado) */
.landing-v5 .lp-metrics-wrap {
    margin-top: 8px;
    padding-bottom: clamp(24px, 4vw, 40px);
}

.landing-v5 .lp-metrics-block + .lp-metrics-block {
    margin-top: 20px;
}

.landing-v5 .lp-metrics-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin: 0 0 12px 4px;
}

.landing-v5 .lp-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.landing-v5 .lp-metrics-row--4 {
    grid-template-columns: repeat(4, 1fr);
}

.landing-v5 .lp-metric-card,
.landing-v5 .lp-feature-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    min-width: 0;
}

.landing-v5 .lp-metric-card:hover,
.landing-v5 .lp-feature-chip:hover {
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.landing-v5 .lp-metric-icon,
.landing-v5 .lp-feature-chip-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.landing-v5 .lp-feature-chip-icon {
    width: 60px;
    height: 60px;
    font-size: 2.15rem;
}

.landing-v5 .lp-metric-body,
.landing-v5 .lp-feature-chip > div {
    min-width: 0;
}

.landing-v5 .lp-metric-body strong,
.landing-v5 .lp-feature-chip strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.landing-v5 .lp-feature-chip strong {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.landing-v5 .lp-metric-body span,
.landing-v5 .lp-feature-chip > div span {
    display: block;
    font-size: 0.78rem;
    color: var(--slate-500);
    font-weight: 600;
    line-height: 1.35;
}

.landing-v5 .landing-brands {
    border-block: 1px solid var(--lp-border);
    background: var(--lp-surface);
}

.landing-v5 .landing-brand-chip img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ===== 01 Benefícios — comparativo ===== */
.landing-v5 .lp-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.landing-v5 .landing-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.landing-v5 .landing-compare-card {
    display: block;
    width: 100%;
    border-radius: 22px;
    padding: 28px 26px;
    border: 1px solid var(--lp-border);
    box-sizing: border-box;
}

.landing-v5 .landing-compare-old {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(148, 163, 184, 0.2);
}

.landing-v5 .landing-compare-new {
    background: linear-gradient(160deg, rgba(245, 158, 11, 0.18) 0%, rgba(30, 41, 59, 0.9) 55%);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.landing-v5 .compare-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
}

.landing-v5 .compare-label-new {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.2);
}

.landing-v5 .landing-compare-card ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.landing-v5 .landing-compare-card li {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #e2e8f0;
    padding-left: 28px;
    position: relative;
}

.landing-v5 .landing-compare-old li {
    color: var(--slate-400);
}

.landing-v5 .landing-compare-old li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: #f87171;
    font-weight: 800;
}

.landing-v5 .landing-compare-new li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #34d399;
    font-weight: 800;
}

.landing-v5 .compare-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

/* Destaques 4 colunas */
.landing-v5 .lp-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}

.landing-v5 .lp-highlight-card {
    padding: 22px 18px;
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
}

.landing-v5 .lp-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.landing-v5 .lp-highlight-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.landing-v5 .lp-highlight-card p {
    font-size: 0.82rem;
    color: var(--slate-500);
    margin: 0;
    line-height: 1.5;
}

/* ===== 03 Como funciona — passos em cards ===== */
.landing-v5 .lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    width: 100%;
}

.landing-v5 .lp-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    z-index: 0;
    pointer-events: none;
}

.landing-v5 .lp-step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 28px 22px 24px;
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    box-sizing: border-box;
    min-width: 0;
}

.landing-v5 .lp-step-marker {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.25), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(245, 158, 11, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fcd34d;
}

.landing-v5 .lp-step-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
    line-height: 1;
}

.landing-v5 .lp-step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.landing-v5 .lp-step-card p {
    font-size: 0.88rem;
    color: var(--slate-400);
    line-height: 1.55;
    margin: 0 0 16px;
}

.landing-v5 .lp-step-card .btn {
    width: 100%;
    max-width: 220px;
}

/* ===== 04 Planos + FAQ ===== */
.landing-v5 .lp-split-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
    width: 100%;
}

.landing-v5 .lp-split-plan .lp-head,
.landing-v5 .lp-split-faq .lp-head {
    margin-bottom: 16px;
}

.landing-v5 .lp-pricing-box,
.landing-v5 .landing-pricing-card {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 24px 22px 22px;
    text-align: left;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(245, 158, 11, 0.14) 0%, rgba(15, 23, 42, 0.96) 42%);
    border: 1px solid rgba(245, 158, 11, 0.32);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
}

.landing-v5 .landing-pricing-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.landing-v5 .lp-pricing-tagline {
    font-size: 0.85rem;
    color: var(--slate-400);
    margin: 0 0 14px;
    font-weight: 600;
}

.landing-v5 .lp-pricing-price-block {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.landing-v5 .landing-pricing-price .price-amount {
    display: block;
    font-size: clamp(2.1rem, 4vw, 2.65rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.landing-v5 .landing-pricing-price .price-period {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--slate-400);
    font-weight: 600;
}

.landing-v5 .lp-pricing-after {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: var(--slate-300);
    font-weight: 600;
}

.landing-v5 .lp-pricing-after strong {
    color: var(--gold);
    font-size: 0.95rem;
}

.landing-v5 .landing-pricing-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.landing-v5 .lp-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 0;
}

.landing-v5 .lp-pricing-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.22);
}

.landing-v5 .lp-pricing-feature-text {
    font-size: 0.86rem;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.3;
}

.landing-v5 .landing-pricing-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    padding: 13px 20px;
    font-size: 0.92rem;
}

.landing-v5 .landing-pricing-note {
    margin: 12px 0 0;
    font-size: 0.75rem;
    color: var(--slate-500);
    text-align: center;
    line-height: 1.4;
}

.landing-v5 .lp-split-faq .landing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.landing-v5 .landing-faq-item {
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.landing-v5 .landing-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.landing-v5 .landing-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.landing-v5 .landing-faq-icon::before {
    width: 10px;
    top: 10px;
    left: 5px;
}

.landing-v5 .landing-faq-icon::after {
    height: 10px;
    top: 6px;
    left: 9px;
}

.landing-v5 .landing-faq-a p {
    padding: 0 16px 14px;
    margin: 0;
    color: var(--slate-400);
    font-size: 0.84rem;
    line-height: 1.55;
}

.landing-v5 .landing-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.landing-v5 .landing-faq-item.is-open {
    border-color: rgba(245, 158, 11, 0.35);
}

.landing-v5 .landing-faq-item.is-open .landing-faq-a {
    max-height: 180px;
}

.landing-v5 .landing-cta-box {
    padding: 36px 28px;
    border-radius: 22px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1) 0%, rgba(15, 23, 42, 0.95) 55%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.landing-v5 .landing-cta-box h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 8px;
}

.landing-v5 .landing-cta-box p {
    font-size: 0.88rem;
    color: var(--slate-400);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.landing-v5 .landing-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.landing-v5 .landing-cta-actions .btn-lg {
    min-width: auto;
    padding: 12px 20px;
    font-size: 0.92rem;
}

/* Recursos + CTA + footer */
.landing-v5 .feature-spotlight,
.landing-v5 .feature-card {
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border);
}

.landing-v5 .features-cta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    border-radius: 20px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
}

.landing-v5 .features-cta-bar p {
    margin: 0;
    color: var(--slate-300);
    font-weight: 600;
}

/* Rodapé */
.landing-v5 .lp-footer {
    padding: 56px 0 28px;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid var(--lp-border);
}

.landing-v5 .lp-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
}

.landing-v5 .lp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 14px;
}

.landing-v5 .lp-footer-logo img {
    border-radius: 12px;
}

.landing-v5 .lp-footer-brand p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.65;
    max-width: 300px;
}

.landing-v5 .lp-footer-col h4 {
    margin: 0 0 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.landing-v5 .lp-footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.landing-v5 .lp-footer-links li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.landing-v5 .lp-footer-links li::before,
.landing-v5 .lp-footer-links li::marker {
    display: none !important;
    content: none !important;
}

.landing-v5 .lp-footer-links a {
    display: inline-block;
    padding: 6px 0;
    color: #e2e8f0 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.landing-v5 .lp-footer-links a:hover {
    color: var(--gold) !important;
}

.landing-v5 .lp-footer-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 20px;
    font-size: 0.88rem;
}

.landing-v5 .lp-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--slate-500);
}

.landing-v5 .landing-compare,
.landing-v5 .landing-signup-flow,
.landing-v5 .landing-pricing {
    padding: 0;
}

/* ===== Impacto visual — hero e destaque ===== */
.landing-v5 .lp-hero-impact {
    position: relative;
    overflow: hidden;
}

.landing-v5 .lp-hero-spotlight {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at 30% 40%, rgba(245, 158, 11, 0.22) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.landing-v5 .lp-hero-impact .landing-hero-grid,
.landing-v5 .lp-hero-impact .lp-metrics-wrap {
    position: relative;
    z-index: 1;
}

.landing-v5 .lp-badge-hot {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(252, 211, 77, 0.5);
    color: #fef3c7;
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.25);
}

.landing-v5 .lp-hero-title-impact {
    font-size: clamp(2.35rem, 6vw, 3.75rem) !important;
    line-height: 1.05 !important;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.landing-v5 .lp-hero-title-impact .landing-gradient-text {
    background: linear-gradient(120deg, #fde68a 0%, #f59e0b 35%, #fbbf24 70%, #fcd34d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(245, 158, 11, 0.45));
}

.landing-v5 .landing-lead strong {
    color: #fcd34d;
}

.landing-v5 .lp-cta-pulse {
    position: relative;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    animation: cta-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 28px rgba(245, 158, 11, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    50% {
        box-shadow: 0 0 48px rgba(245, 158, 11, 0.65), 0 12px 32px rgba(0, 0, 0, 0.4);
    }
}

.landing-v5 .lp-hero-social-proof {
    margin: 20px 0 0;
    font-size: 0.88rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-v5 .lp-hero-social-proof strong {
    color: #fff;
}

.landing-v5 .lp-hero-avatars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    font-size: 1rem;
}

.landing-v5 .lp-phone-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.15), inset 0 0 40px rgba(245, 158, 11, 0.05);
    animation: ring-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

.landing-v5 .landing-float-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.landing-v5 .lp-metrics-panel {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.landing-v5 .lp-metrics-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f59e0b, #fcd34d, #f59e0b, transparent);
}

.landing-v5 .lp-metrics-label {
    color: #94a3b8;
}

.landing-v5 .lp-metric-card strong {
    background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-v5 .lp-feature-chip strong {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
}

.landing-v5 .lp-metric-icon,
.landing-v5 .lp-feature-chip-icon {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.landing-v5 .landing-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.2s, background 0.2s;
}

.landing-v5 .landing-pill:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.08);
}

/* Painel ao vivo (mockup hero) — compacto */
.landing-v5 .landing-dash-card {
    left: 0;
    top: 14%;
    width: min(200px, 38vw);
    max-width: 200px;
    padding: 12px;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.08);
    backdrop-filter: blur(16px);
}

.landing-v5 .landing-dash-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 10px;
}

.landing-v5 .landing-dash-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.landing-v5 .landing-dash-brand img {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    flex-shrink: 0;
}

.landing-v5 .landing-dash-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

.landing-v5 .landing-dash-date {
    display: block;
    font-size: 0.6rem;
    color: var(--slate-500);
    font-weight: 600;
    margin-top: 1px;
}

.landing-v5 .landing-dash-live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #34d399;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 3px 7px;
    border-radius: 999px;
}

.landing-v5 .landing-dash-live .landing-live-dot {
    width: 5px;
    height: 5px;
}

.landing-v5 .landing-dash-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.landing-v5 .landing-dash-ring {
    --pct: 33;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(
        #f59e0b calc(var(--pct) * 1%),
        rgba(255, 255, 255, 0.08) 0
    );
    position: relative;
}

.landing-v5 .landing-dash-ring::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #0f172a;
}

.landing-v5 .landing-dash-ring-val {
    position: relative;
    z-index: 1;
    font-size: 0.58rem;
    font-weight: 800;
    color: #fcd34d;
}

.landing-v5 .landing-dash-summary-text strong {
    display: block;
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 1px;
    line-height: 1.2;
}

.landing-v5 .landing-dash-summary-text span {
    font-size: 0.62rem;
    color: var(--slate-500);
    font-weight: 600;
    line-height: 1.3;
}

.landing-v5 .landing-dash-appointments {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.landing-v5 .landing-dash-appt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border-left: 2px solid rgba(148, 163, 184, 0.4);
}

.landing-v5 .landing-dash-appt:nth-child(n+3) {
    display: none;
}

.landing-v5 .landing-dash-appt--ok {
    border-left-color: #34d399;
    background: rgba(16, 185, 129, 0.08);
}

.landing-v5 .dash-appt-time {
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    min-width: 36px;
}

.landing-v5 .dash-appt-info {
    min-width: 0;
    flex: 1;
}

.landing-v5 .dash-appt-info strong {
    display: block;
    font-size: 0.7rem;
    color: #f8fafc;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-v5 .dash-appt-info span {
    display: block;
    font-size: 0.6rem;
    color: var(--slate-500);
    font-weight: 600;
}

.landing-v5 .landing-dash-appt--ok .dash-appt-info span {
    color: #6ee7b7;
}

@media (prefers-reduced-motion: reduce) {
    .landing-v5 .lp-cta-pulse,
    .landing-v5 .lp-phone-ring {
        animation: none;
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    .landing-v5 .landing-dash-card {
        display: none;
    }

    .landing-v5 .lp-metrics-row {
        grid-template-columns: 1fr;
    }

    .landing-v5 .lp-metrics-row--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-v5 .landing-compare-grid {
        grid-template-columns: 1fr;
    }

    .landing-v5 .lp-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-v5 .lp-steps {
        grid-template-columns: 1fr;
    }

    .landing-v5 .lp-steps::before {
        display: none;
    }

    .landing-v5 .lp-split-grid {
        grid-template-columns: 1fr;
    }

    .landing-v5 .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .landing-v5 .lp-metrics-row--4 {
        grid-template-columns: 1fr;
    }

    .landing-v5 .lp-highlights {
        grid-template-columns: 1fr;
    }

    .landing-v5 .lp-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Animações ===== */
.landing-v5.lp-anim-loading .lp-stagger-load > * {
    opacity: 0;
    transform: translateY(28px);
}

.landing-v5.lp-anim-ready .lp-stagger-load > * {
    animation: lp-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(1) { animation-delay: 0.05s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(2) { animation-delay: 0.12s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(3) { animation-delay: 0.19s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(4) { animation-delay: 0.26s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(5) { animation-delay: 0.33s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(6) { animation-delay: 0.4s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(7) { animation-delay: 0.47s; }
.landing-v5.lp-anim-ready .lp-stagger-load > *:nth-child(8) { animation-delay: 0.54s; }

.landing-v5.lp-anim-loading .lp-anim-header {
    opacity: 0;
    transform: translateY(-16px);
}

.landing-v5.lp-anim-ready .lp-anim-header {
    animation: lp-fade-down 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-v5.lp-anim-loading .lp-anim-phone {
    opacity: 0;
    transform: translateY(40px) rotateY(-12deg) scale(0.94);
}

.landing-v5.lp-anim-ready .lp-anim-phone {
    animation: lp-phone-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.landing-v5.lp-anim-loading .lp-anim-dash {
    opacity: 0;
    transform: translateX(-24px) scale(0.92);
}

.landing-v5.lp-anim-ready .lp-anim-dash {
    animation: lp-dash-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.landing-v5.lp-anim-loading .lp-anim-float {
    opacity: 0;
    transform: scale(0.85);
}

.landing-v5.lp-anim-ready .lp-anim-float--1 {
    animation: lp-float-in 0.5s ease 0.75s forwards, lp-float-y 5s ease-in-out 1.3s infinite;
}

.landing-v5.lp-anim-ready .lp-anim-float--2 {
    animation: lp-float-in 0.5s ease 0.9s forwards, lp-float-y 5.5s ease-in-out 1.6s infinite;
}

.landing-v5.lp-anim-ready .lp-anim-float--3 {
    animation: lp-float-in 0.5s ease 1.05s forwards, lp-float-y 4.8s ease-in-out 1.9s infinite;
}

.landing-v5 .lp-anim-ring {
    animation: ring-pulse 4s ease-in-out infinite;
}

.landing-v5 .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-v5 .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-v5 .reveal-left {
    transform: translateX(-36px);
}

.landing-v5 .reveal-right {
    transform: translateX(36px);
}

.landing-v5 .reveal-left.is-visible,
.landing-v5 .reveal-right.is-visible {
    transform: translateX(0);
}

.landing-v5 .lp-stagger-reveal > *:nth-child(1) { transition-delay: 0s; }
.landing-v5 .lp-stagger-reveal > *:nth-child(2) { transition-delay: 0.08s; }
.landing-v5 .lp-stagger-reveal > *:nth-child(3) { transition-delay: 0.16s; }
.landing-v5 .lp-stagger-reveal > *:nth-child(4) { transition-delay: 0.24s; }

.landing-v5 .features-grid .feature-card.reveal {
    transition-delay: calc(var(--i, 0) * 0.06s);
}

.landing-v5 .landing-faq-item.is-open .landing-faq-a {
    animation: lp-faq-open 0.35s ease;
}

.landing-v5 .landing-brand-chip {
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.landing-v5 .landing-brand-chip:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.landing-v5 .lp-metric-card:hover,
.landing-v5 .lp-feature-chip:hover {
    transform: translateY(-4px) scale(1.01);
}

@keyframes lp-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-fade-down {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-phone-in {
    from {
        opacity: 0;
        transform: translateY(40px) rotateY(-12deg) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateY(-8deg) scale(1);
    }
}

@keyframes lp-dash-in {
    from {
        opacity: 0;
        transform: translateX(-24px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes lp-float-in {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lp-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes lp-faq-open {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .landing-v5.lp-anim-loading .lp-stagger-load > *,
    .landing-v5.lp-anim-loading .lp-anim-header,
    .landing-v5.lp-anim-loading .lp-anim-phone,
    .landing-v5.lp-anim-loading .lp-anim-dash,
    .landing-v5.lp-anim-loading .lp-anim-float,
    .landing-v5 .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .landing-v5 .lp-anim-ring,
    .landing-v5 .lp-cta-pulse,
    .landing-v5 .landing-gradient-shine,
    .landing-v5 .landing-live-dot,
    .landing-v5 .landing-badge-pulse,
    .landing-v5 .lp-robo-fab,
    .landing-v5 .lp-support-fab,
    .landing-v5 .lp-robo-fab-pulse,
    .landing-v5 .lp-robo-teaser {
        animation: none;
    }
}

/* Robô de atendimento */
.landing-v5 .lp-robo-widget,
.landing-v5 .lp-support-widget {
    position: fixed;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0));
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.landing-v5 .lp-robo-panel,
.landing-v5 .lp-support-panel {
    width: min(320px, calc(100vw - 32px));
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.landing-v5 .lp-robo-panel[hidden],
.landing-v5 .lp-support-panel[hidden] {
    display: none;
}

.landing-v5 .lp-robo-panel-head,
.landing-v5 .lp-support-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.landing-v5 .lp-robo-avatar,
.landing-v5 .lp-support-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.landing-v5 .lp-robo-panel-head strong,
.landing-v5 .lp-support-panel-head strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.landing-v5 .lp-robo-panel-head span,
.landing-v5 .lp-support-panel-head span {
    display: block;
    color: var(--slate-500);
    font-size: 0.72rem;
    font-weight: 600;
}

.landing-v5 .lp-robo-close,
.landing-v5 .lp-support-close {
    margin-left: auto;
    border: none;
    background: transparent;
    color: var(--slate-400);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.landing-v5 .lp-robo-chat {
    margin-bottom: 12px;
}

.landing-v5 .lp-robo-bubble {
    padding: 11px 14px;
    border-radius: 14px 14px 14px 4px;
    font-size: 0.86rem;
    line-height: 1.45;
    font-weight: 600;
}

.landing-v5 .lp-robo-bubble-bot {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
    color: #f1f5f9;
}

.landing-v5 .lp-robo-options,
.landing-v5 .lp-support-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.landing-v5 .lp-robo-option,
.landing-v5 .lp-support-option {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.landing-v5 .lp-robo-option:hover,
.landing-v5 .lp-support-option:hover {
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.1);
    color: #fff;
}

.landing-v5 .lp-robo-direct,
.landing-v5 .lp-support-direct {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.landing-v5 .lp-robo-direct:hover,
.landing-v5 .lp-support-direct:hover {
    text-decoration: underline;
}

.landing-v5 .lp-robo-fab,
.landing-v5 .lp-support-fab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: lp-robo-fab-bounce 2.4s ease-in-out infinite;
}

.landing-v5 .lp-robo-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(245, 158, 11, 0.55);
    animation: lp-robo-pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

.landing-v5 .lp-robo-fab-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

.landing-v5 .lp-robo-fab-badge[hidden] {
    display: none;
}

.landing-v5 .lp-robo-teaser {
    position: relative;
    max-width: min(280px, calc(100vw - 32px));
    animation: lp-robo-teaser-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-v5 .lp-robo-teaser[hidden] {
    display: none;
}

.landing-v5 .lp-robo-teaser-body {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 16px 16px 4px 16px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    color: #f8fafc;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.landing-v5 .lp-robo-teaser-body:hover {
    border-color: rgba(252, 211, 77, 0.55);
}

.landing-v5 .lp-robo-teaser-avatar {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.landing-v5 .lp-robo-teaser-close {
    position: absolute;
    top: -8px;
    right: -4px;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: #334155;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

@keyframes lp-robo-pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

@keyframes lp-robo-fab-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes lp-robo-teaser-in {
    from { opacity: 0; transform: translateY(10px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.landing-v5 .lp-robo-fab:hover,
.landing-v5 .lp-support-fab:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.55);
}

.landing-v5 .lp-robo-fab-icon,
.landing-v5 .lp-support-fab-icon {
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 480px) {
    .landing-v5 .lp-robo-fab-label,
    .landing-v5 .lp-support-fab-label {
        display: none;
    }

    .landing-v5 .lp-robo-fab,
    .landing-v5 .lp-support-fab {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}
