.container-potof-sobre {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    padding: 64px 16px;
}

.container-potof-sobre .sobre-slider {
    width: 100%;
    height: 240px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.container-potof-sobre .sobre-slider .swiper-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: content-box;
    transition-property: transform;
}

.container-potof-sobre .sobre-slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 240px;
    display: block;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.container-potof-sobre .sobre-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 10.55%, rgba(0, 0, 0, 0) 26.38%);
    z-index: 1;
    pointer-events: none;
}

.container-potof-sobre .sobre-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.container-potof-sobre .sobre-slider-nav .swiper-button-prev,
.container-potof-sobre .sobre-slider-nav .swiper-button-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #eee;
    position: static;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-potof-sobre .sobre-slider-nav .swiper-button-prev::after,
.container-potof-sobre .sobre-slider-nav .swiper-button-next::after {
    display: none;
}

.container-potof-sobre .sobre-slider-nav .swiper-button-prev svg,
.container-potof-sobre .sobre-slider-nav .swiper-button-next svg {
    width: 24px;
    height: 24px;
    display: block;
}

.container-potof-sobre .sobre-slider-pagination {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: Quicksand, sans-serif;
}

.container-potof-sobre .sobre-slider-pagination .swiper-pagination-current {
    font-weight: 400;
}


.container-potof-sobre .sobre-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.container-potof-sobre .sobre-subtitle {
    background-color: #fff9f5;
    color: #1f1f42;
    padding: 5px 16px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    display: inline-block;
    align-self: flex-start;
    font-family: Quicksand, sans-serif;
}

.container-potof-sobre .sobre-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container-potof-sobre .sobre-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.container-potof-sobre .sobre-button {
    background-color: #1f1f42;
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 32px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    font-family: Quicksand, sans-serif;
}

.container-potof-sobre .sobre-slider .swiper-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (min-width: 1024px) {
    .container-potof-sobre {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 128px 0px;
        gap: 64px;
    }

    .container-potof-sobre .sobre-slider {
        width: 592px;
        min-width: 592px;
        height: 762px;
    }

    .container-potof-sobre .sobre-slider .swiper-slide {
        height: 762px;
    }

    .container-potof-sobre .sobre-content {
        max-width: 592px;
    }

    .container-potof-sobre .sobre-slider-nav {
        bottom: 40px;
    }

    .container-potof-sobre .sobre-slider-nav .swiper-button-prev,
    .container-potof-sobre .sobre-slider-nav .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .container-potof-sobre .sobre-slider-pagination {
        font-size: 16px;
    }

    .container-potof-sobre .sobre-title {
        font-size: 48px;
    }
}