: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;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: var(--bg);
}

section {
    padding: 3rem;
    margin: 0 auto;
    max-width: 1200px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;   
    background-color: var(--bg);
    border-bottom: var(--border);
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    padding-bottom: 1.5rem;
}

.navbar a {
    margin: 0 2rem;
    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;
    border-radius: 50%;
    padding: 1rem;
}

.icons img:hover {
    width: 35px;
    height: 35px;
    background-color: var(--main-color);
}

.btn {
    background: var(--main-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
}

.btn:hover {
    letter-spacing: 0.1rem;
}

.home-container {
    background-image: url(img/fundo.jpg);
    background-position: top;
    background-size: cover;
}

.home-container section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.home-container section .btn {
    border: 3px solid rgba(255,255,255,0.3);
    margin: 0.5rem;
}
.content {
    max-width: 60rem;
}

.content h1 {
    color: #fff;
    font-size: 6rem;
}

.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: #1B1B1B;
    gap: 1.5rem;
    border: var(--border);
    border-radius: 3px;
}

.about .row img {
    margin-left: 2rem;
}

.about .row .content {
    padding: 2rem;
}

.about .row .content p{
    font-size: 2rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;   
    font-weight: lighter;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.principal {
    background-color: #1B1B1B;
}
.menu .box-container .box {
    text-align: center;
    border: var(--border);
    padding: 5rem;
    cursor: pointer;
}

.menu .box-container .box:hover{
    background-color: #fff;
}

.menu .box-container .box img {
    height: 6rem;
}

.menu .box-container .box h3 {
    color: var(--main-color);
    font-size: 2.4rem;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    color: #fff;
    font-size: 1.5rem;
    padding: 2rem 0;
}

.menu .box-container .box span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover>*{
    color: var(--black);
}

.locais .box-container{
    display: grid;
}

.locais .box-container .box {
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}

.locais .box-container ul {
    font-size: 3rem;
    color: #fff;
    padding: 2rem 0;
    line-height: 1.8;
    font-weight: lighter;
    list-style-type: none;
}

.locais .box-container li {
    padding: 1.5rem 0;
}

.locais .box-container li .cidades {
    padding: 1rem;
}

.locais .box-container h3 {
    color: #fff;
    font-size: 2rem;
    margin: 1rem 0;
}

.locais .box-container .box .user {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
}

.address {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer {
    display: flex;
    text-align: center;
}

.footer .contato {
    margin: 0 100px;
    text-align: left;
}

.footer .contato p {
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.footer .contato h2 {
    color: #fff;
    font-size: 2.5rem;
    padding: 3rem 0;
}

.contact-form {
    width: 60rem;
    height: 35rem;
    padding: 0 40px;
    background: #1B1B1B;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 20px;
}

.contact-form h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
}

.contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-form .input-box input, 
.contact-form .input-box textarea
{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
    resize: none;
    background: #1B1B1B;
    color: #fff;
}

.contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #fff;
}

.contact-form .input-box input:focus~ span, 
.contact-form .input-box input:valid~ span,
.contact-form .input-box textarea:focus~ span, 
.contact-form .input-box textarea:valid~ span
{
    color: var(--main-color);
    font-size: 12px;
    transform: translate(0, -20px);
}

.contact-form .input-box input[type="submit"] {
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 20px;
}

.mini-footer {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;   
}
.mini-footer  .share {
    padding: 1rem 0;
}

.mini-footer .share img {
    margin: 0.3rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 1rem;
}

.mini-footer .share img:hover {
    background-color: var(--main-color);
}

.mini-footer .share p {
    font-size: 1.2rem;
    margin: 0.3rem;
    padding: 1rem;
    color: #fff;
}

.navbar-mobile {
    background-color: #0000008c;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    transition: 0.5s;
    overflow: hidden;
}

.navbar-mobile nav a{
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    font-size: 16pt;
}

.navbar-mobile nav a:hover {
    background-color: #00000080;
}

#btn-menu {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    background: transparent;
    outline: none;
    transition: 0.2s;
    cursor: pointer;
    display: none;
}

#btn-menu.ativacao {
    border: 2px solid red;
}

#btn-menu.ativacao .linhas:nth-child(1){
    transform: translateY(8px) rotate(-45deg);
    background-color: red;
}

#btn-menu.ativacao .linhas:nth-child(3){
    transform: translateY(-8px) rotate(45deg);
    background-color: red;
}

#btn-menu.ativacao .linhas:nth-child(2){
    width: 0;
}

.linhas {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 5px auto;
    position: relative;
    transform-origin: center;
    transition: 0.2s;
}

@media screen and (max-width: 1020px) {
    .navbar, .icons{
        display: none;
    }


    .content h1 {
        font-size: 4rem;
    }

    .row {
        flex-direction: column
    }

    .container-image img {
        width: 300px;
        height: 250px;
    }

    .about .row img {
        margin: 0;
        padding-top: 2rem;
    }

    .address iframe {
        width: 330px;
        height: 300px;
    }

    .footer {
        display: flex;
        flex-direction: column;
    }
    
    .footer .contato {
        margin: 0;
        text-align: left;
    }
    .contact-form {
        width: 25rem;
        height: 35rem;
        margin: auto;
        margin-top: 5rem;
    }

    .navbar-mobile.abrir {
        visibility: visible;
        height: calc(100vh - 77px);
    }

    #btn-menu {
        display: block;
    }
}