#container__banner {
    position: relative;
    width: 100%;
    min-height: 20vh;
    overflow: hidden;
    background-color: var(--branco);
}

.banner__content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.banner__link {
    display: block;
    width: 100%;
    position: relative;
    text-decoration: none;
}

.banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner__text-content {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    max-width: 600px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner__eyebrow {
    display: block;
    text-transform: uppercase;
    color: var(--amarelo);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.banner__title {
    text-transform: uppercase;
    font-family: var(--font-futura-bold);
    color: var(--rosa);
    line-height: 1.1;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem); 
}

.banner__description {
    color: var(--cinza-escuro);
    line-height: 1.4;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    max-width: 500px;
}

.banner__cta {
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 1rem;
    
}

.banner__text-content--product .banner__description {
    margin-left: auto;
    margin-right: auto;
}

.banner__text-content--about {
    left: 8%;
}

.banner__title.about-small {
    font-size: clamp(1.1rem, 2vw, 2rem);
    line-height: 1.1;
}

.swiper-hero {
    width: 100%;
    height: auto;
}

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
    background-color: var(--branco);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-hero .swiper-button-next:after,
.swiper-hero .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: var(--amarelo);
}

.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover {
    background-color: var(--amarelo);
    transform: scale(1.1);
}

.swiper-hero .swiper-button-next:hover:after,
.swiper-hero .swiper-button-prev:hover:after {
    color: var(--branco);
}

.swiper-hero .swiper-pagination-bullet-active {
    background: var(--rosa) !important;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.banner__main-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
}

.swiper-slide:hover .banner__cta {
    background-color: var(--amarelo-hover);
    transform: scale(1.05);
    transition: 0.3s;
}

@media (min-width: 955px) {
    .banner__text-content {
        left: 12%;
    }
    .banner__text-content--product {
    align-items: center;
    justify-content: center;
    text-align: center;
    left: 35%;
    top: 35%;
}
.about {
        top: 70%;
    }
}

@media (max-width: 1366px) {
    .banner__text-content {
        max-width: 450px;
    }
}

@media (max-width: 991px) {
    .banner__text-content {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        padding: 2.5rem 5.5rem 2.5rem 1.5rem;
        text-align: left;
        max-width: 100%;
    }

    .banner__text-content--product {
        padding: 2.5rem 11rem 2.5rem 1.5rem;
    }

    .banner__text-content--inferior {
        top: 35%;
        padding: 2.5rem 4rem 2.5rem 1.5rem;
    }

    .banner__text-content--superior {
        padding: 2.5rem 4rem 2.5rem 1.5rem;
    }

    .about {
        top: 40%;
    }

    .banner__description {
        margin-left: auto;
        margin-right: auto;
    }

    .swiper-hero .swiper-button-next,
    .swiper-hero .swiper-button-prev {
        display: none;
    }
}