:root{
    --poppins : 'Poppins', sans-serif;
    --dancing : 'Dancing Script', cursive;

    --roxoEscuro : #5D0545;
    --roxoClaro : #7D0C4A;
    --amarelo : #FED83E;
    --amareloHover : #f0c828;
    --verde : #00A850;
    --brancoFundo : #F8F8F8;
    --fundo : #F7F2E2;
    --footer : #333333;

    --sombra : 5px 5px 4px rgba(0, 0, 0, 0.25);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--poppins);
}

body{
    width: 100%;
    height: 100vh;
}

.container{
    width: min(90%, 1200px);
    margin: 0 auto;
}

a{
    text-decoration: none;
}

.btnPedir a .glf-button{
    width: 179px;
    height: 42px;
    padding: 10px 20px;
    color: var(--roxoClaro) !important;
    background-color: var(--amarelo);
    border-radius: 20px;
    box-shadow: var(--sombra);
    font-size: 20px !important;
    font-weight: 500 !important;
    transition: 0.3s;
}

.btnPedir a .glf-button:hover{
    background-color: var(--amareloHover);
    transition: 0.3s;
}

/* Menu */
header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 0;
}

header.sticky{
    background: var(--roxoClaro);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header.sticky .menuBox ul li a{
    color: white;
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container .logo{
    position: relative;
    width: 163px;
    min-width: 163px;
    height: 40px;
    object-fit: cover;
}

.container .logo img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container .menuBox ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container .menuBox ul li{
    list-style: none;
    margin: 0 15px;
}

.container .menuBox ul li a{
    color: black;
    font-size: 18px;    
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.container .menuBox ul li:hover a{
    border-bottom: 1px solid black;
    transition: 0.3s;
}


/* Header */
main section.header{
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.header .container{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin-top: 70px;
    background-image: url(../img/assets/fundo.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 800px;
    opacity: 0.1;
}

.header .container .textBox h1{
    margin-top: 50px;
    font-weight: 800;
    font-size: 110px;
    line-height: 110px;
    color: var(--amarelo);
    text-shadow: var(--sombra);
}

.header .container .textBox h2{
    font-weight: 800;
    font-size: 52px;
    color: var(--roxoClaro);
    text-shadow: var(--sombra);
}

.header .container .imgBox{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 400px;
}

.header .container .imgBox img{
    padding-top: 80px;
    object-fit: cover;
    width: 600px;
}

.header .fundo{
    position: absolute;
    right: -30%;
    top: -100px;
    z-index: -1;
    Width: 1049.22px;
    Height: 923.16px;

    background-image: url("../img/assets/fundo.png");
    background-color: var(--roxoClaro);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 95 0px;
    border-radius: 112px;
    transform: rotate(26.61deg);
}

/* Cardápio */
#cardapio{
    padding: 65px 0 0 0;
}
#cardapio .headline{
    text-align: center;
    margin-bottom: 20px;
}

#cardapio .headline h2{
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--roxoClaro);
}

.headline .preco{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--amarelo);
    border-radius: 30px;
    width: 300px;
    height: 50px;
    margin: 0 auto;
}

.headline .preco div:nth-child(2){
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    padding: 0 15px;
}

.headline .preco h6{
    font-size: 16px;
}
.headline .preco p{
    font-size: 16px;
    font-weight: 600;
    color: var(--roxoEscuro);
}

#cardapio .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px 120px;
    grid-template-areas: 
        "oreo tentação" 
        "nutellinha dourado" 
        "raiz frutado" 
        "crocante crocante"
        "botao botao" ;
    gap: 30px;
    justify-items: center;
}

.oreo{
    grid-area: oreo;
}
.tentacao{
    grid-area: tentação;
}
.nutellinha{
    grid-area: nutellinha;
}
.dourado{
    grid-area: dourado;
}
.raiz{
    grid-area: raiz;
}
.frutado{
    grid-area: frutado;
}
.crocante{
    grid-area: crocante;
    justify-self: center;
}

.botao{
    grid-area: botao;
    justify-self: center;
}

#cardapio .container .sabor-box{
    width: 490px;
    height: 180px;
    border: 2px dashed #CCCCCC;
    border-radius: 23px;
    padding: 12px;
}

.container .sabor-box .sabor-fundo{
    height: 150px;
    background: rgba(242, 203, 47, 0.3);
    border-radius: 23px;
    display: flex;
}

.sabor-box .sabor-fundo .circulo{
    position: relative;
    width: 148px;
    min-width: 148px;
    height: 150px;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
    object-fit: cover;
}

.sabor-box .sabor-fundo .circulo img{
    position: absolute;
    bottom:0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
    
}

.sabor-box .sabor-fundo .text-box{
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.sabor-box .sabor-fundo .text-box h3{
    font-size: 24px;
}

#cardapio .btnPedir{
    margin-top: 20px;
}


/* MONTE O SEU */
#monteoseu{
    position: relative;
    background-color: var(--brancoFundo);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#monteoseu .monte-banner{
    width: 50%;
    height: 700px;
    background-image: url(../img/assets/monte-o-seu-banner.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    text-align: center;
}

#monteoseu .monte-banner h2{
    padding-top: 80px;
    font-size: 54px;
    color: var(--amarelo);
    text-shadow: var(--sombra);
}

#monteoseu .monte-banner h4{
    font-size: 26px;
    color: white;
}

#monteoseu .monte-banner p{
    margin: 0 auto;
    width: 490px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: white;
}

#monteoseu .monte-box{
    position: relative;
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    grid-template-areas: 
        "a b c"
        "f g h"
        'i i i';
    row-gap: 40px; 
    justify-items: center;
}
.a{grid-area: a;}
.b{grid-area: b;}
.c{grid-area: c;}
.d{grid-area: d;}
.e{grid-area: e;}
.f{grid-area: f;}
.g{grid-area: g;}
.h{grid-area: h;}
.i{grid-area: i; align-self: center;}

#monteoseu .monte-box .ingrediente-box{
    position: relative;
    width: 160px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

.monte-box .ingrediente-box .ingrediente-img{
    position: relative;
    width: 160px;
    min-width: 68px;
    height: 160px;
    border-radius: 50%;
}

.monte-box .ingrediente-box .ingrediente-img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 50%;
}

.monte-box .btnPedir{
    width: 100%;
    text-align: center;
    margin-top: 40px;
}


/* Depoimento */
.depoimentos{
    background: var(--fundo);
    padding-bottom: 110px;
    overflow: hidden;
}
.depoimentos .headline{
    text-align: center;
    padding-top: 56px;
    padding-bottom: 76px;
}

.depoimentos .headline h2{
    color: var(--roxoClaro);
    font-size: 42px;
}

.depoimentos .card-box{
    position: relative;
    margin: 0 auto;
}

.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 395px;
    /* height: 400px; */
    background-color: #d1edff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(2px);
}

.swiper-slide-active{
    filter: none;
    background-color: #fff;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%;
}

.depoimentos .card-box .card{
    position: relative;
    width: 395px;
    height: 210px;
    background-color: var(--brancoFundo);
    box-shadow: var(--sombra);
    border-radius: 20px;
    padding: 30px;
}

.card-box .card .cliente{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-box .card .cliente .cliente-foto{
    position: relative;
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 20px;
    object-fit: cover;
}

.card-box .card .cliente .cliente-foto i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--brancoFundo);
}

.card-box .card .cliente .cliente-foto img{
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
}

.card-box .card .cliente .cliente-box p{
    font-weight: 200;
    font-size: 14px;
}

.card-box .card .cliente .rating{
    color: var(--amarelo);
    margin-left: 40px;
}

.card-box .card p{
    /* font-weight: 200; */
    font-size: 14px;
}

/* PROMOÇÃO */
#promocao{
    position: relative;
    padding-bottom: 76px;
}

#promocao .headline{
    text-align: center;
    padding-top: 56px;
    padding-bottom: 76px;

}

#promocao .headline h2{
    color: var(--roxoClaro);
    font-size: 42px;
}

#promocao .headline p{
    text-align: center;
    color: var(--roxoClaro);
}

#promocao .promo-box{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 440px;
    grid-template-areas: "segunda terca quarta quinta sexta";
}
.segunda{grid-area: segunda; background-color: var(--verde); overflow: hidden;}
.terca{grid-area: terca; background-color: var(--roxoClaro); overflow: hidden;}
.quarta{grid-area: quarta; background-color: var(--roxoEscuro); overflow: hidden;}
.quinta{grid-area: quinta; background-color: var(--amarelo); overflow: hidden;}

.promo-box .promo-card{
    position: relative;
}

.promo-box .promo-card .promo-img{
    position: absolute;
    right: -100px;
    bottom: -26px;
    width: 269px;
    height: 370px;
    object-fit: cover;
    /* overflow: hidden; */
}
.promo-box .promo-card:nth-child(2) .promo-img,
.promo-box .promo-card:nth-child(3) .promo-img,
.promo-box .promo-card:nth-child(4) .promo-img{
    right: -170px;
    width: 342px;
}

.promo-box .promo-card .promo-img img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-box .promo-card .promo-text{
    position: relative;
    margin-top: 30px;
    margin-left: 20px;
}

.promo-box .promo-card .promo-text h3{
    font-family: var(--dancing);
    font-size: 46px;
    color: #fff;
}

.promo-box .promo-card .promo-text h2{
    font-size: 52px;
    color: var(--amarelo);
    text-shadow: var(--sombra);
    line-height: 44px;
}

.promo-box .promo-card:nth-child(4) .promo-text h2{
    color: var(--roxoClaro);
}

.promo-box .promo-card .promo-text p{
    width: 150px;
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
}

.promo-box .promo-card .promo-text h6{
    font-size: 26px;
    margin-top: 30px;
    color: var(--amarelo);
    line-height: 44px;
}
.promo-box .promo-card:nth-child(2) .promo-text h6{
    margin-top: 55px;
}

.promo-box .promo-card:nth-child(4) .promo-text h6{
    margin-top: 9px;
    color: var(--roxoClaro);
}

.promo-box .promo-card .promo-btn{
    position: relative;
    margin-top: 30px;
    margin-left: 20px;
}

.promo-box .promo-card .promo-btn button{
    background-color: var(--amarelo);
    border: none;
    border-radius: 20px;
    box-shadow: var(--sombra);
    padding: 10px 20px;
    cursor: pointer;
}
.promo-box .promo-card .promo-btn:hover button{
    background-color: var(--amareloHover);
}

.promo-box .promo-card:nth-child(4) .promo-btn button{
    background-color: var(--roxoClaro);
    
}
.promo-box .promo-card:nth-child(4) .promo-btn:hover button{
    background-color: var(--roxoEscuro);
}

.promo-box .promo-card .promo-btn button a{
    color: var(--roxoClaro);
    font-size: 16px;
    font-weight: 600;
}
.promo-box .promo-card:nth-child(4) .promo-btn button a{
    color: var(--amarelo);
}
.promo-box .promo-card .promo-btn button a i{
    font-size: 20px;
    font-weight: 600;
    margin-left: 5px;
}

/* Sobre */
#sobre{
    position: relative;
}

#sobre .container{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#sobre .container .text-sobre{
    width: 50%;
}

#sobre .container .text-sobre h2{
    font-size: 42px;
    color: var(--roxoClaro);
    text-align: center;
    margin-bottom: 30px;
}

#sobre .container .img-sobre{
    position: relative;
    width: 50%;
    height: 500px;
    text-align: center;
}

#sobre .container .img-sobre img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social */

.social{
    position: relative;
    padding-top: 60px;
    background-color: var(--brancoFundo);
}

.social .info-container{
    position: relative;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 160px;
}

.social .info-container .info-box{
    position: relative;
    width: 324px;
    height: 150px;
    border-radius: 20px;
    border: 2px dashed #ccc;

    display: flex;
    align-items: center;
}

.info-container .info-box .icon{
    position: relative;
    width: 86px;
    min-width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: var(--amarelo);
    margin-left: 10px;
}

.info-container .info-box .icon img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
}
.info-container .info-box .info-text{
    margin-left: 10px;
}

.info-container .info-box h3{
    font-size: 16px;
}

.info-container .info-box p {
    font-size: 12px;
    margin-top: 5px;
}

.social .insta-pic{
    margin-top: 40px;
    height: 400px;
    background-color: #383838;
}

/* CONTATO */

#contato{
    position: relative;
    background-color: var(--roxoClaro);
}
#contato .contato-grid{
    position: relative;
    width: 99%;
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "logo dds mn rede";
}

.logo{grid-area:logo;}
.dds{grid-area:dds;}
.mn{grid-area:mn;}
.rede{grid-area:rede;}

#contato .contato-grid .contato-logo{
    position: relative;
    width: 310px;
    height: 330px;
    text-align: center;
    object-fit: cover;
}

#contato .contato-grid .contato-logo img{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 70%;
    text-align: center;
}

#contato .contato-grid .contato-logo h6{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    width: 70%;
    text-align: center;
    color: var(--brancoFundo);
    font-size: 16px;
    font-weight: 400;
}

#contato .contato-grid .contato-dados,
#contato .contato-grid .contato-menu,
#contato .contato-grid .contato-social{
    position: relative;
    align-self: baseline;
    text-align: center;
    padding-top: 50px;

}

#contato .contato-grid .contato-dados h4,
#contato .contato-grid .contato-menu h4,
#contato .contato-grid .contato-social h4{
    color: var(--brancoFundo);
    font-size: 22px;
    margin-bottom: 30px;
}

#contato .contato-grid .contato-dados .dados{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    color: var(--brancoFundo);
}

#contato .contato-grid .contato-dados .dados i{
    margin-right: 15px;
    font-size: 24px;
}

#contato .contato-grid .contato-menu ul li{
    list-style: none;
    padding-bottom: 10px;
    color: var(--brancoFundo);
}

#contato .contato-grid .contato-menu ul li a{
    color: var(--brancoFundo);
}

#contato .contato-grid .contato-menu ul li:hover a{
    color: var(--amareloHover);
    
}

#contato .contato-grid .contato-menu .btnPedir{
    margin-top: 20px;
}

#contato .contato-grid .contato-social .social-box{
    width: 100%;
    display: flex;
    justify-content: center;
}
#contato .contato-grid .contato-social .social-box div{
    width: 54px;
    height: 54px;
    margin: 0 5px;
    background-color: var(--amarelo);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#contato .contato-grid .contato-social .social-box div a{
    display: inline-block;
}

#contato .contato-grid .contato-social .social-box div i{
    color: var(--roxoClaro);
    font-size: 30px;
    transition: 0.3s;
}

#contato .contato-grid .contato-social .social-box div:hover i{
    font-size: 38px;
    transition: 0.3s;
}

/* FOOTER */

footer{
    width: 100%;
    padding: 16px 1%;
    text-align: center;
    background-color: #383838;
}

footer p{
    color: #fff;
    font-size: 14px;
}

footer p:last-child{
    margin-top: 10px;
}

footer p a{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Responsivo */
@media screen and (max-width: 1150px){
    .header .fundo {
        right: -50%;
    }

    .header .container .imgBox img {
        width: 580px;
    }

}
@media screen and (max-width: 1100px){
    .header .fundo {
        right: -60%;
    }

    .header .container .imgBox img {
        width: 535px;
    }

    #cardapio .container .sabor-box {
        width: 450px;
    }

    #monteoseu .monte-box {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 170px 170px 170px 61px;
        grid-template-areas: 
                "a b" 
                "c f " 
                "g h" 
                'i i';
        row-gap: 15px;
        align-items: center;
    }

    .monte-box .ingrediente-box .ingrediente-img {
        width: 134px;
        height: 116px;
    }

    #promocao .promo-box {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 440px 440px;
        grid-template-areas: "segunda terca" "quarta quinta";
    }

    .promo-box .promo-card .promo-img {
        width: 414px;
        height: 100%;
    }

    .promo-box .promo-card:nth-child(2) .promo-img, 
    .promo-box .promo-card:nth-child(3) .promo-img, 
    .promo-box .promo-card:nth-child(4) .promo-img {
        right: -170px;
        width: 436px;
    }

    .social .info-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        justify-items: center;
    }

    .social .info-container .info-box {
        width: 387px;
    }

}

@media screen and (max-width: 1050px){

    /* Responsive menu ==================================*/
    header,
    header.sticky{
        padding: 20px 50px;
        z-index: 1000;
    }

    .menu{
        position: fixed;
        top:75px;
        left: -100%;
        display: block !important;
        padding: 30px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background-color: var(--brancoFundo);
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.2);
    }

    .menu.active{
        left: 0;
    }

    header ul li a{
        color: var(--black);
        font-size: 24px;
        margin: 30px;
    }

    .toggle{
        width: 40px;
        height: 40px;
        background: url(../img/assets/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
        filter: invert(1);
    }

    .toggle.active{
        background: url(../img/assets/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
        filter: invert(1);
    }

    .header .fundo {
        right: -70%;
    }

    .header .container .imgBox img {
        width: 90%;
        min-width: 365px;
    }

    #cardapio .container {
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    #monteoseu .monte-banner h2 {
        font-size: 43px;
    }
    #monteoseu .monte-banner h4 {
        font-size: 21px;
    }

    #monteoseu .monte-banner p {
        width: 409px;
        font-size: 15px;
    }

    #sobre .container {
        flex-direction: column;
    }
    #sobre .container .text-sobre,
    #sobre .container .img-sobre {
        width: 100%;
    }

    #contato .contato-grid {
        justify-items: center;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: 
        "logo logo logo"
        "dds mn rede";
    }
}

@media screen and (max-width: 950px){
    .header .fundo {
        right: -82%;
    }

    #cardapio .container{
        display: flex;
        flex-direction: column;
    }
    #cardapio .btnPedir{
        margin-bottom: 70px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 850px){
    .header .container {flex-direction: column;}
    .header .bg{margin-top: 0;}
    .header .container .textBox{margin-bottom: 10px;}
    .header .fundo {display: none;}
    .header .container .imgBox {width: 100%;}
    .header .container .imgBox img {width: 60%;}
    #monteoseu {flex-direction: column;}
    #monteoseu .monte-banner {width: 100%;}

    #monteoseu .monte-box {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 200px 200px 80px;
        grid-template-areas:
            "a b c"
            "f g h"
            'i i i';
        row-gap: 15px;
        width: 100%;
        margin: 30px;
    }
    #promocao .promo-box {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 440px 440px 440px 440px;
        grid-template-areas:
            "segunda" "terca"
            "quarta" "quinta";
    }

    .social .info-container {
        grid-template-columns: 1fr;
        grid-template-rows: 160px 160px 160px;
        justify-items: center;
        justify-content: center;
    }

    #contato .contato-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    #contato .contato-grid .contato-dados, 
    #contato .contato-grid .contato-menu, 
    #contato .contato-grid .contato-social {
        position: relative;
        align-self: center;
        text-align: center;
    }
}

@media screen and (max-width:533px)
{
    header .container .btnPedir a {display:none;}
}

@media screen and (max-width:413px){
    header .container {justify-content: space-between;}
    .header .container .textBox h1 {font-size: 88px;}
    .header .container .textBox h2 {font-size: 42px;}
    #cardapio .container .sabor-box {width: 333px;}
    .sabor-box .sabor-fundo .text-box p{font-size: 14px;}
    #monteoseu .monte-banner h2 {font-size: 65px;}
    #monteoseu .monte-banner h4 {font-size: 19px;}
    #monteoseu .monte-banner p {width: 258px;}
    #monteoseu .monte-box {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px 80px;
        grid-template-areas:
            "a b"
            "c f" 
            "g h"
            'i i';
    }
    .depoimentos .card-box .card,
    .swiper-slide{width: 360px;}
    .card-box .card .cliente .rating {margin-left: 10px;}
    .social .info-container {grid-template-rows: 1fr 1fr 1fr; gap: 20px;}
    .social .info-container .info-box {
        flex-direction: column;
        height: 200px;
        text-align: center;
        width: 90%;
    }
    .info-container .info-box .icon {min-height: 86px;margin-top: 5px;}
    .info-container .info-box .info-text{margin-left: 0;}
}