/* estilos comuns do header, footer e nav para inicio */
* {
    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 */
  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 {
    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;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(rgba(18,18,18,0.7), rgba(18,18,18,0.7)), url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: #e8c547;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    flex-direction: column;
  }
  
  .hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px #000;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px #000;
  }
  
  .hero button {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: #bfa454;
    color: #121212;
    box-shadow: 0 0 10px #e8c547;
    transition: background-color 0.3s ease;
  }
  
  .hero button:hover {
    background: #e8c547;
    box-shadow: 0 0 15px #bfa454;
  }
  
  /* Footer */
  footer {
    background: #1c1c1c;
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid #bfa454;
    font-size: 0.9rem;
    color: #8b7c2d;
    font-style: italic;
  }
  
  /* Responsivo */
  @media(max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }