/* Estilos para a seção de dores do público - layout similar à referência */
.pain-points-section {
    padding: 3rem 1.5rem;
    background-color: #f8f8f8;
}

.pain-points-title {
    text-align: left;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #333;
    position: relative;
}

.pain-points-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 2.0rem;
    color: #333;
    position: relative;
}

.pain-points-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #ff3b30;
}

.pain-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.pain-point-item {
    width: 24%;
    margin-bottom: 2rem;
    position: relative;
}

.pain-point-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.pain-point-image {
    width: 100%;
    height: auto;
    display: block;
}

.pain-point-percentage {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pain-point-text {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.4;
    text-align: center;
}

@media screen and (max-width: 1023px) {
    .pain-point-item {
        width: 48%;
    }
}

@media screen and (max-width: 767px) {
    .pain-point-item {
        width: 100%;
    }
    
    .pain-points-title {
        font-size: 2rem;
    }
    
    .pain-points-subtitle {
        font-size: 2rem;
    }
	
    .pain-point-percentage {
        font-size: 3.5rem;
    }
    
    /* Dobrar o tamanho da fonte do texto descritivo em dispositivos móveis */
    .pain-point-text {
        font-size: 1.8rem; /* Dobro do tamanho original (0.9rem) */
        line-height: 1.3;
    }
}
