* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff9f2;
  color: #4a3f35;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}

.container {
  max-width: 400px;
  width: 100%;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8c6a56;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #b38a6f;
  margin: 0.5rem 0;
  line-height: 1.3;
}

.section {
  margin: 25px 0;
}

.date {
  font-weight: 600;
  font-size: 1.2rem;
  color: #6d5f4f;
}

.address {
  font-size: 1.1rem;
  color: #7a6b5a;
}

.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

.links a {
  padding: 12px 10px;
  background-color: #f0e6db;
  color: #6d5f4f;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.links a:hover {
  background-color: #e0d5c8;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #a78a72;
}

/* Responsividade */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
