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

a {
  color: #E9E0D4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #222216;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.logo {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.badge {
  display: inline-block;
  font-size: 12px;
  color: #E9E0D4;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border: 1px solid #E9E0D4;
}

h1 {
  font-size: 22px;
  font-weight: 500;
  color: #E9E0D4;
  margin-bottom: 0.5rem;
  text-align: center;
}

.subtitle {
  font-size: 14px;
  color: #E9E0D4;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.divider {
  border: none;
  border-top: 1px solid #E9E0D4;
  margin-bottom: 2rem;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
.contact-info .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-info .contact-item a {
  font-size: 14px;
  color: #E9E0D4;
  text-decoration: none;
  line-height: 1.6;
  opacity: 0.85;
  white-space: nowrap;
}
.contact-info .contact-item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.contact-info .email-icon,
.contact-info .phone-icon {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.contact-info .contact-item:has(.instagram-icon) a:first-child {
  display: flex;
  align-items: center;
  opacity: 1;
}
.contact-info .contact-item:has(.instagram-icon) .instagram-icon {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
  }
  .contact-info .contact-item {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */