/* Estilo automático para a página: home */
#display{
    width: 100%;
    overflow: hidden;
    
    .mySwiper {
        width: 100%;
        height: 680px;
        
        .swiper-slide {
            position: relative;
            width: 100%;
            height: 680px; 
            overflow: hidden;
            
            .img-display {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover; 
                object-position: center; 
            }
    
            .info-display {
                z-index: 10;
                position: relative;
                height: 100%;
                display: flex;
                align-items: center;
    
                .text-display{
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 160%;
                    color: var(--Branco);
                    margin-bottom: 32px;
                }
            }
    
        }
    }
    
    
    /* Filtro escuro sobre a imagem */
    .swiper-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade conforme necessário */
        z-index: 1;
    }
    .swiper-pagination-bullet{
        background-color: var(--Branco) !important;
        z-index: 10;
    }
    .swiper-pagination-bullet-active {
        background-color: var(--Amarelo) !important;   
    }
}

#sobre {
    padding: 60px 0;
    border-top: solid 10px #E7FF25;

    p{
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--Cinza);
    }

    .centro{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

#produtos{
    padding: 100px 0;
    position: relative;
    object-fit: contain;
    background-repeat: no-repeat;
    
    h2{
        color: var(--Branco);
    }
    .text-produtos{
        font-weight: 400;
        font-size: 20px;
        line-height: 160%;
        text-align: center;
        color: var(--Branco);
    }

    .swiper-button-prev {
        left: -80px;
        width: 60px;
        height: 60px;
        background-color: var(--VerdeSecundario);
        border-radius: 40px;
    }
    .swiper-button-next {
        right: -80px;
        width: 60px;
        height: 60px;
        background-color: var(--VerdeSecundario);
        border-radius: 40px;
    }
        
    .swiper-button-next:after, .swiper-button-prev:after{
        color: var(--Branco);
        font-size: 18px;
        font-weight: 700;
    }

}

#escolher{
    padding: 30px 0;

    p{
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--Cinza);
    }

    .centro{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    ul{
        margin: 0;
        padding: 0;

        li{
            font-weight: 600;
            font-size: 20px;
            line-height: 160%;
            letter-spacing: 0%;
            color: var(--Cinza);
            list-style-type: none;
            margin-bottom: 24px;

            img{
                margin-right: 8px;
            }
        }
    }
}


/* Responsividade */
@media (max-width: 768px) {
    .swiper-slide {
        height: 500px;
    }
    
    .info-display .text-display {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        height: 400px;
    }
    
    .info-display .text-display {
        font-size: 0.9rem;
    }
    
    .btn-padrao {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1200px) {
    #produtos{
        .passadores {
            position: relative;
            margin-top: 20px;

            .swiper-button-next {
                right: 0;
            }
            .swiper-button-prev {
                left: 0;
            }
        }
    }
    #sobre{
        h2 {
            margin: 16px 0;
            text-align: center;
        }
    }
    #sobre {
        .centro {
            text-align: center;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 
    #display {
        .mySwiper {
            height: 480px;
            .swiper-slide {
                height: 480px;

                .info-display {
                    .text-display {
                        font-weight: 300;    
                    }
                }
            }
        }
    }

    #sobre{
        h2 {
            margin: 16px 0;
            text-align: center;
        }
        p{
            text-align: center;
        }
        .mob-form-bt{
            text-align: center;
        }
    }

    #produtos{
        .passadores {
            position: relative;
            margin-top: 20px;

            .swiper-button-next {
                right: 0;
            }
            .swiper-button-prev {
                left: 0;
            }
        }
    }

    #escolher{
        .img-fluid{
            margin: 16px 0;
        }
        h2 {
            text-align: left;
        }
    }


}