:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);

    font-size: 10px;
}

#Sinal{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 50%;
    background-color: var(--main-color);
    color: whitesmoke;
    border: 1px black solid;
    width: 400px;
    height: 120px;
    align-items: center;
}

#Sinal h2{
    font-size: 40px;
    color: white;
}



/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
}

/* BODY */
body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: var(--border);
    z-index: 1000;
}

.header section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header img {
    height: 6rem;
}

/* NAVBAR */
.navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.navbar a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
}

/* MENU */

.title {
    text-align: center;
    font-size: 4rem;
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    margin-top: 9rem;
}

.title span {
    color: #fff;
    text-transform: uppercase;
}

.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.5rem;
    padding: 2rem;
}

.menu .box-container .box {
    padding: 0.2rem;
    background: var(--black);
    border-radius: 0.5rem;
    border: var(--border);
    text-align: center;
    cursor: pointer;
}

.menu .box-container .box:hover {
    transform: scale(1.1);
}

.menu .box-container .box img {
    height: 10rem;
}

.menu .box-container .box h3 {
    font-size: 2rem;
    color: #fff;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    padding: 1rem 0;
    font-size: 2.5rem;
    color: var(--main-color);
}

.menu .box-container .box .price span {
    font-size: 2rem;
    color: var(--main-color);
    text-decoration: line-through;
}

.btn {
    padding: 1rem 2rem;
    background: var(--main-color);
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
    display: inline-block;
}

.icons {
    position: relative;
    cursor: pointer;
}

.icons img {
    height: 3rem;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--main-color);
    color: #fff;
    font-size: 1.2rem;
    padding: 0.4rem 0.7rem;
    border-radius: 50%;
}

/* Painel do Carrinho */
.cart {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35rem;
    height: 100vh;
    background: var(--black);
    border-left: var(--border);
    padding: 2rem;
    transition: 0.4s;
    z-index: 2000;
    overflow-y: auto;
}

.cart.active {
    right: 0;
}

.cart h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--main-color);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.cart-total {
    font-size: 2rem;
    margin-top: 2rem;
    border-top: var(--border);
    padding-top: 1rem;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    text-align: right;
    display: block;
    margin-bottom: 1rem;
}