/* =========================================
   BELIEF BREAKER SECTION - QUEBRA DE CRENÇA
   Seção visual impactante com mockup do método
   ========================================= */
@keyframes elementGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
    }
    50% {
        box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
    }
}
.belief-breaker-section {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8ECF1 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Padrão decorativo sutil */
.belief-breaker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.belief-breaker-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* BLOCO DE TEXTO */
.belief-breaker-text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.belief-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    animation: elementGlow 1s ease-in-out infinite;
    margin-bottom: 8px;
}

.belief-headline {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.belief-subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* ESTATÍSTICAS */
.belief-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 16px 0;
}

.belief-stat-item {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.stat-value {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
    font-weight: 500;
}

.belief-cta-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 0;
}

.belief-cta-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* MOCKUP DO LIVRO */
.belief-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.belief-mockup-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    /* Imagem com fundo transparente nativo */
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: floatMockup 6s ease-in-out infinite;
}

.belief-mockup-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.35));
}

/* Animação de flutuação suave */
@keyframes floatMockup {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* RESPONSIVIDADE - TABLET */
@media (max-width: 1024px) {
    .belief-breaker-content {
        grid-template-columns: 1fr 0.9fr;
        gap: 40px;
    }
    
    .belief-headline {
        font-size: 2.4rem;
    }
    
    .belief-subheadline {
        font-size: 1.2rem;
    }
    
    .belief-mockup-image {
        max-width: 400px;
    }
}

/* RESPONSIVIDADE - TABLET VERTICAL */
@media (max-width: 900px) {
    .belief-breaker-section {
        padding: 80px 0;
    }
    
    .belief-breaker-content {
        grid-template-columns: 1fr 0.8fr;
        gap: 35px;
    }
    
    .belief-headline {
        font-size: 2.2rem;
    }
    
    .belief-stats {
        gap: 16px;
    }
    
    .belief-stat-item {
        padding: 18px;
    }
    
    .belief-mockup-image {
        max-width: 350px;
    }
}

/* RESPONSIVIDADE - MOBILE */
@media (max-width: 640px) {
    .belief-breaker-section {
        padding: 60px 0;
    }
    
    .belief-breaker-content {
        grid-template-columns: 1fr;
        gap: 40px;
        flex-direction: column-reverse !important;
        display: flex !important;
    }
    
    .belief-breaker-text-block {
        text-align: center;
        align-items: center;
    }
    
    .belief-icon {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .belief-headline {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .belief-subheadline {
        font-size: 1.1rem;
    }
    
    .belief-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    
    .belief-stat-item {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .belief-cta-text {
        font-size: 1rem;
        padding: 20px;
    }
    
    .belief-mockup {
        order: 2;
    }
    
    .belief-mockup-image {
        max-width: 300px;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 400px) {
    .belief-headline {
        font-size: 1.75rem;
    }
    
    .belief-subheadline {
        font-size: 1rem;
    }
    
    .belief-mockup-image {
        max-width: 260px;
    }
    
    .belief-stat-item {
        padding: 16px;
    }
}
