/* ============================================================
   LANDING BOOST — Redução de Rejeição
   Novas seções: Showcase, Depoimentos, Como Funciona, Lead Modal
   ============================================================ */

/* ---------- TRUST METRICS (hero badges) ---------- */
.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 32px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}
.hero-trust-metrics .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    padding: 0 16px;
    position: relative;
}
.hero-trust-metrics .trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}
.hero-trust-metrics .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.hero-trust-metrics .trust-info .trust-number {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.hero-trust-metrics .trust-info .trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

/* ---------- PRODUCT SHOWCASE ---------- */
.showcase-area {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}
.showcase-area .section_title .title {
    font-size: 32px;
    font-weight: 800;
}
.showcase-area .section_title p {
    max-width: 600px;
    margin: 0 auto;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.showcase-tab-btn {
    padding: 12px 28px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: #fff;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.showcase-tab-btn i {
    font-size: 18px;
}
.showcase-tab-btn:hover {
    border-color: #4361ee;
    color: #4361ee;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.15);
}
.showcase-tab-btn.active {
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.35);
}

.showcase-panel {
    display: none;
    animation: showcaseFadeIn 0.5s ease;
}
.showcase-panel.active {
    display: block;
}
@keyframes showcaseFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255,255,255,0.1);
    max-width: 960px;
    margin: 0 auto;
}
.showcase-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
}
.showcase-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), transparent);
    border-radius: 16px 16px 0 0;
    z-index: 2;
}
.showcase-browser-dots {
    position: absolute;
    top: 12px;
    left: 16px;
    display: flex;
    gap: 6px;
    z-index: 3;
}
.showcase-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.showcase-browser-dots span:nth-child(1) { background: #ff5f57; }
.showcase-browser-dots span:nth-child(2) { background: #febc2e; }
.showcase-browser-dots span:nth-child(3) { background: #28c840; }

.showcase-caption {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    font-size: 14px;
    font-style: italic;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works-area {
    position: relative;
}
.step-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #4361ee;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}
.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.step-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 28px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-area {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-area .section_title .title {
    color: #fff;
}
.testimonials-area .section_title p {
    color: #94a3b8;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(67, 97, 238, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4361ee, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author-info .author-name {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 15px;
}
.testimonial-author-info .author-role {
    color: #64748b;
    font-size: 13px;
    margin-top: 2px;
}

/* ---------- LEAD CAPTURE MODAL ---------- */
.dm-lead-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dm-lead-overlay.active {
    display: flex;
    animation: overlayFadeIn 0.3s ease;
}
@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.dm-lead-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.dm-lead-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.dm-lead-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.dm-lead-modal .lead-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4361ee, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}
.dm-lead-modal h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 8px;
}
.dm-lead-modal .lead-desc {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
}
.dm-lead-modal .lead-form-group {
    margin-bottom: 14px;
}
.dm-lead-modal .lead-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}
.dm-lead-modal .lead-form-group input:focus {
    border-color: #4361ee;
}
.dm-lead-modal .lead-submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}
.dm-lead-modal .lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}
.dm-lead-modal .lead-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.dm-lead-modal .lead-privacy {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 16px;
}
.dm-lead-modal .lead-privacy i {
    color: #22c55e;
    margin-right: 4px;
}
.dm-lead-msg {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 12px;
    display: none;
}

/* ---------- ADVANTAGES GRID ---------- */
.advantages-area {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.advantages-area .section_title .title {
    font-size: 32px;
    font-weight: 800;
}
.advantage-card {
    padding: 32px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}
.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: #4361ee;
}
.advantage-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}
.advantage-icon.adv-1 { background: linear-gradient(135deg, #4361ee, #7c3aed); }
.advantage-icon.adv-2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.advantage-icon.adv-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.advantage-icon.adv-4 { background: linear-gradient(135deg, #10b981, #059669); }
.advantage-icon.adv-5 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.advantage-icon.adv-6 { background: linear-gradient(135deg, #f97316, #eab308); }
.advantage-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.advantage-card .adv-pain {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-style: italic;
}
.advantage-card p.adv-solution {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ---------- PRICING V2 ---------- */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.pricing-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s;
    cursor: pointer;
}
.pricing-toggle-label.active {
    color: #1e293b;
}
.pricing-toggle {
    position: relative;
    width: 56px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}
.pricing-toggle.annual {
    background: linear-gradient(135deg, #4361ee, #7c3aed);
}
.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.pricing-toggle.annual .pricing-toggle-knob {
    transform: translateX(26px);
}
.pricing-save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Pricing cards v2 */
.pricing-v2-card {
    border-radius: 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-v2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.pricing-v2-card.highlighted {
    border-color: #4361ee;
    box-shadow: 0 10px 40px rgba(67,97,238,0.2);
}
.pricing-v2-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4361ee, #7c3aed);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(67,97,238,0.35);
    z-index: 10;
    letter-spacing: 0.3px;
}
.pricing-v2-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #fff;
}
.pricing-v2-icon.icon-trial { background: linear-gradient(135deg, #10b981, #059669); }
.pricing-v2-icon.icon-basic { background: linear-gradient(135deg, #4361ee, #7c3aed); }
.pricing-v2-icon.icon-unlimited { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.pricing-v2-card .plan-name {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}
.pricing-v2-card .plan-price {
    font-size: 36px;
    font-weight: 800;
    color: #4361ee;
    margin-bottom: 4px;
    line-height: 1.2;
}
.pricing-v2-card .plan-price-detail {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
}
.pricing-v2-card .plan-limit {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 20px;
}
.pricing-v2-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
    flex: 1;
}
.pricing-v2-card .pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-v2-card .pricing-features li:last-child {
    border-bottom: none;
}
.pricing-v2-card .pricing-features li .feat-check {
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-v2-card .pricing-cta .main-btn {
    width: 100%;
    display: block;
    text-align: center;
}

/* All plans include strip */
.all-plans-strip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin-top: 50px;
}
.all-plans-strip h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}
.all-plans-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.all-plans-features .apf-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}
.all-plans-features .apf-item i {
    color: #4361ee;
    font-size: 16px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .hero-trust-metrics {
        padding: 16px 16px;
    }
    .hero-trust-metrics .trust-item {
        padding: 0 10px;
    }
    .hero-trust-metrics .trust-info .trust-number {
        font-size: 18px;
    }
    .step-connector {
        display: none;
    }
}
@media (max-width: 767px) {
    .hero-trust-metrics {
        padding: 14px 12px;
        border-radius: 12px;
    }
    .hero-trust-metrics .trust-item {
        flex: 1;
        padding: 0 6px;
        gap: 8px;
    }
    .hero-trust-metrics .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 10px;
    }
    .hero-trust-metrics .trust-info .trust-number {
        font-size: 16px;
    }
    .hero-trust-metrics .trust-info .trust-label {
        font-size: 11px;
    }
    .hero-trust-metrics .trust-item:not(:last-child)::after {
        height: 28px;
    }
    .showcase-tabs {
        gap: 8px;
    }
    .showcase-tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    .dm-lead-modal {
        padding: 32px 24px;
    }
    .dm-lead-modal h3 {
        font-size: 20px;
    }
    .pricing-v2-card {
        padding: 32px 24px;
    }
    .pricing-v2-card .plan-price {
        font-size: 28px;
    }
    .all-plans-features .apf-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    .advantage-card {
        padding: 24px 20px;
    }
}

