:root {
  --cream: #f4ecde;
  --warm-sand: #efd5b3;
  --brand-orange: #f28a35;
  --brand-orange-strong: #de7626;
  --ink: #1e2c43;
  --ink-soft: #355078;
  --line-soft: rgba(30, 44, 67, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Urbanist", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 17% 20%, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(106deg, var(--cream) 4%, var(--warm-sand) 48%, #e6a35f 100%);
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0, rgba(255, 255, 255, 0.09) 2px, transparent 2px, transparent 14px),
    radial-gradient(circle at 72% 66%, rgba(242, 138, 53, 0.15), transparent 44%);
  opacity: 0.58;
}

.topbar,
.hero,
.footer {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 2.35rem 0 1.2rem;
}

.brand {
  display: inline-flex;
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(42, 32, 25, 0.18));
  animation: slide-up 0.65s ease-out both;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding: 1.1rem 0 4rem;
  position: relative;
  animation: fade-in 0.8s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(460px, 82vw);
  height: min(460px, 82vw);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08) 56%, rgba(237, 168, 101, 0.2) 100%);
  box-shadow: inset 0 0 46px rgba(255, 255, 255, 0.28);
  top: calc(50% - 168px);
  z-index: -1;
}

.badge {
  margin: 0;
  color: var(--ink-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.56rem 1rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  animation: slide-up 0.7s ease-out 0.1s both;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 6.4vw, 5rem);
  line-height: 1.02;
  text-wrap: balance;
  letter-spacing: -0.01em;
  color: var(--ink);
  animation: slide-up 0.9s ease-out 0.22s both;
}

.subtitle {
  margin: 0;
  max-width: 670px;
  color: rgba(30, 44, 67, 0.84);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.62;
  animation: slide-up 0.98s ease-out 0.34s both;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  min-height: 56px;
  min-width: 280px;
  padding: 0.85rem 1.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(157, 84, 22, 0.25);
  text-decoration: none;
  color: #fff7f1;
  font-weight: 700;
  font-size: 1.02rem;
  background: linear-gradient(140deg, var(--brand-orange), var(--brand-orange-strong));
  box-shadow: 0 18px 36px rgba(140, 73, 16, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: slide-up 1.03s ease-out 0.46s both;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 22px 38px rgba(140, 73, 16, 0.26);
}

.whatsapp-btn:focus-visible {
  outline: 2px solid rgba(30, 44, 67, 0.65);
  outline-offset: 3px;
}

.privacy {
  margin: 0;
  color: rgba(30, 44, 67, 0.75);
  font-size: 0.96rem;
  animation: slide-up 1.08s ease-out 0.56s both;
}

.footer {
  border-top: 1px solid rgba(30, 44, 67, 0.1);
  padding: 1.6rem 0 2.2rem;
  text-align: center;
  color: rgba(30, 44, 67, 0.82);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .topbar {
    padding-top: 1.5rem;
  }

  .brand img {
    width: 92px;
    height: 92px;
  }

  .hero {
    padding-top: 0.7rem;
    padding-bottom: 3rem;
    gap: 1.05rem;
  }

  .hero::before {
    top: calc(50% - 144px);
  }

  .whatsapp-btn {
    min-width: 100%;
  }

  .footer {
    padding-bottom: 1.8rem;
  }
}
