*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    --marine_color: #203761;
    --gray_color: #76808c;
    --ligthblue_color: #00afd8;
    --back_color: #e3ce99;
    /*--yucuma_color: #CDA136;*/
    --yucuma_color: #FEAC2F;
    --wine_color: #882430;
    --raio_color:  #ccc;
    --orange_color: #ff6600;
}
@font-face {
    font-family: 'MADE Tommy';
    src: url('fonts/MADE\ TOMMY\ Bold_PERSONAL\ USE.otf') format('opentype'); 
    font-weight: 700;
    font-style: normal; 
}
@font-face {
    font-family: 'MADE Tommy';
    src: url('fonts/MADE\ TOMMY\ Light_PERSONAL\ USE.otf') format('opentype'); 
    font-weight: 400;
    font-style: normal; 
}
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
b{
    color: var(--wine_color);
}
h1, h2, h3, p, a, span{
    font-family: 'MADE Tommy', sans-serif;
    font-weight: 700;
}
a{
    text-decoration: none;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=*/
header{
    background-color: var(--yucuma_color);
    width: 100dvw;
    display: flex;
    align-items: center;   
    justify-content: space-evenly;
    position: fixed;
    top: 0;
    z-index: 1;
}

header .home, header .content{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
header .content a img{
    height: 90%;
}
header .content a{
    padding: 7px;
    border-radius: 5px;
    background-color: var(--back_color);
    color: var(--wine_color);
}
header .home a{
    height: 90%;
}
header .home a img{
    height: 90%;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={html}*/
body{
    overflow-x: hidden;
    background: var(--back_color);
}
html{
    background-color: var(--yucuma_color);
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={1 SECTION}*/

main .banners {
    position: relative;
    overflow: hidden;
}

main .banners .buttons_selec {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
}



main .banners .buttons_selec input {
    width: 35px;
}

main .banners .buttons_selec input:checked{
    background: var(--orange_color);
}

input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--raio_color);
  cursor: pointer;
}

main .banners .carretel {
    width: 400%; /* 4 imagens */
    display: flex;
    transition: transform 0.5s ease;
}

main .banners .carretel img {
    width: 100vw;
    flex-shrink: 0;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={DEMAIS SECTIONS}*/
main .sections, footer .sections{
    margin-top: 60px;
    padding: 20px;
}
main .sections h2, footer .sections h2{
    font-size: 36px;
    font-weight: 400;
    color: var(--wine_color);
}
main .sections#cardapio h2, main .sections#tittle_horarios h2{
    margin-bottom: 30px;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={2 SECTION}*/
main .sections#tittle_history{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 400px;
}

main .sections#tittle_history .texto_historia{
    width: 100%;
    padding-top: 30px;
}
main .sections#tittle_history .texto_historia #texto_1, main .sections#tittle_history .texto_historia #texto_2{
    width: 100%;
}
main .sections#tittle_history .texto_historia #texto_2{
    display: flex;
    justify-content: right;
    margin-top: 40px;
}
main .sections#tittle_history .texto_historia #texto_2 .txt{
    text-align: end;
}



main .sections#tittle_history .texto_historia p{
    font-weight: 400;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={3 SECTION}*/
main .sections#cardapio h2{
    text-align: center;
}
main .cardapio{
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}
main .cardapio div{
    margin: 8px;
    cursor: pointer;
    overflow: hidden;
}
main .cardapio div img{
    width: 100%;
    transition: transform 0.5s;
}
main .cardapio div:hover img{
    transform: scale(1.1);
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={LINHA CONTATO}*/
main .linha_contato{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
main .linha_contato a{
    color: var(--yucuma_color);
    background-color: var(--wine_color);
    padding: 4px 24px;
    font-size: 1.5rem;
    border-radius: 3px 15px 3px 15px;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={4 SECTION}*/
main .sections#tittle_horarios h2{
    text-align: center;
}
main .sections#tittle_horarios .bloco_horarios{
    width: 100%;
    display: flex;
    justify-content: space-around;
}
main .sections#tittle_horarios .bloco_horarios .card_horarios{
    width: auto;
    border-radius: 4px;
    /*box-shadow: 1px 1px 1px 1px var(--yucuma_color);*/
    /*background-color: #ffc979;*/
    .l1{
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0px;
    }
    p{
        font-size: 1.5rem;
        font-weight: 400;
        margin: 0px 3px;
    }
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={INSTAGRAM}*/
main .sections#instagrams{
    display: flex;
    padding: 0;
}
main .sections#instagrams .box_insta{
    width: 310px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    height: auto;
    overflow: hidden;
}
main .sections#instagrams .box_insta blockquote{
    width: 100%;
    height: 100%;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={FOOTER}*/
footer{
    padding: 20px 10px 20px 10px;
    background-color: var(--yucuma_color);
    width: 100dvw;
    display: flex;
    align-items: center;
    justify-content: space-around;

}
footer .box#mapa iframe{
    width: 100%;
}

footer .box#text{
    background-color: var(--yucuma_color);
    display: block;
    justify-content: center;
    padding: 20px;
    padding-top: 50px;
}

footer .box#text p{
    color: var(--wine_color);
    margin-top: 35px;
    
}
footer .box#text p#line{
    font-weight: 400;
}

footer .box#text a{
    color: var(--wine_color);
}
footer .box#text img.ico{
    width: 18px;
    height: auto;
    vertical-align: middle;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={CRIADO POR}*/
#vs_web{
    width: 100dvw;
    background-color: var(--yucuma_color);
    display: flex;
    justify-content: end;
    padding-right: 30px;
}
#vs_web a{
    font-weight: 400;
    color: var(--back_color);
    font-size: 12px;
}
/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+={WHATSAPP BUTTON}*/
img#whatsapp-button{
    width: 75px;
    position: fixed;
    bottom: 10px;
    right: 15px;
    z-index: 1;
}





















@media only screen and (max-width: 480px) {
    header{
        height: 70px;
    }
    main{
        margin-top: 70px;
    }
    header .content a{
        font-size: 12px;
        margin: 5px;
    }
    main .sections#tittle_horarios{
        padding: 2px;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios{
        height: 180px;
        padding: 5px;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p{
        font-size: 1rem;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p.mais_pontos, main .sections#tittle_horarios .bloco_horarios .card_horarios p.menos_pontos{
        display: none;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p.mini_pontos{
        display: block;
    }
    main .section#instagrams .box_insta{
        width: 250px;
    }
    main .sections#instagrams{
        justify-content: center;
    }
    main .sections#instagrams{
        flex-direction: column;
        align-items: center;
    }
    main .cardapio div{
        flex: 1 1 180px;
    }
    main .banners img.desktop{
        display: none;
    }
    main .banners img.mobile{
        display: block;
    }
    footer{
        flex-direction: column;
    }
    main .sections#tittle_history .texto_historia p{
        font-size: 0.9rem;
    }
    main .sections#tittle_history .texto_historia .txt{
        width: 80%;
    }
}
@media only screen and (min-width: 481px) {
    header{
        height: 70px;
    }
    main{
        margin-top: 70px;
    }
    header .content a{
        font-size: 12px;
        margin: 5px;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios{
        height: 180px;
        padding: 30px;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p{
        font-size: 1.1rem;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p.mais_pontos, main .sections#tittle_horarios .bloco_horarios .card_horarios p.mini_pontos{
        display: none;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p.menos_pontos{
        display: block;
    }
    main .sections#instagrams{
        flex-direction: column;
        align-items: center;
    }
    main .cardapio div{
        flex: 1 1 180px;
    }
    main .banners img.desktop{
        display: none;
    }
    main .banners img.mobile{
        display: block;
    }
    footer{
        flex-direction: column;
    }
    footer .box{
        width: 90%;
    }
    main .sections#tittle_history .texto_historia p{
        font-size: 0.9rem;
    }
    main .sections#tittle_history .texto_historia .txt{
        width: 80%;
    }
}
@media only screen and (min-width: 520px){
    main .sections#tittle_horarios .bloco_horarios .card_horarios p{
        font-size: 1rem;
    }
}
@media only screen and (min-width: 768px) {
    main .sections#tittle_horarios .bloco_horarios .card_horarios{
        height: 280px;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p{
        font-size: 1.5rem;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p.mais_pontos{
        display: block;
    }
    main .sections#tittle_horarios .bloco_horarios .card_horarios p.menos_pontos, main .sections#tittle_horarios .bloco_horarios .card_horarios p.mini_pontos{
        display: none;
    }
    main .cardapio div{
        flex: 1 1 225px;
    }
    main .banners img.desktop{
        display: block;
    }
    main .banners img.mobile{
        display: none;
    }
    main .sections#tittle_history{
        padding-left: 70px;
        padding-right: 70px;
    }
    main .sections#tittle_history .texto_historia p{
        font-size: 1rem;
    }
    main .sections#tittle_history .texto_historia .txt{
        width: 70%;
    }
}
@media only screen and (min-width: 992px) {
    header{
        height: 100px;
    }
    main{
        margin-top: 100px;
    }
    header .content a{
        font-size: 16px;
        margin: 10px;
    }
    main .sections#instagrams{
        flex-direction: row;
        justify-content: space-around;
    }
    footer{
        flex-direction: row;
    }
    footer .box{
        width: 45%;
    }
    main .cardapio div{
        flex: 1 1 170px;
    }
    main .sections#tittle_history{
        padding-left: 120px;
        padding-right: 120px;
    }
    main .sections#tittle_history .texto_historia p{
        font-size: 1.2rem;
    }
    main .sections#tittle_history .texto_historia .txt{
        width: 50%;
    }
}
@media only screen and (min-width: 1200px) {
    main .sections#tittle_history{
        padding-left: 150px;
        padding-right: 150px;
    }
    main .sections#tittle_history .texto_historia p{
        font-size: 1.5rem;
    }

}