:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4e4ea;
  color: #4c3c42;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #f7dfe4 0%, #f4e4ea 35%, #f2d7dd 100%);
}

.container {
  width: min(100%, 680px);
  padding: 24px;
}

.card {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(141, 110, 119, 0.12);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(107, 69, 82, 0.14);
  padding: 36px 0;
  text-align: center;
}

.brand-logo {
  margin: 0 auto ;
  width: min(100%, 320px);
  display: grid;
  place-items: center;
}

.logo-image {
  width: 100%;
  height: auto;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.05;
}

p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 100;
}

.highlight {
  margin-top: 8px;
  color: #8f7e71;
  font-weight: 600;
  font-size: 1rem;
}

.button-group {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 16px 26px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.whatsapp-button {
  background: #2f8f4c;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 143, 76, 0.2);
}

.instagram-button {
  background: linear-gradient(135deg, #d72f7a 0%, #fca94d 100%);
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 153, 105, 0.22);
}

.note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: #7b6569;
}

@media (max-width: 520px) {
  .card {
    padding: 28px 20px;
  }

  .highlight {
    font-size: 0.8rem;
  }

  .whatsapp-button {
    width: 100%;
  }
}
