.statements-section-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.header-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.title-section {
    color: var(--primary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
}

.subtitle-section {
    color: var(--text-color-dark-secondary);
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.684px;
    width: 50%;
}

/* Container principal do Swiper */
#statementsCarousel {
    max-width: 62%;
    position: relative;
    margin: 0 auto;
    padding: 80px 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slides do Swiper */
#statementsCarousel .swiper-slide {
    max-width: 264px;
    max-height: 300px;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-radius: 4px;
    border: 0.5px solid #DCE0E9;
    background: #FFF;
    box-shadow: 0px 3px 1px 0px rgba(17, 24, 36, 0.00),
        0px 2px 1px 0px rgba(17, 24, 36, 0.01),
        0px 1.5px 0.5px 0px rgba(17, 24, 36, 0.03),
        0px 0.75px 0.5px 0px rgba(17, 24, 36, 0.04),
        0px 0px 0.5px 0px rgba(17, 24, 36, 0.05);
    position: relative;
    padding: 60px 20px 20px;
}

#statementsCarousel .swiper-slide img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 72px;
    max-height: 72px;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 2px;
    border-radius: 100%;
    border: 2px solid #0072DE;
}

#statementsCarousel .swiper-slide P {
    color: var(--text-color-dark-tertiary);
    font-size: var(--Body-Medium-Size, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Body-Medium-Line-Height, 20px);
    letter-spacing: var(--Body-Medium-Tracking, 0.25px);
    margin-bottom: 0;
    padding-bottom: 16px;
}

#statementsCarousel .swiper-slide h3 {
    color: var(--text-color-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.32px;
    margin: 0;
    padding-bottom: 8px;
    margin-top: auto;
}

#statementsCarousel .swiper-slide span {
    color: var(--text-color-gray-light);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.24px;
}

#statementsCarousel .swiper-navigation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Botões de navegação */
.swiper-navigation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.btn-prev-slide,
.btn-next-slide {
    display: flex;
    width: 44px;
    padding: 10px;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--text-color-white);
}

.btn-prev-slide svg,
.btn-next-slide svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-color-primary);
}

@media screen and (max-width: 1600px) {
    #statementsCarousel {
        max-width: 95%;
    }
}

@media screen and (max-width: 991px) {
    .subtitle-section {
        width: 75%;
    }
}

@media screen and (max-width: 576px) {
    #statementsCarousel {
        max-width: 100%;
        padding: 60px 0 20px;
    }

    .header-section {
        justify-content: flex-start;
        text-align: start;
        gap: 16px;
    }

    .title-section {
        font-size: 12px;
        width: 100%;
    }

    .subtitle-section {
        font-size: 28px;
        width: 100%;
    }
}

@media screen and (max-width: 441px) {
    .statements-section-home {
        padding: 0 24px;
    }

    .swiper-navigation-container {
        width: 100%;
        justify-content: flex-start;
    }
}
