/* Importando uma fonte elegante do Google Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@300;400&display=swap');

  header {
    background-color: #0d2c22; /* Verde esmeralda profundo */
    color: #f4f1ea;           /* Off-white para suavizar o contraste */
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Montserrat', sans-serif;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
  }

  nav a {
    color: #f4f1ea;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    opacity: 0.8;
  }

  nav a:hover {
    opacity: 1;
    color: #c5a059; /* Toque de dourado suave no hover */
  }