.feedbacks {
    display: flex;
    flex-direction: row;
    padding: 16px 5vw 0 5vw;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.feedbacks_info {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedbacks_info h4 {
    color: var(--green-700, #158527);
    font-family: Satoshi-Variable;
    font-size: 16px;
    font-weight: 700;
}

.feedbacks_info h3 {
    color: var(--Gray-900, #121217);
    font-family: Satoshi-Variable;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}

.feedbacks_carousel_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.c_feedbacks {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 24px;
}

.c_feedbacks::-webkit-scrollbar {
    display: none;
}

.c_feedbacks img {
    position: relative;
    flex: 0 0 auto;
    width: 240px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease, z-index 0.2s ease;
}

.c_feedbacks img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.feedbacks_arrows {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
}

.feedbacks_arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--green-700, #158527);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.feedbacks_arrows button:hover {
    background-color: #106b1f;
}

.c_feedbacks:empty::after {
    content: "Adicione as imagens dos feedbacks na pasta img e insira-as no HTML.";
    width: 100%;
    text-align: center;
    color: var(--Gray-700, #3F3F50);
    padding: 64px 32px;
    border: 1px dashed var(--Gray-200, #D1D1DB);
    border-radius: 8px;
    font-family: Satoshi-Variable;
}

@media only screen and (max-width: 768px) {
    .feedbacks {
        flex-direction: column;
        padding: 16px 5vw 0 5vw;
        gap: 24px;
        align-items: flex-start;
    }
    
    .feedbacks_info {
        flex: none;
        width: 100%;
    }
    
    .feedbacks_info h3 {
        font-size: 28px;
    }

    .c_feedbacks img {
        width: 200px;
        height: auto;
    }
    
    .c_feedbacks img:hover {
        transform: none;
        z-index: 1;
    }
}
