:root {
  --purple-950: #260b4a;
  --purple-800: #3b0f72;
  --purple-700: #4a138f;
  --purple-600: #5f26cc;
  --purple-100: #ede3ff;
  --pink-600: #c51770;
  --ink: #1b1520;
  --muted: #665d6f;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbf9fd;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  overflow: hidden;
  padding: 54px 24px 90px;
  background: #fbf9fd;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  text-align: center;
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 72px);
}
.logo { display: block; width: 170px; height: auto; }
.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 32px;
  padding: 8px 14px;
  color: var(--purple-800);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--purple-100);
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(51,10,102,.08);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.status span { width: 8px; height: 8px; background: #27a85d; border-radius: 50%; box-shadow: 0 0 0 4px rgba(39,168,93,.12); }
.eyebrow { margin: 0 0 14px; color: var(--pink-600); font-size: 13px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
h1 { margin: 0 0 24px; font-size: clamp(45px, 7.1vw, 78px); line-height: 1.04; font-weight: 500; letter-spacing: -.05em; }
h1 span { color: var(--purple-700); }
.intro { max-width: 650px; margin: 0 auto 30px; color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.7; }
.actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  color: #fff;
  background: var(--purple-800);
  border-radius: 10px;
  box-shadow: 0 15px 32px rgba(59,15,114,.2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--purple-600); }
.button.js-whatsapp { background: #25d366; box-shadow: 0 15px 32px rgba(18, 140, 126, .22); }
.button.js-whatsapp:hover { background: #1ebe5d; }
.button:focus-visible, .email:focus-visible { outline: 3px solid rgba(95,38,204,.3); outline-offset: 4px; }
.button.js-whatsapp:focus-visible { outline-color: rgba(37, 211, 102, .35); }
.email { color: var(--purple-700); font-size: 14px; font-weight: 500; }
.signature { margin: 44px 0 0; color: var(--pink-600); font-size: 14px; font-weight: 500; letter-spacing: .08em; }

.pattern { position: absolute; z-index: -1; inset: 0; opacity: .28; background-image: radial-gradient(rgba(74,19,143,.14) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent); }

footer { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 24px; color: #887f90; font-size: 12px; text-align: center; }

@media (max-width: 560px) {
  .hero { padding: 118px 18px 80px; }
  .site-header { padding: 22px 20px; }
  .logo { width: 145px; }
  .status { margin-bottom: 26px; font-size: 12px; }
  h1 { font-size: clamp(39px, 11vw, 45px); }
  .intro { font-size: 15px; }
  .actions { flex-direction: column; }
  .button { width: min(330px, 100%); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
