:root {
  --bg-top: #ffffff;
  --bg-bottom: #ffffff;
  --card: #ffffff;
  --ink: #111827;
  --muted: #4b5563;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --shadow: rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100dvh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vh, 20px);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.6;
  z-index: 0;
}

.orb-left {
  width: 280px;
  height: 280px;
  background: #ffffff;
  top: -80px;
  left: -80px;
}

.orb-right {
  width: 320px;
  height: 320px;
  background: #ffffff;
  bottom: -120px;
  right: -120px;
}

.card {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  background: var(--card);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  padding: clamp(16px, 3vh, 30px) clamp(16px, 3vw, 28px);
  text-align: center;
  box-shadow: 0 20px 40px var(--shadow);
  animation: rise 700ms ease-out;
}

.brand-logo {
  display: block;
  width: min(420px, 86vw);
  max-height: 45dvh;
  object-fit: contain;
  margin: 0 auto 8px;
  height: auto;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 12px 0 16px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 7vw, 4.2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

.tagline {
  margin: 0 auto 16px;
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  line-height: 1.4;
}

.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.call-button {
  display: inline-block;
  margin-bottom: 0;
  padding: clamp(11px, 1.9vh, 14px) clamp(20px, 4vw, 28px);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 3.8vw, 1.28rem);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-button {
  display: inline-block;
  margin-bottom: 0;
  padding: clamp(11px, 1.9vh, 14px) clamp(20px, 4vw, 28px);
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 3.8vw, 1.28rem);
  transition: transform 180ms ease, background 180ms ease;
}

.call-button:hover,
.call-button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #15803d;
  transform: translateY(-2px);
}

.small-print {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .card {
    border-radius: 16px;
    padding: 14px 14px;
  }

  .brand-logo {
    width: min(320px, 82vw);
    max-height: 40dvh;
    margin-bottom: 6px;
  }

  .call-button {
    width: 100%;
  }

  .whatsapp-button {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }
}

@media (max-height: 760px) {
  .hero {
    padding: 8px;
  }

  .brand-logo {
    max-height: 38dvh;
  }

  .tagline {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.35;
  }
}
