:root{
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255,255,255,0.3);
    font-size: 10px;
}


*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
    color: white;
}

body{
    background-color: var(--bg);
}

section{
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header do site */

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: var(--border);
    background-color: var(--bg);
}

.header section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.header .navbar a{
    margin: 0 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
    font-size: 2rem;
}

.icons .fa-magnifying-glass, .icons .fa-cart-shopping{
    color: #fff;
    margin: 1rem;
    font-size: 23px;
    cursor: pointer;
}

.icons .fa-cart-shopping:hover{
    color: var(--main-color);
    transform: translateY(-1rem);
}

.icons .fa-magnifying-glass:hover{
    color: var(--main-color);
    transform: translateX(-4rem);
}

/* Fim Header do site */

/* Main do site */

.btn{
    background: var(--main-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 5px;
}

.btn:hover{
    background: #fff;
    color: var(--main-color);
    letter-spacing: 0.1rem;
}  

/* Seção Home do site */

.home-container{
    background: url(images/home-img.jpg);
    background-position: center;
    background-size: cover;
}

.home-container{
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-right: 90rem;
}

.content{
    max-width: 60rem;
}

.content h1{
    color: #fff;
    font-size: 6rem;
}

.content p{
    color: #fff;
    font-size: 2rem;
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 0;
    text-align: justify;
    text-transform: none;
}

/* Fim Seção Home do site */

/* Seção About do site */

.title{
    font-size: 4rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.title span{
    color: #fff;
    text-transform: uppercase;
}

.about .row{
    display: flex;
    align-items: center;
    background-color: var(--black);
    gap: 1.5rem;
    border-radius: 5px;
}


.about .row .content{
    padding: 2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color: #fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
    text-transform: none;
}
/* Fim Seção About do site */

/* Seção menu do site */

.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box{
    text-align: center;
    border: var(--border);
    padding: 5rem;
    cursor: pointer;
}


.menu .box-container .box img{
    height: 10rem;
}

.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box p{
    color: #fff;
    font-size: 1.4rem;
    text-align: justify;
    text-transform: none;
}

.menu .box-container .box .price{
    color: #fff;
    font-size: 1.8rem;
    padding: 1rem 0;
}

.menu .box-container .box .price span{
    font-size: 1.2rem;
    color: #fff;
    text-decoration: line-through;
    font-weight: 100;
}

.menu .box-container .box:hover{
    background-color: var(--black);
}

/* Fim Seção menu do site */

/* Seção Avaliações do site */

.review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}

.review .box-container .box p{
    font-size: 1.5rem;
    color: #fff;
    padding: 2rem 0;
    line-height: 1.8;
    text-transform: none;
    font-weight: lighter;
}

.review .box-container .box .user{
    height: 9rem;
    width: 9rem;
    border-radius: 50%;
}

.review .box-container .box .review-name{
    font-size: 1.8rem;
    color: #ffffff;
    padding: 1rem 0;
}

.review .box-container .box .stars{
    font-size: 1.8rem;
}

/*Fim Seção Avaliações do site */

/* Seção Endereço do site  */

.address{
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Fim Seção Endereço do site  */

/* Fim Main do site */

/* Footer do site */

.footer{
    text-align: center;
    padding: 0.5rem;
   border-top: var(--border);
}

.footer .share{
    padding: 1rem 0;
    margin: 0.3rem;
    cursor: pointer;
    padding: 1rem;

}

.footer .share .fa-brands{
    font-size: 2.4rem;
    color: #fff;
    margin: 0.5rem;
}

.footer .share .fa-brands:hover{
    color: var(--main-color);
    transform: translateY(-1rem);
}

