/* Stats Redesign - Escala Reduzida */
.stats-section {
    padding: 64px 24px;
}

.section {
    padding: 64px 24px;
}

.stats-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.stats-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.stats-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    border-color: rgba(95, 36, 159, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(95, 36, 159, 0.1);
    transform: translateY(-8px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-card.purple .stat-number { color: var(--primary); }
.stat-card.yellow .stat-number { color: var(--primary-light); }
.stat-card.green .stat-number { color: var(--primary); }

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.stat-source {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.mission-card {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Como Funciona - Layout Limpo */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.how-box {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.how-box.user {
    border-color: rgba(95, 36, 159, 0.15);
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.6), rgba(237, 233, 254, 0.4));
}

.how-box.bot {
    border-color: var(--border-purple);
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.3), rgba(237, 233, 254, 0.2));
}

.how-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.how-item {
    padding: 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.how-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.note-box {
    background: rgba(245, 243, 255, 0.4);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 12px;
}

.note-box strong {
    color: var(--primary);
}

/* Tutorial Interativo Redesign */
.tutorial-section {
    background: var(--bg-purple);
    color: white;
    padding: 64px 20px;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 48px;
}

.tutorial-header h2 {
    color: white;
    margin-bottom: 12px;
}

.tutorial-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tutorial-phone-wrapper {
    position: relative;
}

.tutorial-steps {
    display: grid;
    gap: 24px;
}

.tutorial-step {
    background: white;
    color: var(--text-primary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tutorial-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.tutorial-step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.tutorial-step h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.tutorial-step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Grid de Comparação de Preço */
.price-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .price-comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .offer-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Oferta - Design Premium */
.offer-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 20px;
    border: 2px solid var(--primary-light);
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(95, 36, 159, 0.15);
    border-radius: 32px;
    padding: 60px 48px;
    box-shadow: 0 20px 60px rgba(95, 36, 159, 0.12), 0 0 0 1px rgba(95, 36, 159, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
    box-shadow: 0 30px 80px rgba(95, 36, 159, 0.18), 0 0 0 1px rgba(95, 36, 159, 0.1);
    transform: translateY(-4px);
}

.offer-price-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 16px;
    margin-bottom: 40px;
}

.price-strike {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-main {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.price-highlight {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 16px;
    display: inline-block;
    font-size: 0.9375rem;
}

.benefits-list {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.benefit-text strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.benefit-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.referral-banner {
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.6), rgba(237, 233, 254, 0.4));
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 28px;
    border: 2px solid var(--border-purple);
}

.referral-banner h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.vagas-alert {
    background: white;
    border: 2px solid var(--primary);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.vagas-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

/* BIBLIA-DE-BOLSO: Responsividade Mobile-First */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-mockup {
        order: 1;
    }

    .hero-text {
        order: 2;
        text-align: center;
    }

    .phone-container {
        transform: none;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .tutorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        padding: 80px 20px;
    }

    .offer-card {
        padding: 40px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: clamp(3.5rem, 12vw, 5rem);
    }

    .hero-ctas {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    h1, .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .price-main {
        font-size: 4rem;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .section img {
        border-radius: 12px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 1rem;
    }

    .section {
        padding: 60px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .phone {
        width: 100%;
        max-width: 400px;
        min-height: 600px;
    }

    .wa-chat {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .phone {
        max-width: 350px;
        min-height: 550px;
    }
    
    .phone-container {
        margin: 16px auto;
    }
}

@media (max-width: 640px) {
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .price-main {
        font-size: 3rem;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .offer-header h2 {
        font-size: 1.5rem !important;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-dot {
        left: 8px;
    }

    .roadmap-item {
        padding-left: 60px;
    }
}

/* FAQ Redesign - Accordion Interativo */
.faq-section {
    padding: 64px 20px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(95, 36, 159, 0.1);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(95, 36, 159, 0.15);
}

.faq-question {
    padding: 20px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 20px 28px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.faq-answer-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Roadmap Redesign */
.roadmap-section {
    padding: 64px 20px;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    padding: 32px;
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 45%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Alternar posição dos cards */
.roadmap-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.roadmap-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.roadmap-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(95, 36, 159, 0.12);
    transform: translateY(-4px);
}

.roadmap-item.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.5), white);
}

.roadmap-dot {
    position: absolute;
    top: 40px;
    width: 28px;
    height: 28px;
    background: white;
    border: 5px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(95, 36, 159, 0.15), 0 4px 12px rgba(95, 36, 159, 0.2);
    z-index: 2;
}

/* Posicionar dots NA LINHA CENTRAL */
.roadmap-item:nth-child(odd) .roadmap-dot {
    right: -63px; /* Metade do gap + metade do dot para alinhar com a linha */
}

.roadmap-item:nth-child(even) .roadmap-dot {
    left: -63px; /* Metade do gap + metade do dot para alinhar com a linha */
}

.roadmap-item.active .roadmap-dot {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(95, 36, 159, 0.2), 0 0 20px rgba(95, 36, 159, 0.4);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsividade da Timeline */
@media (max-width: 768px) {
    .roadmap-timeline {
        padding: 0 10px;
    }
    
    .roadmap-item {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 24px 20px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
        transform: none;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-dot,
    .roadmap-item:nth-child(even) .roadmap-dot {
        left: -8px !important;
        right: auto !important;
    }
    
    .roadmap-item {
        margin-left: 40px !important;
    }
}

.roadmap-date {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.roadmap-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.roadmap-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Guarantee Box Redesign */
.guarantee-box {
    max-width: 800px;
    margin: 48px auto 0;
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.6), rgba(237, 233, 254, 0.4));
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(95, 36, 159, 0.15);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
    color: var(--primary);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.guarantee-box h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.guarantee-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modal Melhorado */