:root {
  --bg: #08091f;
  --bg-2: #10134a;
  --purple: #7928ca;
  --pink: #ff2ea6;
  --gold: #ffd84d;
  --orange: #ff9f1c;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .78);
  --glass: rgba(255, 255, 255, .11);
  --border: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--white);
  background: radial-gradient(circle at top left, #3d1d80 0, var(--bg) 38%, #040513 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.magic-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 46, 166, .28), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(255, 216, 77, .18), transparent 25%),
    radial-gradient(circle at 75% 78%, rgba(121, 40, 202, .32), transparent 26%);
  z-index: -3;
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  z-index: -2;
  background-image:
    radial-gradient(#fff 1px, transparent 1.4px),
    radial-gradient(var(--gold) 1px, transparent 1.5px);
  background-size: 80px 80px, 130px 130px;
  animation: sparkleMove 18s linear infinite;
}

@keyframes sparkleMove {
  from { transform: translateY(0); }
  to { transform: translateY(-80px); }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 70px);
  background: rgba(8, 9, 31, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 28px rgba(255, 46, 166, .42);
}

.navbar nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.navbar nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.navbar nav a:hover,
.navbar nav .nav-cta {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 78px 0;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Fredoka", sans-serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  text-shadow: 0 8px 35px rgba(0, 0, 0, .34);
}

h2 { font-size: clamp(2.2rem, 5vw, 4.1rem); }
h3 { font-size: 1.55rem; }

.lead {
  max-width: 710px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions, .trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.btn.primary,
.big-whatsapp {
  color: #1b1305;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 16px 36px rgba(255, 159, 28, .28);
}

.btn.secondary {
  color: var(--white);
  background: var(--glass);
  border: 1px solid var(--border);
}

.trust { margin-top: 24px; }
.trust span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
}

.hero-card {
  position: relative;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-card img {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 28px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(8, 9, 31, .86);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
  color: var(--gold);
}

.intro {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
}

.intro-card,
.show-card,
.cta,
.bunny-section,
.neuro-section {
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.intro-card { padding: 32px; }
.intro-card p, .show-card p, .bunny-copy p, .cta p {
  color: var(--muted);
  line-height: 1.7;
}

.highlight {
  background: linear-gradient(135deg, rgba(255,216,77,.24), rgba(255,46,166,.14));
}

.phone {
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  color: var(--gold) !important;
  margin: 12px 0;
}

.mini-link {
  color: var(--gold);
  font-weight: 900;
}

.section-title { text-align: center; margin-bottom: 34px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.show-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.show-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(255,216,77,.20), transparent 42%);
  pointer-events: none;
}

.icon { font-size: 2.4rem; margin-bottom: 12px; }

.card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.bunny-section,
.neuro-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
}

.bunny-img img,
.neuro-img img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
  object-fit: cover;
}

.bunny-img img { max-height: 560px; }

.neuro-section {
  grid-template-columns: 1.05fr .95fr;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,216,77,.18), transparent 24%),
    linear-gradient(135deg, rgba(18,22,68,.94), rgba(95,33,160,.85));
}

.neuro-copy p {
  color: rgba(255,255,255,.86);
  line-height: 1.75;
}

.neuro-highlight {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  color: var(--gold) !important;
  font-weight: 700;
  text-shadow: 0 8px 25px rgba(0,0,0,.22);
}

.neuro-img img {
  max-height: 600px;
  object-position: center top;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transition: transform .25s ease;
}

.gallery img:hover { transform: scale(1.03); }

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 38px;
}

.cta h2 { margin-bottom: 12px; }
.big-whatsapp { font-size: 1.05rem; padding: 18px 26px; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

footer {
  text-align: center;
  padding: 34px 18px 46px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .bunny-section,
  .neuro-section,
  .cta {
    grid-template-columns: 1fr;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .cta { text-align: center; }
}

@media (max-width: 700px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .navbar nav {
    justify-content: flex-start;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 54px 0;
  }

  .hero { gap: 28px; }
  .hero-card { transform: none; }
  .floating-card { left: 12px; bottom: 16px; }
  .cards,
  .gallery { grid-template-columns: 1fr; }
  .intro-card,
  .bunny-section,
  .neuro-section,
  .cta { padding: 24px; border-radius: 26px; }
  .gallery img { height: 245px; }
  .whatsapp-float { width: 56px; height: 56px; }
}