* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #faf7f5;
  color: #6d5650;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #3c2a24;
  letter-spacing: 0.5px;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 2rem;
  }
}

.content {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto;
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

.logo-placeholder {
  width: 12rem;
  height: 5rem;
  border: 1px solid #e8d7d2;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(197, 131, 112, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c58370;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.logo-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.header-section {
  text-align: center;
  margin-bottom: 3rem;
}
.header-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .header-section h1 {
    font-size: 2.5rem;
  }
}
.header-section .separator {
  width: 5rem;
  height: 2px;
  background-color: #c58370;
  margin: 1rem auto;
}
.header-section .intro-text {
  font-size: 1.125rem;
  font-weight: 300;
}

.instructions-section {
  margin-bottom: 3rem;
}
.instructions-section .instructions-intro {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.steps-list {
  list-style: none;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}
.steps-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8d7d2;
}
.steps-list li:last-child {
  margin-bottom: 1.5rem;
}
.steps-list .step-number {
  color: #c58370;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}
.steps-list .step-text {
  font-weight: 300;
}

.whatsapp-button {
  width: 100%;
  background-color: #25D366;
  color: #fff;
  font-weight: 300;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(197, 131, 112, 0.15);
  transition: all 0.3s ease;
}
.whatsapp-button:hover {
  background-color: #1fb959;
  box-shadow: 0 10px 30px rgba(197, 131, 112, 0.25);
}

.photo-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.photo-placeholder {
  border: 1px solid #e8d7d2;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(197, 131, 112, 0.07);
  width: 30rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c58370;
  font-weight: 300;
  background-color: #f0e6e2;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prizes-section {
  padding-top: 2rem;
  text-align: center;
}
.prizes-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

.prize-item {
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(197, 131, 112, 0.05);
  border: 1px solid #e8d7d2;
}
.prize-item .prize-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.prize-item .prize-text {
  color: #6d5650;
  font-weight: 300;
}

.footer {
  margin-top: 5rem;
  color: #a38a82;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/*# sourceMappingURL=style.css.map */
