* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  
  header {
    background: #1c1c1c;
    border-bottom: 2px solid #bfa454;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #bfa454;
  }
  
  .logo span {
    color: #e8c547;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    align-items: center;
  }
  
  nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.ativo {
    color: #e8c547;
  }
  
  .btn-reserva {
    background: #bfa454;
    color: #121212;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .btn-reserva:hover {
    background: #e8c547;
    color: #121212;
  }
  
  .cardapio {
    margin: 4rem 0;
    text-align: center;
  }
  
  .cardapio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #bfa454;
    margin-bottom: 2rem;
  }
  
  .pizzas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .pizza {
    background: #1c1c1c;
    border: 2px solid #bfa454;
    border-radius: 15px;
    width: 300px;
    padding: 1rem;
    box-shadow: 0 0 10px #bfa454aa;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .pizza:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #e8c547;
  }
  
  .pizza img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    height: 180px;
    object-fit: cover;
  }
  
  .pizza h3 {
    font-family: 'Playfair Display', serif;
    color: #e8c547;
    margin-bottom: 0.5rem;
  }
  
  .pizza p {
    font-size: 0.95rem;
    color: #d6cfa3;
    margin-bottom: 0.7rem;
  }
  
  .preco {
    font-weight: 700;
    color: #bfa454;
    font-size: 16px;}