:root{
    --main-color: #d3ad7f; 
    --black: #1a1a1a;
    --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: none;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
}

body{
    background-color: var(--bg);
}

section{
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0; 
    z-index: 99;
    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;
}

.navbar a{
    margin: 0 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.navbar a:hover{
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0,5rem;
    font-size: 2rem;
}

.icons img{
    margin: 1rem;
    cursor: pointer;
}

.icons img:hover{
    width: 40px;
    height: 40px;
}

.btn{
   background: var(--main-color); 
   color: #fff;
   padding: 1rem 3rem;
   font-size: 1.7rem;
   cursor: pointer;
   display: inline-block;
   margin-top: 1rem;
}

.btn:hover {
    letter-spacing: 0.1rem;
    transition: letter-spacing 0.3s ease;
}

.home-container {
    background: url("../img/home-img.jpg");
    background-position: center;
    background-size: cover;
}

.home-container section{
    display: flex; 
    align-items: center;
    min-height: 100vh;
}

.content{
    max-width: 60rem;
}

.content h3{
    color: #fff;
    font-size: 6rem;
}

.content p {
    color: #fff;
    font-size: 1.8rem;   
    font-weight: 200;                        
    line-height: 1.8;  
    max-width: 700px;          
    margin: 0 auto 1.5rem auto;  
    padding: 1rem 0;      
    text-align: justify;         
}


.title{
    font-size: 4rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.title span{
    color: #fff;
    text-transform: uppercase;
}

section.about .row {
    display: flex;
    align-items: center;
    background-color: var(--black);
    gap: 1.5rem;
}

section.about .row .content {
    padding: 2rem;
}

section.about .row .content h3 {
    font-size: 3rem;
    color: #fff;
}

section.about .row .content p {
    font-size: 1.6rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: auto;
}

.menu .box-container .box {
    padding: 2rem;
    text-align: center;
    border: var(--border);
    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 .price {
    color: #fff;
    font-size: 2.5rem;
    padding: 0.5rem 0;
}

.menu .box-container .box .price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover {
    background-color: #fff;
}

.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: #fff;
    padding: 2rem 0;
    line-height: 1.8;
    font-weight: lighter;
}

.review .box-container .box h3{
    font-size: 2rem;
    color: #fff;
    margin: 1rem 0;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
}

.address{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer{
    text-align: center;
}

.footer .share{
    padding: 1rem 0;
}

.footer .share img{
    margin: 0.3rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 1rem;
}

.footer .share img:hover {
    background-color: var(--main-color);
}

/* Responsividade geral */
@media (max-width: 1024px) {
    .content h3 {
        font-size: 4rem;
    }

    .content p {
        font-size: 1.6rem;
    }

    .title {
        font-size: 3rem;
    }

    .menu .box-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 9px;
    }

    .header section {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 1rem;
    }

    .navbar a {
        margin: 0.5rem 0;
    }

    .icons {
        margin-top: 1rem;
    }

    section.about .row {
        flex-direction: column;
    }

    .content h3 {
        font-size: 3rem;
    }

    .content p {
        font-size: 1.5rem;
    }

    iframe {
        width: 100% !important;
        height: auto !important;
    }

    .menu .box-container {
        grid-template-columns: 1fr;
    }

    .review .box-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 8px;
    }

    .header section {
        padding: 1rem;
    }

    .content h3 {
        font-size: 2.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }

    .footer .share img {
        width: 40px;
        height: 40px;
        padding: 0.8rem;
    }
}













