/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #1c1c1c, #121212);
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    padding: 20px;
    max-width: 600px;
    width: 100%;
  }
  
  .hidden {
    display: none;
  }
  
  h1, h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 2rem;
    color: #ff4d6d;
  }
  
  h2 {
    font-size: 1.5rem;
    color: #f5f5f5;
  }
  
  .slogan {
    text-align: center;
    font-style: italic;
    color: #ff4d6d;
    margin-bottom: 30px;
  }
  
  .cards, .event-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .card, .event-card {
    background-color: #2c2c2c;
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover, .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,77,109,0.5);
  }
  
  button {
    display: block;
    margin: 20px auto 0;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    background-color: #ff4d6d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background-color: #e63b57;
  }
  
  input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 16px;
  }
  
  input::placeholder {
    color: #aaa;
  }
  
  .error {
    color: #ff4d6d;
    text-align: center;
    margin-top: 10px;
  }

  /* ===== Seção Jantar ===== */
.jantar-section {
  background-color: #2c2c2c;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  margin-top: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.jantar-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.5);
}

.jantar-section h2 {
  color: #ff4d6d;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.jantar-section p {
  font-size: 1rem;
  color: #f5f5f5;
  margin: 8px 0;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background-color: #25D366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebc5b;
}

  
  /* Grid de cards para telas maiores */
  @media (min-width: 600px) {
    .event-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }
  
  @media (min-width: 900px) {
    .container {
      max-width: 800px;
    }
  
    h1 {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    button {
      font-size: 18px;
      padding: 16px 40px;
    }
  
    input {
      padding: 16px;
      font-size: 18px;
    }
  }
  