/* FONTES IMPORTADAS */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body{
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image:url(fundoEscuro.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* HEADER ----------------------------------------------- */
/* Menu Normal */
header{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding: 0 3%;
    animation: animateLogoH1 1 forwards 1s ease-in-out;
}
header .menu{
    cursor: pointer;
    z-index: 3;
}
header .menu div{
    position: relative;
    margin: 25% 0;
    padding: 1px 13px;
    transition: .5s ease-in-out;
}
header .menu div::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eaeaea;
    transition: .5s ease-in-out;
}
header .logo{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    line-height: 1;
}
header .logo h4{
    font-family: 'Playfair Display', sans-serif;
    text-transform: uppercase;
    font-size: 2.3vh;
    font-weight: 400;
    color: #cba05b;
    letter-spacing: 5px;
}
header .logo h2{
    font-size: 3.5vh;
    font-family: sans-serif;
    letter-spacing: 2px;
    color: #eaeaea;
}
header .bagUser{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .bagUser button{
    margin: auto 10%;
    font-size: 4vh;
    color: #eaeaea;
    background: none;
    border: none;
    outline: none;
    transition: .6s ease-in-out;
    cursor: pointer;
}header .bagUser button:hover{
    transform: scale(1.2);
}
@keyframes animateLogoH1{
    from{
        transform: translate(0, -50px);
        opacity: 0;
    }to{
        transform: translate(0);
        opacity: 1;
    }
}
header .menuProdutos ul{
    position: absolute;
    top: 0vh;
    left: 0;
    height: 0vh;
    width: 8vw;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, .25);
    border-top: 1px solid #23232380;
    border-right: 1px solid #23232380;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    background: #232323a1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .8s ease-in-out;
    overflow: hidden;
}
header .menuProdutos ul li{
    position: relative;
    margin: 20% auto;
    height: 3%;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    cursor: pointer;
}
header .menuProdutos ul li::after{
    content: "";
    position: absolute;
    left: 0;
    top: -25%;
    height: 150%;
    width: 3px;
    background-color: #eaeaea;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}header .menuProdutos ul li:hover::after{transform: scaleY(1);}

header .menuProdutos ul li i{
    position: absolute;
    right: 40%;
    color: #eaeaea;
    font-size: 3.2vh;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
header .menuProdutos ul li i::after{
    content: '';
    position: absolute;
    top: 0;
    color: #eaeaea;
    font-size: 3.2vh;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
header .menuProdutos ul li:hover i{
    right: 1%;
}

header .menuProdutos ul li span{
    position: absolute;
    left: -60%;
    color: #eaeaea;
    font-family: sans-serif;
    font-size: 2.3vh;
    transition: 0.5s ease-in-out;
    opacity: 0;
    cursor: pointer;
}
header .menuProdutos ul li span::after{
    content: '';
    position: absolute;
    top: 0;
    color: #eaeaea;
    transition: 0.5s ease-in-out;
    opacity: 0;
    cursor: pointer;
}
header .menuProdutos ul li:hover span{
    left: 7%;
    opacity: 1;
}
/* RESPONSIVIDADE HEADER */
@media (max-width: 1203px){
    header .menu{
        margin-left: -1.5%;
    }
    header .menuProdutos ul{
        width: 9vw;
    }
}
@media (max-width: 1165px){
    header .menu{
        margin-left: -1.2%;
    }
    header .menuProdutos ul{
        width: 10vw;
    }
}
@media (max-width: 1061px){
    header .menu{
        margin-left: -.6%;
    }
    header .menuProdutos ul{
        width: 11vw;
    }
}
@media (max-width: 967px){
    header .menu{
        margin-left: 0%;
    }
    header .menuProdutos ul{
        width: 12vw;
    }
}
@media (max-width: 885px){
    header .menu{
        margin-left: .4%;
    }
    header .menuProdutos ul{
        width: 13vw;
    }
}
@media (max-width: 813px){
    header .menu{
        margin-left: 1.4%;
    }
    header .menuProdutos ul{
        width: 15vw;
    }
    header .menuProdutos ul li{
        margin: 17% 0;
    }
}
@media (max-width: 721px){
    header .menu{
        margin-left: 2%;
    }
    header .menuProdutos ul{
        width: 17vw;
    }
}
@media (max-width: 635px){
    header .menu{
        margin-left: 3.2%;
    }
    header .menuProdutos ul{
        width: 19.5vw;
    }
}
@media (max-width: 533px){
    header .menu{
        margin-left: 4.5%;
    }
    header .menuProdutos ul{
        width: 22.5vw;
    }
    header .menuProdutos ul li{
        margin: 17% 0;
    }
}
@media (max-width: 480px){
    header .menu{
        margin-left: 6%;
    }
    header .menuProdutos ul{
        width: 26vw;
    }
}
@media (max-width: 420px){
    header .logo{
        display: none;
    }
    header .menu{
        margin-left: 8.2%;
    }
    header .menuProdutos ul{
        width: 30vw;
    }
}
@media (max-width: 360px){
    header .menuProdutos ul{
        width: 100vw;
    }
    header .menuProdutos ul li{
        margin: 6% auto;
    }
    header .menuProdutos ul li i{
        display: none;
    }
    header .menuProdutos ul li span{
        position: relative;
        font-size: 3vh;
        left: 0%;
        opacity: 1;
    }header .menuProdutos ul li:hover span{
        left: 0;
        opacity: 1;
    }
}
@media (max-width: 300px){
    header .menuProdutos ul li{
        margin: 7% auto;
    }
}

/* SECTION ----------------------------------------------- */
section{
    position: absolute;
    width: 100vw;
    height: 100vh;
    transition: .8s ease-in-out;
    overflow: hidden;
}
section .container{
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* SECTION (Inicio) ----------- */
#inicio{
    top: 0;
}
#inicio .container .text{
    position: absolute;
    left: 9%;
    width: 45%;
    animation: animateTextInicio 1 forwards .75s ease-in-out;
}
#inicio .container .text h3{
    font-size: 2.8vh;
    font-family: 'Raleway', sans-serif;
    color: #eaeaea;
}
#inicio .container .text h1{
    line-height: .95;
    font-size: 10vh;
    font-family: 'Oswald', sans-serif;
    color: #eaeaea;
}
#inicio .container .text h5{
    margin: 4% 0 0 0;
    font-size: 2.3vh;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #eaeaea;
}
#inicio .container .text .btnTexto{
    margin: 5% 0 0 0;
    font-family: sans-serif;
}
#inicio .container .text .btnTexto button{
    padding: 1.8% 7%;
    margin: 0 3% 0 0;
    font-weight: 400;
    font-size: 1.7vh;
    text-transform: uppercase;
    transition: .6s ease-in-out;
    cursor: pointer;
}
#inicio .container .text .btnTexto button:nth-child(1){
    color: #eaeaea;
    border: 1px solid #eaeaea;
    background: none;
}#inicio .container .text .btnTexto button:nth-child(1):hover{background:#eaeaea;color:#232323;}

#inicio .container .text .btnTexto button:nth-child(2){
    color: #232323;
    border: 1px solid #cba05b;
    background: #cba05b;
}#inicio .container .text .btnTexto button:nth-child(2):hover{background:none;color:#cba05b;}
@keyframes animateTextInicio{
    from{
        opacity: 0;
        transform: translateX(-70%);
    }to{
        opacity: 1;
        transform: translateX(0);
    }
}

#inicio .container .img{
    position: absolute;
    left: 61%;
    width: 30%;
    height: 73%;
    background-image:url(relogio.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 1.1s ease-in-out;
    z-index: 5;
    animation: animateImgInicio 1 forwards .8s ease-in-out;
}
@keyframes animateImgInicio{
    from{
        opacity: 0;
        transform: translateY(100%);
    }to{
        opacity: 1;
        transform: translateY(0);
    }
}
/* SECTION (Responsividade Inicio) ----------- */
@media (max-width: 1207px){
    #inicio .container .text{
        left: 4%;
        width: 53%;
    }
}
@media (max-width: 1038px){
    #inicio .container .text{
        left: 4%;
        width: 53%;
    }
    #inicio .container .text h3{
        font-size: 2.4vh;
    }
    #inicio .container .text h1{
        font-size: 8.5vh;
    }
    #inicio .container .text h5{
        font-size: 2vh;
    }
    #inicio .container .img{
        left: 59%;
        width: 34%;
        height: 68%;
    }
}
@media (max-width: 881px){
    #inicio .container .text{
        left: 4%;
        width: 56%;
    }
    #inicio .container .text h3{
        font-size: 2.4vh;
    }
    #inicio .container .text h1{
        font-size: 7.7vh;
    }
    #inicio .container .text h5{
        font-size: 2vh;
    }
    #inicio .container .img{
        left: 59%;
        width: 34%;
        height: 60%;
    }
}
@media (max-width: 760px){
    #inicio .container .text{
        bottom: 5%;
        left: 12%;
        width: 76%;
        text-align: center;
    }
    #inicio .container .text h3{
        display: none;
    }
    #inicio .container .text h1{
        font-size: 7vh;
    }
    #inicio .container .text h5{
        display: none;
    }
    #inicio .container .img{
        top: 10%;
        left: 21%;
        width: 58%;
        height: 60%;
    }
    .transicaoMarrom{
        left: 100% !important;
        width: 0% !important;
    }
}
@media (max-width: 511px){
    #inicio .container .text{
        bottom: 7%;
        left: 5%;
        width: 90%;
        text-align: center;
    }
    #inicio .container .text h1{
        font-size: 4.5vh;
    }
    #inicio .container .img{
        top: 13%;
        left: 10%;
        width: 80%;
        height: 60%;
    }
}
@media (max-width: 302px){
    #inicio .container .text{
        bottom: 12%;
        left: 1%;
        width: 98%;
    }
    #inicio .container .text h1{
        font-size: 4vh;
    }
    #inicio .container .img{
        top: 15%;
        left: 1%;
        width: 98%;
        height: 57%;
    }
}

/* SECTION (Produtos) ----------- */
#produtos{
    top: 100%;
}
#produtos .container .slide{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#produtos .container .slide .item{
    position: absolute;
    width: 29%;
    height: 68%;
    border-radius: 2vh;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .7s ease-in-out;
    animation: animateItens 1s ease-in-out;
    overflow: hidden;
}#produtos .container .slide .item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: 1;
}
@keyframes animateItens{
    from{
        opacity: 0;
        transform: translate(0, 60%);
    }to{
        opacity: 1;
        transform: translate(0);
    }
}
#produtos .container .slide .item:nth-child(1){
    top: 13%;
    left: -15%;
    width: 15%;
    height: 45%;
    opacity: 0;
}
#produtos .container .slide .item:nth-child(2){
    top: 13%;
    left: 4.5%;
    width: 15%;
    height: 45%;
    transform: perspective(1000px) rotateY(30deg);
    z-index: 1;
}
#produtos .container .slide .item:nth-child(3){
    top: 10%;
    left: 19.5%;
    width: 18%;
    height: 55%;
    transform: perspective(1000px) rotateY(15deg);
    z-index: 2;
}
#produtos .container .slide .item:nth-child(4){
    top: 16%;
    left: 38%;
    width: 24%;
    height: 70%;
    z-index: 3;
    cursor: pointer;
}
#produtos .container .slide .item:nth-child(5){
    top: 10%;
    left: 62.5%;
    width: 18%;
    height: 55%;
    transform: perspective(1000px) rotateY(-15deg);
    z-index: 2;
}
#produtos .container .slide .item:nth-child(6){
    top: 13%;
    left: 80.5%;
    width: 15%;
    height: 45%;
    transform: perspective(1000px) rotateY(-30deg);
    z-index: 1;
}
#produtos .container .slide .item:nth-child(7){
    top: 13%;
    left: 115%;
    width: 15%;
    height: 45%;
    opacity: 0;
}

#produtos .container .slide .item.ativado{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    cursor: default;
}#produtos .container .slide .item.ativado::after{
    background-image: url(fundoEscuro.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

#produtos .container .slide .item .text{
    position: absolute;
    text-align: left;
    bottom: -20%;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, #000000de, #00000000);
    display: none;
    animation: animateTextProdutos 1s ease-in-out;
}
@keyframes animateTextProdutos{
    from{
        opacity: 0;
        transform: translate(0, 100%);
    }to{
        opacity: 1;
        transform: translate(0);
    }
}
#produtos .container .slide .item .text h1{
    font-family: 'Oswald', sans-serif;
    font-size: 5vh;
    letter-spacing: 1px;
    color: #eaeaea;
    animation: animateTextProdutos 1.3s ease-in-out;
}
#produtos .container .slide .item .text h4{
    margin: 2% 0;
    font-family: sans-serif;
    font-size: 2.4vh;
    font-weight: 400;
    color: #eaeaea;
    animation: animateTextProdutos 1.5s ease-in-out;
}
#produtos .container .slide .item:nth-child(4) .text{display: block;bottom: 0%;transition: 1s ease-in-out;}

#produtos .container .btnSlide{
    position: absolute;
    bottom: 3%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#produtos .container .btnSlide button{
    margin: 0 1%;
    font-size: 6vh;
    color: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    background: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animateButtons 1s ease-in-out;
    transition: .7s ease-in-out;
    cursor: pointer;
}#produtos .container .btnSlide button:hover{background:#eaeaea;color:#232323;}
@keyframes animateButtons{
    0%{
        opacity: 0;
        margin: 0 -1%;
        transform: translate(0, 80%);
    }
    50%{
        opacity: .5;
        transform: translate(0);
    }
    100%{
        opacity: 1;
        margin: 0 1%;
    }
}
/* SECTION (Responsividade Produtos) ----------- */
@media (max-width: 1160px){
    #produtos .container .slide .item:nth-child(1){
        left: -16.5%;
        width: 16.5%;
        height: 45%;
    }
    #produtos .container .slide .item:nth-child(2){
        left: .5%;
        width: 16.5%;
        height: 45%;
    }
    #produtos .container .slide .item:nth-child(3){
        left: 16%;
        width: 20%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(4){
        left: 36.5%;
        width: 27%;
        height: 70%;
    }
    #produtos .container .slide .item:nth-child(5){
        left: 64%;
        width: 20%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(6){
        left: 83%;
        width: 16.5%;
        height: 45%;
    }
    #produtos .container .slide .item:nth-child(7){
        left: 116.5%;
        width: 16.5%;
        height: 45%;
    }
}
@media (max-width: 1050px){
    #produtos .container .slide .item:nth-child(1),
    #produtos .container .slide .item:nth-child(2){
        left: -18%;
        width: 18%;
        height: 45%;
    }
    #produtos .container .slide .item:nth-child(3){
        left: 11%;
        width: 22.5%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(4){
        left: 35%;
        width: 30%;
        height: 70%;
    }
    #produtos .container .slide .item:nth-child(5){
        left: 66.5%;
        width: 22.5%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(6),
    #produtos .container .slide .item:nth-child(7){
        left: 118%;
        width: 18%;
        height: 45%;
    }
}
@media (max-width: 973px){
    #produtos .container .slide .item:nth-child(3){
        left: 7%;
        width: 25.5%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(4){
        left: 33.5%;
        width: 33%;
        height: 70%;
    }
    #produtos .container .slide .item:nth-child(5){
        left: 67.5%;
        width: 25.5%;
        height: 55%;
    }
}
@media (max-width: 870px){
    #produtos .container .slide .item:nth-child(3){
        left: 3%;
        width: 28%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(4){
        left: 32%;
        width: 36%;
        height: 70%;
    }
    #produtos .container .slide .item:nth-child(5){
        left: 69%;
        width: 28%;
        height: 55%;
    }
    #produtos .container .btnSlide button{
        margin: 0 3%;
        font-size: 7vh;
    }
}
@media (max-width: 805px){
    #produtos .container .slide .item:nth-child(3){
        left: 0%;
        width: 30%;
        height: 55%;
    }
    #produtos .container .slide .item:nth-child(4){
        left: 30.25%;
        width: 39%;
        height: 70%;
    }
    #produtos .container .slide .item:nth-child(5){
        left: 70%;
        width: 30%;
        height: 55%;
    }
}
@media (max-width: 738px){
    #produtos .container .slide .item:nth-child(-n + 3){
        left: -30%;
        width: 30%;
        height: 55%;
        opacity: 0;
    }
    #produtos .container .slide .item:nth-child(4){
        top: 15%;
        left: 30.25%;
        width: 42%;
        height: 70%;
    }
    #produtos .container .slide .item:nth-child(n + 5){
        left: 100%;
        width: 30%;
        height: 55%;
        opacity: 0;
    }
}
@media (max-width: 673px){
    #produtos .container .slide .item:nth-child(4){
        left: 27%;
        width: 46%;
        height: 70%;
    }
}
@media (max-width: 609px){
    #produtos .container .slide .item:nth-child(4){
        left: 24.5%;
        width: 51%;
        height: 70%;
    }
}
@media (max-width: 561px){
    #produtos .container .slide .item:nth-child(4){
        left: 22%;
        width: 56%;
        height: 70%;
    }
}
@media (max-width: 503px){
    #produtos .container .slide .item:nth-child(4){
        left: 22%;
        width: 58%;
        height: 70%;
    }
}
@media (max-width: 496px){
    #produtos .container .slide .item:nth-child(4){
        left: 18.5%;
        width: 63%;
        height: 70%;
    }
}
@media (max-width: 447px){
    #produtos .container .slide .item:nth-child(4){
        left: 18.5%;
        width: 65%;
        height: 70%;
    }
}
@media (max-width: 436px){
    #produtos .container .slide .item:nth-child(4){
        left: 14%;
        width: 72%;
        height: 70%;
    }
}
@media (max-width: 391px){
    #produtos .container .slide .item:nth-child(4){
        left: 9%;
        width: 74%;
        height: 70%;
    }
}
@media (max-width: 386px){
    #produtos .container .slide .item:nth-child(4){
        left: 9%;
        width: 82%;
        height: 70%;
    }
}
@media (max-width: 350px){
    #produtos .container .slide .item:nth-child(4){
        left: 5%;
        width: 90%;
        height: 70%;
    }
}
@media (max-width: 319px){
    #produtos .container .slide .item:nth-child(4){
        left: 2%;
        width: 96%;
        height: 70%;
    }
    #produtos .container .btnSlide{
        bottom: 4%;
    }
    #produtos .container .btnSlide button{
        margin: 0 8%;
    }
}
@media (max-width: 297px){
    #produtos .container .slide .item:nth-child(4){
        height: 66%;
    }
    #produtos .container .slide .item .text h1{
        font-size: 4vh;
    }
    #produtos .container .slide .item .text h4{
        font-size: 2.4vh;
    }
    #produtos .container .btnSlide{
        bottom: 7%;
    }
    #produtos .container .btnSlide button{
        margin: 0 11%;
    }
}
@media (max-width: 270px){
    #produtos .container .slide .item:nth-child(4){
        top: 18%;
        height: 59%;
    }
    #produtos .container .slide .item .text h1{
        margin: 0;
    }
    #produtos .container .slide .item .text h4{
        margin: 1% 0 4% 0;
        font-size: 2vh;
    }
    #produtos .container .btnSlide{
        bottom: 10%;
    }
}
@media (max-width: 254px){
    #produtos .container .slide .item:nth-child(4){
        top: 19%;
        left: 2%;
        width: 96%;
        height: 60%;
    }
    #produtos .container .btnSlide{
        bottom: 8%;
    }
    #produtos .container .btnSlide button{
        margin: 0 8%;
    }
}

/* SECTION (Produtos do Card) ----------- */
#produtosDoCard{
    display: none;
    z-index: 3;
}
#produtosDoCard .container .content{
    position: absolute;
    left: 1%;
    width: 98%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: nowrap;
    gap: .1%;
}
#produtosDoCard .container .content .card{
    background: red;
    width: calc(20% - .1%);
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(0);
    transition: .6s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}#produtosDoCard .container .content .card:hover{
    filter: saturate(1);
}

/* SECTION (Page Produto) ----------- */
#pageProduto{
    display: none;
    z-index: 3;
}

#produtosDoCard .container .content .card h2{
    position: absolute;
    bottom: -20%;
    width: 100%;
    height: 20%;
    font-family: sans-serif;
    font-size: 2.6vh;
    letter-spacing: 2px;
    color: #eaeaea;
    background: linear-gradient(to top, #00000075, #00000000);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease-in-out;
}#produtosDoCard .container .content .card:hover h2{bottom:0;}

/* SECTION (Sobre Nós) ----------- */
#sobreNos{
    top: 100%;
}
#sobreNos .container .text{
    width: 90%;
    text-align: center;
}
#sobreNos .container .text h3{
    font-size: 2.9vh;
    font-family: 'Roleway', sans-serif;
    color: #eaeaea;
    font-weight: 500;
    letter-spacing: 1px;
    animation: animateTextSobreNos 1 forwards 1s ease-in-out;
}
#sobreNos .container .text h1 span{
    font-family: 'Playfair Display', sans-serif;
    color: #cba05b;
    letter-spacing: 5px;
    font-weight: 400;
    text-transform: uppercase;
}
#sobreNos .container .text h1{
    position: relative;
    font-size: 9vh;
    font-family: sans-serif;
    color: #eaeaea;
    letter-spacing: 2px;
    font-weight: 700;
    animation: animateTextSobreNos 1 forwards 1s ease-in-out;
}
#sobreNos .container .text h1::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 35%;
    width: 30%;
    height: 2px;
    border-radius: 10vh;
    background: #cba05b;
}
#sobreNos .container .text h5{
    margin: 2% auto;
    width: 65%;
    letter-spacing: 1px;
    color: #eaeaea;
    font-size: 2.4vh;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    animation: animateTextSobreNos 1 forwards 1s ease-in-out;
}
#sobreNos .container .text button{
    margin: 2% 0;
    padding: .5% 3%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #cba05b;
    border: 1px solid #cba05b;
    background: none;
    outline: none;
    animation: animateTextSobreNos 1 forwards 1s ease-in-out;
    transition: .6s ease-in-out;
    cursor: pointer;
}#sobreNos .container .text button:hover{background:#cba05b;color:#232323;}
@keyframes animateTextSobreNos{
    from{
        opacity: 0;
        transform: translate(0, -50%);
    }to{
        opacity: 1;
        transform: translate(0);
    }
}
/* SECTION (Responsividade Sobre Nós) ----------- */
@media (max-width: 850px){
    #sobreNos .container .text{
        width: 100%;
        text-align: center;
    }
    #sobreNos .container .text h3{
        font-size: 2.4vh;
    }
    #sobreNos .container .text h1{
        font-size: 7vh;
    }
    #sobreNos .container .text h1::after{
        left: 35%;
        width: 30%;
    }
    #sobreNos .container .text h5{
        margin: 2% auto;
        font-size: 2vh;
        width: 75%;
    }
    #sobreNos .container .text button{
        margin: 3% 0;
        padding: 1% 6%;
    }
}
@media (max-width: 680px){
    #sobreNos .container .text h1::after{
        left: 30%;
        width: 40%;
    }
    #sobreNos .container .text h5{
        width: 95%;
    }
}
@media (max-width: 350px){
    #sobreNos .container .text h1{
        font-size: 5vh;
    }
    #sobreNos .container .text h1::after{
        bottom: -3%;
        left: 25%;
        width: 50%;
    }
    #sobreNos .container .text h5{
        margin: 4% auto;
        width: 99%;
    }
}

/* SECTION (Influencer) ----------- */
#influencer{
    top: 100%;
}

#influencer .container .img{
    position: absolute;
    top: 8%;
    left: 7%;
    width: 500px;
    height: 550px;
    filter: grayscale(100%);
    background-image:url(Maximus.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .7s ease-in-out;
}
#influencer .container .text{
    position: absolute;
    left: 50%;
    width: 43%;
    overflow: hidden;
}
#influencer .container .text .linha{
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 3px;
    background: #cba05b;
}
#influencer .container .text h1{
    font-family: 'Oswald', sans-serif;
    margin: 3% 0 0 0;
    font-size: 9vh;
    color: #eaeaea;
}
#influencer .container .text h3{
    font-family: sans-serif;
    font-size: 3vh;
    color: #cba05b;
}
#influencer .container .text h5{
    margin: 5% 0 0 0;
    font-size: 2.4vh;
    color: #eaeaea;
    font-family: sans-serif;
    font-weight: 400;
}
#influencer .container .text .social{margin: 5% 0 0 0;width: 100%;}

#influencer .container .text .social button{
    margin: 0 3%;
    font-size: 4vh;
    color: #cba05b;
    border: none;
    outline: none;
    background: none;
    transition: .4s ease-in-out;
    cursor: pointer;
}#influencer .container .text .social button:hover{transform: scale(1.2);}
/* SECTION (Responsividade Influencer) ----------- */
@media (max-width: 1185px){
    #influencer .container .img{
        top: 12%;
        left: 6%;
        width: 450px;
        height: 450px;
        border-radius: 50%;
    }
    #influencer .container .text{
        left: 47%;
        width: 50%;
    }
}
@media (max-width: 1122px){
    #influencer .container .img{
        top: 20%;
        left: 7%;
        width: 350px;
        height: 350px;
    }
}
@media (max-width: 900px){
    #influencer .container .img{
        top: 12%;
        left: 32%;
        width: 320px;
        height: 320px;
        border-radius: 50%;
    }
    #influencer .container .text{
        top: 68%;
        left: 15%;
        width: 70%;
        text-align: center;
    }
    #influencer .container .text .linha{
        left: 25%;
        width: 50%;
    }
    #influencer .container .text h1{
        margin: 0;
        font-size: 7vh;
    }
    #influencer .container .text h3{
        font-size: 2.8vh;
    }
    #influencer .container .text h5{
        display: none;
    }
    #influencer .container .text .social{margin: 3% 0 0 0;}
}
@media (max-width: 860px){
    #influencer .container .img{
        left: 30%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 734px){
    #influencer .container .img{
        left: 27%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 635px){
    #influencer .container .img{
        left: 24%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 586px){
    #influencer .container .img{
        left: 21%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 514px){
    #influencer .container .img{
        left: 18%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 487px){
    #influencer .container .img{
        left: 16%;
        width: 320px;
        height: 320px;
    }
    #influencer .container .text{
        top: 68%;
        left: 1%;
        width: 98%;
        text-align: center;
    }
}
@media (max-width: 451px){
    #influencer .container .img{
        left: 14%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 417px){
    #influencer .container .img{
        left: 11%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 399px){
    #influencer .container .img{
        left: 9%;
        width: 320px;
        height: 320px;
    }
}
@media (max-width: 377px){
    #influencer .container .img{
        top: 20%;
        left: 14%;
        width: 250px;
        height: 250px;
    }
    #influencer .container .text h1{
        font-size: 5vh;
    }
    #influencer .container .text h3{
        font-size: 2vh;
    }
    #influencer .container .text .social{margin: 7% 0 0 0;}
}
@media (max-width: 350px){
    #influencer .container .img{
        top: 22%;
        left: 14%;
        width: 230px;
        height: 230px;
    }
    #influencer .container .text{
        top: 65%;
    }
}
@media (max-width: 312px){
    #influencer .container .img{
        top: 22%;
        left: 11%;
        width: 230px;
        height: 230px;
    }
    #influencer .container .text{
        top: 65%;
    }
}
@media (max-width: 292px){
    #influencer .container .img{
        top: 22%;
        left: 9%;
        width: 230px;
        height: 230px;
    }
    #influencer .container .text{
        top: 65%;
    }
}
@media (max-width: 292px){
    #influencer .container .img{
        top: 24%;
        left: 11%;
        width: 200px;
        height: 200px;
    }
    #influencer .container .text{
        top: 62%;
    }
    #influencer .container .text h1{
        margin: 3% 0 0 0;
        font-size: 4vh;
    }
}
@media (max-width: 258px){
    #influencer .container .img{
        top: 24%;
        left: 9%;
        width: 200px;
        height: 200px;
    }
}
@media (max-width: 245px){
    #influencer .container .img{
        top: 24%;
        left: 7%;
        width: 200px;
        height: 200px;
    }
    #influencer .container .text .social button{
        margin: 0 7%;
    }
}

/* SECTION (Contato) ----------- */
#contato{
    top: 100%;
}
#contato .container{
    display: flex;
    justify-content: center;
    align-items: center;
}
#contato .container .content{
    position: relative;
    margin: 0 2%;
    width: 40%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#contato .container .content h1{
    margin: 0 0 2% 0;
    font-size: 6vh;
    letter-spacing: 1px;
    color: #eaeaea;
}
#contato .container .content h5{
    font-size: 2.2vh;
    font-weight: 400;
    color: #858585;
}
#contato .container .content h3{
    margin: 0 0 2% 0;
    font-size: 3vh;
    color: #eaeaea;
    letter-spacing: 1px;
}
#contato .container .content .text{
    margin: 5% auto;
    width: 80%;
    text-align: center;
    font-family: sans-serif;
}
#contato .container .content .text .social{
    padding: 2%;
    font-size: 3.2vh;
    color: #858585;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contato .container .content .text .social button{
    margin: 0 5%;
    padding: 2%;
    font-size: 3.6vh;
    color: #232323;
    border: none;
    border-radius: 50%;
    background: #858585;
    box-shadow: 0 8px 16px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease-in-out;
    cursor: pointer;
}#contato .container .content .text .social button:hover{transform: scale(1.1);box-shadow:0 0 40px #000;}

#contato .container .formulario{
    position: relative;
    margin: 0 2%;
    width: 40%;
    height: 80%;
    box-shadow: 8px 8px 20px #000;
    font-family: sans-serif;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
#contato .container .formulario::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #232323a1;
    border-top: 1px solid #23232380;
    border-right: 1px solid #23232380;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    pointer-events: none; /* permite interação com o conteúdo */
    z-index: 1;           /* atrás do conteúdo */
}
#contato .container .formulario > * {
    position: relative;
    z-index: 2;
}

#contato .container .formulario h1{
    margin: 0 0 5% 0;
    font-size: 6vh;
    color: #eaeaea;
}
#contato .container .formulario form{
    width: 100%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: animateFormContato 1.4s ease-in-out;
}
#contato .container .formulario form .box{
    margin: 5% auto;
    width: 80%;
    border-bottom: 1px solid #858585;
}
#contato .container .formulario form .box input{
    width: 100%;
    color: #858585;
    font-size: 1rem;
    border: none;
    background: none;
    outline: none;
}
#contato .container .formulario form button{
    margin: 6% 0 0 0;
    padding: 2% 12%;
    text-transform: uppercase;
    font-size: 2vh;
    letter-spacing: 2px;
    color: #eaeaea;
    background: #232323;
    border: none;
    outline: none;
    transition: .6s ease-in-out;
    cursor: pointer;
}#contato .container .formulario form button:hover{transform: scale(1.1);box-shadow:0 5px 10px #000;}

/* SECTION (Responsividade Contato) ----------- */
@media (max-width: 1065px){
    #contato .container .formulario{
        width: 45%;
        height: 80%;
    }
    #contato .container .content .text{
        margin: 5% auto;
        width: 95%;
    }
}
@media (max-width: 923px){
    #contato .container .content{
        margin: 0 1%;
        width: 49%;
        height: 80%;
    }
    #contato .container .formulario{
        margin: 0 1%;
        width: 49%;
        height: 80%;
    }
}
@media (max-width: 802px){
    #contato .container .content{
        margin: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 20%;
        flex-direction: row;
    }
    #contato .container .content .text{
        width: 50%;
    }
    #contato .container .content .text:nth-child(1),
    #contato .container .content .text:nth-child(3){
        display: none;
    }
    #contato .container .formulario{
        position: absolute;
        top: 8%;
        width: 60%;
        height: 72%;
    }
}
@media (max-width: 750px){
    #contato .container .content .text{
        width: 60%;
    }
    #contato .container .formulario{
        width: 70%;
    }
}
@media (max-width: 750px){
    #contato .container .content .text{
        width: 70%;
    }
    #contato .container .formulario{
        width: 80%;
    }
}
@media (max-width: 486px){
    #contato .container .content .text{
        width: 85%;
    }
    #contato .container .formulario{
        width: 90%;
    }
}
@media (max-width: 425px){
    #contato .container .content .text{
        width: 95%;
    }
    #contato .container .formulario{
        width: 96%;
    }
    #contato .container .formulario form .box{
        margin: 8% auto;
        width: 90%;
    }
}
@media (max-width: 326px){
    #contato .container .content .text{
        width: 100%;
    }
    #contato .container .formulario{
        width: 96%;
    }
    #contato .container .formulario form .box{
        margin: 10% auto;
        width: 94%;
    }
    #contato .container .formulario form button{
        padding: 3% 17%;
    }
}
@media (max-width: 274px){
    #contato .container .formulario form .box{
        margin: 13% auto;
    }
}

/* SECTION (Contato "card-Sucesso") ----------- */
.card-sucesso{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d4edda;
    color: #232323;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 999;
    font-size: 18px;
    text-align: center;
    animation: fadein 0.5s ease;
}
@keyframes fadein{
    from { opacity: 0; transform: scale(0.95) translate(-50%, -50%); }
    to { opacity: 1; transform: scale(1) translate(-50%, -50%); }
}

/* SECTION (Bag $ User) ----------- */
#bag, #user{
    top: 100%;
    left: 0%;
    width: 100%;
    height: 0%;
    background: #232323;
    transition: .7s ease-in-out;
    z-index: 5;
}
#bag.ativado, #user.ativado{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #232323;
}

/* ScrollReviw */
.scrollReview {
  opacity: 0;
  transform: translateY(70%);
  transition: all 0.8s ease-in-out;
}
.scrollReview.mostrar {
  opacity: 1;
  transform: translateY(0);
}