        /* Reset */
        #custon-page {
            scroll-snap-type: y mandatory;
            overflow-y: scroll;
        }

        #custon-page.scroll-section {
            scroll-snap-align: start;
        }

        #custon-page h1, p, a {
            font-family: 'Poppins', Arial, Helvetica, sans-serif;
        }

        #custon-page h1 {
            font-size: 32px;
            font-weight: 700;
        }

        #custon-page h2 {
            font-family: 'Poppins', Arial, Helvetica, sans-serif;
            font-size: 20px;
        }

        #custon-page p {
            font-size: 16px;
            font-weight: 400;
        }

        #custon-page img {
            border-radius: 32px;
            width: 100%; /* Garante que a imagem se ajuste ao contêiner */
            padding: 0;
            margin: 0;
            transform: scale(1);
            transition: 0.2s ease-in-out;
        }

        
        .banners-header{
        width: 100%;
        margin: 0 auto;
    
        height: auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        }
        .cp-banner-desk{display: block;}
        .cp-banner-mob{display: none;}

        .ajust-title {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #custon-page .controller-width {
            width: 100%;
            max-width: 1280px;
            height: auto;
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #custon-page .content-page {
            width: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #custon-page::-webkit-scrollbar {
            width: 0;
        }

        .slide-section-1{
            background-image: url("https://static.ecosweb.com.br/public/produtos/moda-feminina/blusa-manga-longa/blusa-branco-em-crepe-plano_375406_1000_4.webp");
            height: 768px;
            position: relative;
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 32px;
            animation: slideshow 10s infinite; /* 3 segundos por slide, ciclo infinito */
            
        }

        


        a.button-inferior {
            width: 100%;
            max-width: 100%;
            background-color: #f1e5d7;
            border-radius: 8px;
            color: #000000;
            text-decoration: none;
            padding: 16px;
            margin: 16px 0;
            cursor: pointer;
        }

        #custon-page img:hover{
            opacity: 0.7;
            transition: 0.2s ease-in-out;
            transform: scale(1.020);
        }

        /* Ajuste Mobile */
        @media screen and (max-width: 720px) {
            
            #custon-page img{
                border-radius: 16px;
            }

            .cp-banner-desk{display: none;}
            .cp-banner-mob{display: block;}

        
        }