@import "helpers";


.bannerfundo{
    display: block; 
    width: auto;
    margin: 0 -15px;
    z-index: -1;
    aspect-ratio: 1920 / 782;
    background-color: #F9F9F9;

    img{
        display: block;
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
    } 
}

.pagina-conteudo{
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 61px;
    max-width: 1580px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 62px;

    @media (max-width: 1199px) {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;        
    }


    .cont-marca{
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 686px;
        padding: 70px 86px;
        background:#F5F5F5;
        margin-top: -25%;
        //transform: translateY(-70%); 
        
        @media (max-width: 1345px) {
            padding-left: 16px;
            padding-right: 16px;
            align-items: center;
            text-align: center;
        }

        h2{
            font-family: $fontRegular;
            font-style: normal;
            font-weight: normal;
            font-size: 40px;
            line-height: 54px;   
            color: $textoDark;
        }

        p{
            display: block;
            font-family: $fontRegular;
            font-style: normal;
            font-size: 16px;
            line-height: 26px;    
            color: $textoDark;
            margin: 0 !important;
        }

        h3{
            font-family: $fontRegular;
            font-style: normal;
            font-weight: normal;
            font-size: 14px;
            line-height: 19px;   
            color: $textoDark;
        }

        .redes-sociais{
            display: flex;
            align-items: center;
            gap: 14px;
            
            .item{
                display: flex;
                align-items: center;
                justify-content: center;
                height: 21px;
                width: 21px;
                outline: 0;    
            }
        }
        
    }

    .section-instagram{
        width: 100%;
        position: relative;     
        margin-top: 54px;
        max-width: 832px;

        @media(max-width: 1199px){
            margin-top: 0;
        }

        .conteudo-instagram{
            display: block;
            width: 100%;            

            .box-instagram{
                display: block;
                outline: 0px;
                width: 100%;
                margin-bottom: 20px;                       
                
                .arroba-insta{
                    display: block;
                    margin:0px;
                    font: normal 40px $fontRegular;
                }

                .titulo-insta{
                    display: flex; 
                    justify-content:space-between;                            
                }

                .titulo{
                    display: block;
                    margin: 0px;
                    // margin-bottom: 10px;
                    color: $textoDark;
                    font: normal 14px $fontRegular;
                    text-align: start;


                    // &:before{
                    //     @include sprite();
                    //     display: block;
                    //     content: "";
                    //     width: 60px;
                    //     height: 60px;
                    //     margin: 0 auto;
                    //     margin-bottom: 20px;
                    //     background-position: -434px -157px;
                    // }
                }

                .subtitulo{
                    display: block;
                    margin: 0px;
                    color: $textoDark;
                    font: normal 14px $fontRegular;
                    text-align: end;
                }
            }

            .conteudo{
                position: relative;
                display: block;
                width: 100%;

                .mask{
                    position: absolute;
                    z-index: 3;
                    display: block;
                    outline: 0px;
                    width: 100%;
                    height: 100%;
                }

                .instagram-content{
                    position: relative;
                    z-index: 2;
                    display: block;
                    width: 100%;
                    padding-top: 33.25%;

                    @media(max-width: 767px){
                        overflow: hidden;
                        width: 300px;
                        height: 300px;
                        padding-top: 0px;
                        margin: 0 auto;
                    }

                    iframe{
                        position: absolute;
                        overflow:hidden;
                        border:none;
                        width:100%;
                        height: 100%;
                        top: 0px;
                        left: 0px;

                        @media(max-width:767px){
                            width: 900px;
                        }
                    }
                }
            }
        }
    }

}





