:root{
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    box-sizing: border-box;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
}

html, body{
    width: 100%;
}

body{
    background-color: var(--bg);
    
}

section{
    width: 100%;
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.header{
    width: 100%;
    border-bottom: var(--border);
    background-color: #000;
    z-index: 99;
    position: sticky;
    top: 0;
}

.header section{
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header section .logo img{
    width: 60px;
}

.header section .icon-menu-list{
    display: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.header section .navbar ul{
    display: flex;
    gap: 10px;
}

.header section .navbar ul li{
    list-style: none;
}

.header section .navbar a{
    font-size: 1.8rem;
    color: #fff;
    
}

.header section .navbar ul li:hover{
    transform: scale(1.03);
}

.header section .navbar ul li:hover a{
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem; 
}

.header section .icons{
    width: 80px;
    text-align: center;
}

.header section img{
    margin: 1rem;
    cursor: pointer;
}

.header section img:hover{
    transform: scale(1.07);
}

.btn{
    background-color: var(--main-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    animation: effectTranslate 1s ease-in;
    border-radius: 1rem;
}

.btn:hover{
    transform: scale(1.04);
}

.home-container{
    background-image: url("./img/home-img.jpg");
    
    background-position: center;
    background-size: cover;
}

.home-container section{
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.content{
    max-width: 60rem;
}

.content h3{
    color: #fff;
    font-size: 6rem;
    animation: effectFade 2s ease-in-out;
}

.content p{
    color: #fff;
    font-size: 2rem;
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 0;
    animation: effectFade 2s ease-in-out;
}

.about .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    gap: 1.5rem;
    width: 100%;
    padding: 15px;
}

.about .row img{
    
    width: 100%;
}

.about .row .content{
    padding: 2rem;
    text-align: center;
}

.about .row .content h3{
font-size: 3rem;
color: wnite;
}

.about .row .content p{
    font-size: 1.6rem;
    color: white;
    padding: 1rem 0;
    line-height: 1.8;
}

.title{
    font-size: 4rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.title span{
    color: white;
    text-transform: uppercase;
}

    .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 10px;
}

.menu .box-container .box img{
    height: 10rem;
}

.menu .box-container .box h3{
    color: white;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box .price{
    color: white;
    font-size: 2.5rem;
    padding: 0.5rem 0;
}


.menu .box-container .box .price span{
    font-size: 1.4rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box{
    text-align: center;
    border: var(--border);
    padding: 5rem;
    cursor: pointer;
}

.menu .box-container .box:hover{
    background-color: white;
}

.menu .box-container .box:hover>*{
    color: var(--black);
}

.review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}

.review .box-container .box p{
    font-size: 1.5rem;
    color: white;
    padding: 2rem 0;
    line-height: 1.8;
}

.review .box-container .box h3{
    color: white;
    margin-top: 5px;
    font-size: 2rem;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
}

.address {
    display: flex;
    align-items: center;
    flex-direction: column; 
    padding: 10px; 
    width: 100%;
}

.address .container-map{
    border: 5px solid var(--main-color); 
    width: 90%;
    max-width: 600px;
    height: 450px;
    border-radius: 3rem;
    overflow: hidden;
}

.address .container-map iframe{
    border: 5px solid var(--main-color); 
    width: 100%;
    height: 100%;
}

footer{
    text-align: center;

}

footer .share{
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

footer .share i{
    cursor: pointer;
    margin: 0.3rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
}

footer .share i:hover{
    background-color: var(--main-color);
}

/*ANIMAÇÕES*/
@keyframes effectFade{
    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }
}

@keyframes effectTranslate{
    from{
        opacity: 0;
        transform: translateX(-200px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }
}


/* RESPONSIVIDADE */
@media screen and (max-width: 584px){
    
    .header section .icon-menu-list{
        display: block;
        margin: 0 auto;
        transition: all 0.4s ease-in-out;
    }

    .header section .navbar ul{
        display: none;
        gap: 10px;
    }

     .header #navbar-mobile ul{
        text-align: center;
        padding: 5px;
    }
  
    .header #navbar-mobile ul li{
        padding: 1rem 0;
        list-style: none;
        cursor: pointer;
        transform: translateX(-350px);
    }
    .header #navbar-mobile ul li:hover{
        background-color: #fff;
    }
    .header #navbar-mobile ul li:hover a{
        color: #000;
        font-weight: 600;
    }

    .header #navbar-mobile ul li a{
        font-size: 1.5rem;
        color: #fff;
    }
}
