  :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-transform: capitalize;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
  }

  body {
    background: var(--bg);

  }

  section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: var(--border);
    background: var(--bg);

  }

  .header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    background: none;
    margin: 0;
    padding: 0;

  }

  .navbar a {
    margin: 0 1rem;
    color: #fff;
    font-size: 1.9rem;
    transition: 0.3s ease;
    display: inline-block;


  }

  .navbar a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
    transform: translateY(-5px);
  }

  .icons img {
    margin: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    transform: translateY(-5px);


  }

  .icons img:hover {
    width: 40px;
    height: 40px;

  }

  .icons img:active {
    transform: scale(0.90);
  }


  .btn {
    background: var(--main-color);
    color: #fff;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 2rem;
    display: inline-block;
    border-radius: 2rem;
    transition: 0.3s;

  }

  .btn:active {
    transform: scale(0.95);
  }


  .btn:hover {
    letter-spacing: 0.1rem;
    background: #fff;
    color: var(--main-color);
  }

  .home-container {
    background: url('./img/home-img copy.jpg');

    background-position: center;
    background-size: cover;


  }

  .home-container section {
    height: 100vh;
    display: flex;
    align-items: center;
    min-height: 100vh;
  }

  .content {
    max-width: 800px;

  }

  .content h3 {
    color: #fff;
    font-size: 6rem;
  }



  .content p {
    color: #fff;
    font-size: 2rem;
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 0;

  }

  .title {
    display: flex;
    font-size: 3rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
    gap: 1rem;
    justify-content: center;

  }

  .title span {
    color: #fff;
    text-transform: uppercase;

  }

  .about .row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--black);
  }

  .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;
  }

  .menu h2 {
    display: flex;
    font-size: 3rem;
    color: var(--main-color);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: -20px;
  }

  .menu h2 span {
    color: #fff;
    text-transform: uppercase;

  }

  .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }




  .box-container .box {
    background: var(--black);
    border: var(--border);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s ease;


  }

  .menu .box-container .box:hover {
    color: #fff;
    background-color: var(--main-color);
    transform: translateY(-5px);

  }


  .menu .box-container .box:hover .btn {
    background: #fff;
    color: var(--main-color);

  }

  .menu .box-container .box h3 {
    font-size: 2.5rem;
    color: #fff;
    padding: 1rem 0;


  }

  .menu .box-container .box p {
    font-size: 1.5rem;
    color: #fff;
    padding: 0.5rem 0;
    margin-top: -1rem;


  }


  .new-price {
    font-size: 1.5rem;
    color: #fff;
    padding: 0.5rem 0;
  }

  .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    font-weight: lighter;
    color: #fff
  }

  .menu .box-container .btn {
    display: block;
    width: fit-content;
    background: var(--main-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 1rem auto 0 auto;
    border-radius: 2rem;
    text-align: center;



  }

  .review .title {
    margin-bottom: 1rem;
    font-size: 3rem;
    margin-top: -20px;
  }


  .menu .box-container .box img {

    width: 100%;
    height: auto;
    max-height: 15rem;
    object-fit: contain;
    margin-bottom: 1rem;
  }


  .review .box-container .box {
    background: var(--black);
    border: 1px solid #222;
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    width: 420px;
    border: var(--border)
  }

  .review .box-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }



  .review .box-container .box .user {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    padding: 0;
    border: none;
  }

  .review .box-container .box h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .review .box-container .box p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
  }

  .user {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .box-container.user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding-bottom: 10px;
    
  }



  .user-container.user img {
    width: 20px;
    height: 20px;
    display: block;
  }

  .address {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .contente h3 {
    text-align: center;
    color: #fff;
    font-size: 6rem;
  }

  .contente p {
    color: #fff;
    font-size: 2rem;
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 0;

  }


  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0rem;
    cursor: pointer;
    border-top: var(--border);
    margin-top: 2rem;
  }

  .footer .share img {
    width: 35px;
    height: 35px;
    margin: 0 1rem;
    border-radius: 50%;
    transition: 0.3s ease;
  }

  .footer .share img:hover {
    transform: scale(1.15);
  }



  .carrinho {
    position: relative;
    cursor: pointer;
  }

  #contador {
    position: absolute;
    top: -6px;
    right: -8px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
  }

  .carrinho-lista {
    display: none;
    position: fixed;
    right: 20px;
    top: 80px;
    background: #222;
    color: #fff;
    padding: 10px;
    width: 220px;
    border-radius: 8px;
    z-index: 1000;
  }

  #cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #cart-items li {
    list-style: none;
    margin-bottom: 5px;
  }

  #home,
  #menu,
  #sobre,
  #contato,
  #avaliacoes,
  #review {
    scroll-margin-top: 100px;
  }

  html {
    scroll-behavior: smooth;
  }

  @media (max-width: 768px) {
    .about .row {
      flex-direction: column;
      gap: 1rem;
      display: flex;
      text-align: center;
      align-items: center;

    }

    .header section {
      flex-direction: column;
      gap: -1rem;
      font-size: 1rem;
    }

    .home-container section {
      height: auto;
      padding: 2rem;
      text-align: center;
      align-items: center;
    }

    .content h3 {
      font-size: 3rem;
      text-align: center;
    }

    .content p {
      font-size: 1.5rem;
      text-align: center;
    }

    .menu h2 {
      font-size: 2.5rem;
    }

    .box-container .user{
      grid-template-columns: 1fr;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    .review .box-container {
      flex-direction: column;
    }

    .title h2 {
      display: flex;
      font-size: 1rem;
      align-items: center;
    }


    .address .row {
      flex-direction: column;
      text-align: center;
      font-size: 1rem;
    }

    .box-container .box h3 {

      display: flex;
      align-items: center;
      justify-content: center;
    }
  }