:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;

}





body {

    background-color: var(--bg);
    margin: 0%;
    padding: 0%;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
    text-transform: capitalize;

}

@media (max-width: 600px) {}

p {
    color: white;
    font: 16pt 'Roboto', sans-serif;

}

.protest-guerrilla-regular {
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: 400;
    font-style: normal;
}

section {

    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.header {
    background-color: var(--bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: var(--border);
}

.header section {


    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;

}

.nav a {
    font: 300 1.8rem 'Roboto', sans-serif;
    transition: 0.2s linear;
    text-decoration: none;
    margin: 0 3rem;
    font-size: 1.8rem;
    color: white;


}


.nav a:hover {
    color: var(--main-color);
    border-bottom: 0.2rem solid var(--main-color);
    padding-bottom: 0.5rem;
    font-size: 2rem;

}

.icons img {
    margin: 1rem;
    cursor: pointer;


}

.icons img:hover {
    width: 40px;
    height: 40px;
    transition: 0.2s linear;
}

.btn {

    display: inline-block;
    padding: 0.8rem 3rem;
    text-decoration: none;
    color: white;

    background-color: var(--main-color);
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: 0.5rem;
    position: relative;

}

.btn:hover {

    transition: 0.2s linear;
    border: 0.2rem solid var(--main-color);
    padding: 1rem 3.5rem;
}

.conteiner {
    background: url("https://img.freepik.com/premium-photo/beat-see-holder-coffee-coffee-beans-loot-dim-foundation-ai-generated_581634-11339.jpg");
    height: 100vh;
    background-position: center;
    background-size: cover;

}

.conteiner section {
    display: flex;
    align-items: center;
    height: 100vh;
}

.controle {
    max-width: 60rem;
}

.controle h3 {
    color: white;
    font-size: 6rem;
}

.inicio span {
    color: var(--main-color);
    text-transform: uppercase;
}

.controle p {
    color: rgba(255, 255, 255, 0.767);
    font-size: 2rem;
    line-height: 1.8;
    padding: 1rem 0;
}

.titulo {
    font-size: 3rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5rem;
    margin-top: 1rem;

}

.titulo span {
    color: white;
    text-transform: uppercase;
}

.abaut .row {
    display: flex;
    text-align: center;
    background-color: var(--black);
    gap: 1.5rem;
}

.abaut .row .conteiner-texto {

    padding: 2rem;

}

.abaut .row .conteiner-texto h3 {
    font-size: 3rem;
    color: white;

}

.abaut .row .conteiner-texto h3 span {
    color: var(--main-color);
}

.abaut .row .conteiner-texto p {
    font-size: 1.6rem;
    color: white;
    padding: 1rem 0;
    line-height: 1.8rem;

}

.row {
    border-radius: 20px;
}

.sobre-nos {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.menu .box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-produto {
    text-align: center;
    border: var(--border);
    padding: 5rem;
    cursor: pointer;

}

.menu .box .box-produto h3 {
    color: white;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box .valor {
    color: white;
    font-size: 2.5rem;
    padding: 2rem 0;
}

.menu .box .valor span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box .box-produto:hover>* {
    color: var(--black);
}


.menu .box .box-produto:hover {
    background-color: white;


}

.address {
    text-align: center;
    background-color: var(--black);
    padding: 3rem 0;
    font-size: 2rem;
    color: white;
}