/* Estilo da seção O que é a NeedLife - Versão Alinhada à Esquerda */
#oqe {
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #ffffff;
    text-align: left;
    background-color: #0D1320;
}

#oqe .sectiontitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    line-height: 1.3;
    padding-left: 20px;
}

#oqe .sectiontitle span {
    color: #dc2626;
    position: relative;
}

#oqe .sectiontitle span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

#oqe .section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    max-width: 100%; 
    color: #ffffff;
    text-align: left; 
    position: relative;
    padding: 0 20px; 
}

#oqe .section-subtitle::before,
#oqe .section-subtitle::after {
    content: '"';
    font-size: 32px;
    color: #dc2626;
    opacity: 0.3;
    position: absolute;
}

#oqe .section-subtitle::before {
    top: -15px;
    left: 0;
}

#oqe .section-subtitle::after {
    bottom: -25px;
    right: 10px; /* Alterado de 'right: 0' para 'right: 10px' para melhor posicionamento */
}

/* Responsividade */
@media (max-width: 768px) {
    #oqe {
        padding: 40px 20px;
    }
    
    #oqe .sectiontitle {
        font-size: 28px;
        padding-left: 15px;
    }
    
    #oqe .section-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    #oqe .section-subtitle::after {
        right: 5px; /* Ajuste para dispositivos menores */
    }
}

@media (max-width: 480px) {
    #oqe .sectiontitle {
        font-size: 24px;
        padding-left: 10px;
    }
    
    #oqe .section-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }

    #oqe .section-subtitle::after {
        right: 0; /* Ajuste para mobile */
    }
}