.product-html-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.product-html-container .layout-container-second {
    width: 92%;
    border-radius: 30px;
    margin-top: 5rem;
    position: relative;
    margin-left: auto !important;
    margin-right: auto !important;
}

.product-html-container .features-section {
    margin-top: 70px;
    margin-bottom: 70px;
}

.product-html-container .layout-container-second .main-content-section-first {
    position: absolute;
    top: 20%;
    left: 10%;
    text-align: left;
    width: 40%;

}

.product-html-container .layout-container-second .main-content-section-first p {
    margin-top: 3%;
}

.product-html-container .layout-container-second .main-content-section-second {
    position: absolute;
    top: 65%;
    left: 10%;
    width: 80%;
    text-align: center;

}

.product-html-container .image-gallery-second {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    width: 90%;
    margin-left: auto;
    margin-left: auto;
    margin-top: -5rem;
    height: auto;
}

.product-html-container .image-gallery-second .text-content {
    text-align: center;
}

.product-html-container .image-gallery-second .gallery-item {
    width: 100%;
}

.product-html-container .image-gallery-second .gallery-item img {
    width: 100%;
    margin: 10px auto;
}

.product-html-container .text-image-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 90%;
    margin: 30px auto;
}

.product-html-container .text-image-section .content {
    flex: 1;
    margin-right: 20px;
}

.product-html-container .text-image-section .content h2 {
    font-weight: bold;
    margin-bottom: 10px;
}

.product-html-container .text-image-section .content p {
    line-height: 1.2;
    margin-bottom: 10px;
}

.product-html-container .text-image-section .image {
    flex: 1.2;
    max-width: 50%;
}

.product-html-container .text-image-section .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-html-container .text-image-section .advantage-item {
    background-color: #A32035;
    border-radius: 40px;
    padding: 20px 20px;
    width: 300px;
    margin-top: 30px;
}

.product-html-container .text-image-section .advantage-item p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.product-html-container .text-image-section .advantage-item .text-description a {
    text-decoration: none;
    text-align: center;
}


/* Estilos da nova sessão - Benefits Section */

.product-html-container .benefits-section {
    padding: 2rem 0;
    margin: 30px auto 70px auto;
}

.product-html-container .benefits-section .benefit-item {
    padding: 1rem;
}

.product-html-container .benefits-section .benefit-icon img {
    max-width: 50px;
    height: auto;
    margin-bottom: 1rem;
    margin-top: 1.8rem;

}

.product-html-container .benefits-section .benefit-title {
    font-family: UniSansBold;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.product-html-container .benefits-section .benefit-description {
    font-family: UniSansBook;
    font-size: 1rem;
}

.product-html-container .container-with-color {
    text-align: center;
    padding: 20px;
    background-color: #434343;
    color: #FFFFFF;
    border-radius: 20px;
    width: 90%;
    margin: 30px auto 70px auto;
}

.product-html-container .container-with-color .title {
    margin-bottom: 20px;
}

.product-html-container .container-with-color .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-html-container .container-with-color .filter {
    flex: 1 1 1;
    max-width: 90%;
    margin: 20px auto;
}

.product-html-container .container-with-color .filter img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Estilos para a sessão ideal-para */
.product-html-container .ideal-para-container {
    background-color: #757679;
    /* Fundo amarelo */
    padding: 50px 20px;
    text-align: center;
    border-radius: 0px;

}

.product-html-container .ideal-para-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-html-container .ideal-para-title {
    font-family: UniSansBold;
    font-size: 1.75rem;
    display: inline-block;
    margin-right: 10px;
    color: #FFFF;
}

.product-html-container .ideal-para-line {
    flex-grow: 1;
    height: 1px;
    background-color: #FFFF;
}

/* Usando Grid para organizar os ícones */
.product-html-container .icons-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 5 colunas para desktop */
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.product-html-container .icons-container .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFF;
}

.product-html-container .icons-container .icon img {
    width: 70px;
    /* Tamanho dos ícones */
    height: 70px;
}

.product-html-container .icons-container .icon label {
    margin-top: 10px;
    font-size: 1.2rem;
}

.product-html-container .container-image-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin: 30px auto;
}

.product-html-container .container-image-button .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-html-container .container-image-button .image-container {
    text-align: center;
    flex: 1 1 300px;
}

.product-html-container .container-image-button .image-container img {
    max-width: 80%;
    height: auto;
}

.product-html-container .container-image-button .text {
    margin-top: 10px;
}

.product-html-container .container-image-button .buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-html-container .container-image-button .button {
    background-color: #D9D9D9;
    border: none;
    padding: 20px 20px;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    font-weight: 900;
    color: #FFFFFF;
}

.product-html-container .container-image-button .button.active {
    background-color: #434343;
    color: #fff;
    outline: none;
}

.product-html-container .container-image-button-mobile .button-mobile.active {
    background-color: #434343;
    color: #fff;
    outline: none;
}

.product-html-container .content-component {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Título e Linha */
.product-html-container .content-component .header-section {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.product-html-container .content-component .text-container {
    margin-bottom: 1rem;
}

.product-html-container .content-component .text-container h2.product-html-description,
.product-html-container .content-component .text-container h2.product-html-title {
    text-transform: uppercase;
    margin: 0;
    font-size: 2.2rem;
}

.product-html-container .content-component .straight {
    flex-grow: 1;
    height: 1px;
    background-color: #000;
    margin-left: 10px;
    margin-top: 0;
}

.product-html-container .text-image-section.with-background {
    background-color: #242424;
    padding: 50px;
    padding-bottom: 124px;
    padding-top: 100px;
    border-radius: 30px;
}



@media (min-width: 1025px) {
    .product-html-container .product-section {
        margin-top: 10px;
    }

    .product-html-container .product-section .product-info .card-black-type {
        background-color: #000000;
        padding: 10px;
        color: #FFFFFF;
        border-radius: 10px;
        width: calc(40% - 10px);
        margin-top: -0.5rem;
        text-align: center;
    }

    .product-html-container .product-section .product-info h1 {
        margin-top: -0.7rem;
        font-size: 3vw;
    }

    .product-html-container .image-gallery.product-html-show-desktop,
    .product-html-container .image-gallery-second.product-html-show-desktop .custom-container.product-html-show-desktop,
    .product-html-container .container-image-button.product-html-show-desktop {
        display: flex;
    }

    .product-html-container .text-image-section .content {
        margin-left: 0.375rem;
        margin-right: 0.375rem;
    }

    .product-html-container .text-image-section .image {
        margin-left: 0.375rem;
        margin-right: 0.375rem;
    }

    .product-html-container .container-with-color .product-html-description {
        width: 70%;
    }

    .product-html-container .only-image.product-html-show-mobile {

        margin-top: 50px;
    }

    .product-html-container .only-image.product-html-show-desktop {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        margin-top: -96px;
    }

    .product-html-container .only-image img {
        width: 100%;
    }

    .product-html-container .text-image-section.with-icon .content {
        flex: 1;
        max-width: 20%;
    }

    .product-html-container .text-image-section.with-icon .image {
        max-width: 70%;
    }

    .product-html-container .text-image-section .item-position-right {
        margin-left: 2rem;
    }



}

@media (max-width: 1024px) {

    .product-html-container {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-html-container .image-gallery.product-html-show-desktop,
    .product-html-container .custom-container.product-html-show-desktop,
    .product-html-container .image-gallery-second.product-html-show-desktop,
    .product-html-container .container-image-button.product-html-show-desktop {
        display: none;
    }

    .product-html-container .product-section {
        margin-top: 20px;
    }

    .product-html-container .product-section .product-info h2.product-html-description {
        line-height: 0.5;
    }

    .product-html-container .product-section .product-info h1.product-html-title {
        line-height: 1;
        margin-top: 2px;
        font-size: 7vw;
    }

    .product-html-container .layout-container-second {
        width: 100%;
    }

    .product-html-container .layout-container-second .main-content-section-second {
        position: absolute;
        top: 50%;
        left: 10%;
        width: 80%;
        text-align: center;

    }

    .product-html-container .slider-container-second {
        margin-top: -18%;

    }

    .product-html-container .slider-container-second .splide__track .card {
        background-color: transparent;

    }

    .product-html-container .text-image-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .product-html-container .text-image-section .content {
        margin: 20px 0;
        text-align: left;
    }

    .product-html-container .text-image-section .image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .product-html-container .text-image-section.align-center-mobile .advantages-icons .advantage-item {
        margin: 20px auto;
    }

    .product-html-container .benefits-section .benefit-item {
        display: flex;
        flex-direction: column;

    }

    .product-html-container .benefits-section img {
        width: 100%;
    }

    .product-html-container .container-with-color {
        width: 100%;
    }

    .product-html-container .container-with-color .product-html-description {
        width: 90%;
    }

    .product-html-container .icons-container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 colunas para mobile */
    }

    .product-html-container .icons-container .icon img {
        width: 60px;
        /* Tamanho menor para os ícones no mobile */
        height: 60px;
    }

    .product-html-container .ideal-para-title-container {
        color: #FFFF;
    }

    .product-html-container .ideal-para-container {
        border-radius: 0;
    }

    .product-html-container .container-image-button-mobile {
        text-align: center;
        padding: 20px;
        width: 90%;
        margin: 30px auto 30px auto;
    }

    .product-html-container .container-image-button-mobile .image-container img {
        max-width: 80%;
        height: auto;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-html-container .container-image-button-mobile .text {
        margin-bottom: 20px;
    }

    .product-html-container .container-image-button-mobile .buttons-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .product-html-container .container-image-button-mobile .button-mobile {
        background-color: #D9D9D9;
        border: none;
        padding: 10px 20px;
        border-radius: 45px;
        cursor: pointer;
        flex: 1 1 calc(50% - 10px);
        text-align: center;
        transition: background-color 0.3s;
        font-weight: 900;
        color: #FFFFFF;
        height: 71px;
    }



    .product-html-container .container-image-button-mobile .bold {
        font-weight: 900;
        letter-spacing: 1px;
    }

    .product-html-container .only-image.product-html-show-mobile {
        width: 100%;
        margin-top: -9rem;
    }

    .product-html-container .only-image.product-html-show-mobile img {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .product-html-container .text-image-section.with-background {
        width: 100%;
        max-width: 100%;
    }

    .product-html-container .text-image-section.with-background .content {
        text-align: center;
    }

    .product-html-container .text-image-section.with-icon .content {
        text-align: center;
    }

    .product-html-container .benefits-section {
        padding: 0;
        margin: -30px auto 20px auto;
    }

    .product-html-container .product-section .product-info .card-black-type {
        background-color: #000000;
        padding: 5px;
        color: #FFFFFF;
        border-radius: 10px;
        width: calc(50% - 10px);
        margin-top: -0.5rem;
        text-align: center;
        margin-left: 10rem;
    }
}

@media (max-width: 600px) {
    .product-html-container .filters {
        flex-direction: column;
        gap: 10px;

        align-items: center;
    }

    .product-html-container .filter {
        max-width: none;
    }

    .product-html-container .product-section .product-info .card-black-type {
        padding: 5x 5px;
        margin-left: 4rem;
        width: calc(54% - 10px);
    }

    .product-html-container .content-component .text-container h2.product-html-description,
    .product-html-container .content-component .text-container h2.product-html-title {
        font-size: 1.3rem
    }

    .product-html-container .content-component .header-section {
        margin-top: -1rem;
    }
}