/* ============================================================= */
/* RESET & BASE                                                   */
/* ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta principal (cores da logo) */
  --c-orange: #ff8a3d;
  --c-pink: #ff3d8b;
  --c-blue: #3cb6ff;
  --c-yellow: #ffd84a;
  --c-purple: #b14bff;
  --c-bg: #0a0a1a;
  --c-bg-2: #12122a;
  --c-white: #ffffff;
  --c-text: #f4f4f8;
  --c-muted: rgba(244, 244, 248, 0.65);

  /* Temas por seção */
  --t-bazar: linear-gradient(135deg, #ff8a3d 0%, #ffb35d 50%, #ff7a47 100%);
  --t-bazar-bg: radial-gradient(circle at 20% 30%, #2a1a0d 0%, #0a0a1a 70%);
  --t-presentes: linear-gradient(135deg, #ff3d8b 0%, #ff78b0 50%, #b14bff 100%);
  --t-presentes-bg: radial-gradient(circle at 80% 30%, #2a0d24 0%, #0a0a1a 70%);
  --t-brinquedos: linear-gradient(135deg, #ffd84a 0%, #ff5a3c 33%, #ff3d8b 66%, #3cb6ff 100%);
  --t-brinquedos-bg: radial-gradient(circle at 50% 80%, #0d2434 0%, #0a0a1a 70%);

  --shadow-glow: 0 0 40px rgba(255, 138, 61, 0.4),
                 0 0 80px rgba(255, 61, 139, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================================= */
/* FUNDO CÓSMICO — ESTRELAS + NEBULOSA                            */
/* ============================================================= */
.cosmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cosmos__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 60% 70%, #fff, transparent),
    radial-gradient(2px 2px at 80% 10%, #fff, transparent),
    radial-gradient(1px 1px at 30% 80%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 90% 50%, #fff, transparent),
    radial-gradient(1px 1px at 10% 60%, #fff, transparent),
    radial-gradient(2px 2px at 50% 20%, #fff, transparent),
    radial-gradient(1px 1px at 75% 85%, #fff, transparent),
    radial-gradient(1px 1px at 15% 15%, #fff, transparent),
    radial-gradient(2px 2px at 45% 45%, #fff, transparent);
  background-size: 250px 250px;
  animation: starTwinkle 6s ease-in-out infinite alternate;
}

.cosmos__nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 138, 61, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 61, 139, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(60, 182, 255, 0.08) 0%, transparent 50%);
  animation: nebulaShift 20s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes nebulaShift {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(20px, -20px); }
}

/* ============================================================= */
/* HEADER                                                         */
/* ============================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 26, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.3s ease, background 0.3s ease;
}

.header.is-scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 26, 0.85);
}

.header__inner {
  width: min(1400px, 96%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* NAVS */
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav--left { justify-content: flex-start; }
.nav--right { justify-content: flex-end; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-muted);
  transition: all 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--c-white);
}

.nav__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 12px var(--c-orange);
  transition: all 0.3s ease;
}

.nav__link--bazar .nav__bullet {
  background: var(--c-orange);
  box-shadow: 0 0 12px var(--c-orange);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--c-orange);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--c-orange);
}

.nav__link:hover .nav__bullet {
  transform: scale(1.3);
}

/* ============================================================= */
/* LOGO + UNIVERSO                                                */
/* ============================================================= */
.header__logo {
  display: block;
  position: relative;
}

.universe {
  position: relative;
  width: 280px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  position: relative;
  z-index: 5;
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 138, 61, 0.4))
          drop-shadow(0 0 30px rgba(255, 61, 139, 0.3));
  transition: transform 0.4s ease;
}

.header__logo:hover .logo-img {
  transform: scale(1.05) rotate(-1deg);
}

/* ÓRBITAS */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.orbit--1 {
  width: 240px;
  height: 240px;
  animation: spin 12s linear infinite;
}

.orbit--2 {
  width: 290px;
  height: 290px;
  animation: spinReverse 18s linear infinite;
  border-color: rgba(255, 61, 139, 0.2);
}

.orbit--3 {
  width: 340px;
  height: 340px;
  animation: spin 25s linear infinite;
  border-color: rgba(60, 182, 255, 0.15);
}

.orbit--4 {
  width: 380px;
  height: 380px;
  animation: spinReverse 30s linear infinite;
  border-color: rgba(255, 216, 74, 0.1);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* PLANETAS */
.planet,
.comet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.planet--a {
  width: 10px;
  height: 10px;
  background: var(--c-orange);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--c-orange);
}

.planet--b {
  width: 14px;
  height: 14px;
  background: var(--c-pink);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--c-pink);
  top: 50%;
  left: 0;
}

.planet--c {
  width: 8px;
  height: 8px;
  background: var(--c-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c-blue);
  top: 100%;
}

.comet {
  width: 6px;
  height: 6px;
  background: var(--c-yellow);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--c-yellow),
              -10px 0 12px rgba(255, 216, 74, 0.4),
              -20px 0 8px rgba(255, 216, 74, 0.2);
  top: 50%;
  left: 100%;
}

/* ESTRELAS DO UNIVERSO */
.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px #fff;
  animation: starPulse 2s ease-in-out infinite alternate;
}

.star--1 { top: 5%; left: 20%; }
.star--2 { top: 80%; left: 10%; animation-delay: 0.4s; }
.star--3 { top: 10%; right: 15%; animation-delay: 0.8s; }
.star--4 { bottom: 15%; right: 25%; animation-delay: 1.2s; }
.star--5 { top: 50%; left: 5%; animation-delay: 1.6s; }

@keyframes starPulse {
  0%   { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.4); }
}

/* ============================================================= */
/* BOTÕES CUSTOMIZADOS — PRESENTES / BRINQUEDOS                   */
/* ============================================================= */
.btn-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gift {
  background: linear-gradient(135deg, #ff3d8b, #b14bff);
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.35);
}

.btn-gift:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(255, 61, 139, 0.5);
}

.btn-kids {
  background: linear-gradient(135deg, #ffd84a, #ff5a3c, #ff3d8b, #3cb6ff);
  background-size: 200% 200%;
  animation: kidsShift 4s ease infinite;
  box-shadow: 0 8px 24px rgba(255, 90, 60, 0.35);
}

.btn-kids:hover {
  transform: translateY(-3px) rotate(1deg) scale(1.04);
  box-shadow: 0 12px 32px rgba(255, 90, 60, 0.55);
}

@keyframes kidsShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.btn-custom__icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.btn-custom__icon svg {
  width: 100%;
  height: 100%;
}

.btn-custom__text {
  position: relative;
  z-index: 2;
}

.btn-custom__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  transition: left 0.6s ease;
}

.btn-custom:hover .btn-custom__shine {
  left: 100%;
}

/* ============================================================= */
/* MOBILE TOGGLE                                                  */
/* ============================================================= */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================= */
/* SECTIONS — BASE                                                */
/* ============================================================= */
.section {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.section__head {
  max-width: 720px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.15);
  color: var(--c-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 138, 61, 0.3);
}

.section__tag--kids {
  background: rgba(255, 216, 74, 0.15);
  color: var(--c-yellow);
  border-color: rgba(255, 216, 74, 0.3);
}

.section__title {
  font-family: 'Bungee', cursive;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section__title-small {
  display: block;
  font-size: 0.45em;
  color: var(--c-muted);
  letter-spacing: 4px;
  margin-bottom: 8px;
  font-weight: 400;
}

.section__title-big em {
  font-style: normal;
  background: var(--t-bazar);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__title--presentes em {
  background: var(--t-presentes);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__title--kids em {
  background: var(--t-brinquedos);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__copy {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-muted);
  max-width: 580px;
}

.section__copy--center {
  margin-left: auto;
  margin-right: auto;
}

/* Marca d'água da logo */
.section__watermark {
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 600px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-8deg);
}

.section__watermark--gift {
  bottom: auto;
  top: 5%;
  right: -8%;
  transform: rotate(8deg);
}

.section__watermark--kid {
  bottom: auto;
  top: 50%;
  left: -10%;
  right: auto;
  transform: translateY(-50%) rotate(-12deg);
}

/* ============================================================= */
/* HERO / HOME                                                    */
/* ============================================================= */
.section--home {
  min-height: 100vh;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 61, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 61, 139, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(60, 182, 255, 0.15) 0%, transparent 60%),
    var(--c-bg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.hero__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 1100px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  animation: heroLogoFloat 8s ease-in-out infinite alternate;
}

@keyframes heroLogoFloat {
  0%   { transform: translate(-50%, -50%) rotate(-3deg) scale(1); }
  100% { transform: translate(-50%, -50%) rotate(3deg) scale(1.05); }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 14px currentColor;
  animation: particleDrift 10s ease-in-out infinite;
}

.hero__particles span:nth-child(1)  { top: 10%; left: 15%; background: var(--c-orange); color: var(--c-orange); animation-delay: 0s; }
.hero__particles span:nth-child(2)  { top: 30%; left: 80%; background: var(--c-pink); color: var(--c-pink); animation-delay: 1s; }
.hero__particles span:nth-child(3)  { top: 70%; left: 25%; background: var(--c-blue); color: var(--c-blue); animation-delay: 2s; }
.hero__particles span:nth-child(4)  { top: 80%; left: 70%; background: var(--c-yellow); color: var(--c-yellow); animation-delay: 3s; }
.hero__particles span:nth-child(5)  { top: 50%; left: 90%; background: var(--c-orange); color: var(--c-orange); animation-delay: 4s; }
.hero__particles span:nth-child(6)  { top: 20%; left: 50%; background: var(--c-pink); color: var(--c-pink); animation-delay: 5s; }
.hero__particles span:nth-child(7)  { top: 60%; left: 10%; background: var(--c-yellow); color: var(--c-yellow); animation-delay: 6s; }
.hero__particles span:nth-child(8)  { top: 40%; left: 35%; background: var(--c-blue); color: var(--c-blue); animation-delay: 7s; }
.hero__particles span:nth-child(9)  { top: 90%; left: 50%; background: var(--c-orange); color: var(--c-orange); animation-delay: 8s; }
.hero__particles span:nth-child(10) { top: 15%; left: 65%; background: var(--c-pink); color: var(--c-pink); animation-delay: 9s; }

@keyframes particleDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50%      { transform: translate(40px, -40px); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-family: 'Bungee', cursive;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero__title-line {
  display: block;
  font-size: 0.6em;
  color: var(--c-white);
  opacity: 0.9;
}

.hero__title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-pink) 50%, var(--c-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 61, 139, 0.4));
  animation: titleGradient 6s ease infinite;
  background-size: 200% 200%;
}

@keyframes titleGradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero__copy {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--c-muted);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero__copy strong {
  color: var(--c-white);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta svg {
  width: 20px;
  height: 20px;
}

.cta--primary {
  background: linear-gradient(135deg, var(--c-orange), var(--c-pink));
  color: var(--c-white);
  box-shadow: 0 12px 32px rgba(255, 61, 139, 0.35);
}

.cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 61, 139, 0.5);
}

.cta--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-white);
}

.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.cta--white {
  background: var(--c-white);
  color: var(--c-bg);
}

.cta--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.cta--big {
  padding: 18px 36px;
  font-size: 17px;
}

.cta--whatsapp {
  background: #25d366;
  color: var(--c-white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.cta--whatsapp:hover {
  transform: translateY(-3px);
}

.cta--whatsapp svg {
  width: 22px;
  height: 22px;
}

.cta--kid {
  background: linear-gradient(135deg, var(--c-yellow), var(--c-orange), var(--c-pink));
  background-size: 200% 200%;
  animation: kidsShift 4s ease infinite;
  color: var(--c-white);
  box-shadow: 0 12px 32px rgba(255, 90, 60, 0.35);
}

.cta--kid:hover {
  transform: translateY(-3px) scale(1.04);
}

.cta--kid-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--c-white);
}

.cta--kid-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Prova social */
.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.proof__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof__item strong {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-orange), var(--c-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof__item span {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--c-white);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ============================================================= */
/* BAZAR SECTION                                                  */
/* ============================================================= */
.section--bazar {
  background: var(--t-bazar-bg);
  border-top: 1px solid rgba(255, 138, 61, 0.15);
}

.section--bazar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.card {
  position: relative;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 2;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
}

/* Reveal: cards começam visíveis (acessível); JS adiciona .js-reveal
   antes do observer para garantir a animação só onde houver JS */
.card[data-reveal].js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 18px;
}

.card__media {
  margin-bottom: 20px;
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 138, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 138, 61, 0.2);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-orange);
  transition: gap 0.3s ease;
}

.card__link:hover {
  gap: 12px;
}

/* Bazar — detalhes */
.cards--bazar .card:hover {
  border-color: rgba(255, 138, 61, 0.3);
  box-shadow: 0 20px 50px rgba(255, 138, 61, 0.15);
}

.cards--bazar .card__link {
  color: var(--c-orange);
}

/* CTA Strip Bazar */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.15), rgba(255, 138, 61, 0.05));
  border: 1px solid rgba(255, 138, 61, 0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta-strip::before {
  content: '🔥';
  position: absolute;
  top: -20px;
  right: 10%;
  font-size: 120px;
  opacity: 0.15;
  transform: rotate(-15deg);
}

.cta-strip__copy {
  display: flex;
  flex-direction: column;
}

.cta-strip__copy strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-white);
}

.cta-strip__copy span {
  color: var(--c-muted);
  font-size: 14px;
}

/* ============================================================= */
/* PRESENTES SECTION                                              */
/* ============================================================= */
.section--presentes {
  background: var(--t-presentes-bg);
  border-top: 1px solid rgba(255, 61, 139, 0.15);
}

.section--presentes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 61, 139, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.confetti span {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  animation: confettiFall 8s linear infinite;
}

.confetti span:nth-child(1)  { left: 5%;  background: var(--c-pink);    animation-delay: 0s; }
.confetti span:nth-child(2)  { left: 15%; background: var(--c-yellow);  animation-delay: 1s; }
.confetti span:nth-child(3)  { left: 25%; background: var(--c-blue);    animation-delay: 2s; }
.confetti span:nth-child(4)  { left: 35%; background: var(--c-purple);  animation-delay: 3s; }
.confetti span:nth-child(5)  { left: 45%; background: var(--c-pink);    animation-delay: 4s; }
.confetti span:nth-child(6)  { left: 60%; background: var(--c-yellow);  animation-delay: 5s; }
.confetti span:nth-child(7)  { left: 70%; background: var(--c-blue);    animation-delay: 6s; }
.confetti span:nth-child(8)  { left: 80%; background: var(--c-purple);  animation-delay: 7s; }
.confetti span:nth-child(9)  { left: 90%; background: var(--c-pink);    animation-delay: 0.5s; }
.confetti span:nth-child(10) { left: 50%; background: var(--c-yellow);  animation-delay: 2.5s; }

@keyframes confettiFall {
  0%   { transform: translateY(-100px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.card--gift {
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.08), rgba(177, 75, 255, 0.05));
  border-color: rgba(255, 61, 139, 0.2);
}

.card--gift:hover {
  border-color: rgba(255, 61, 139, 0.5);
  box-shadow: 0 20px 50px rgba(255, 61, 139, 0.2);
}

.card__ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--c-pink);
  color: var(--c-white);
  padding: 4px 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(255, 61, 139, 0.4);
}

.card__ribbon--alt {
  background: var(--c-yellow);
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(255, 216, 74, 0.4);
}

.card__ribbon--alt2 {
  background: var(--c-purple);
  box-shadow: 0 4px 12px rgba(177, 75, 255, 0.4);
}

.card--gift .card__icon {
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.15), rgba(255, 216, 74, 0.15));
  border-color: rgba(255, 61, 139, 0.3);
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}

.card__price span {
  font-size: 12px;
  color: var(--c-muted);
}

.card__price strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-pink);
}

.card__btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--c-pink), var(--c-purple));
  color: var(--c-white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.3);
}

.card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 61, 139, 0.5);
}

/* Gift CTA */
.gift-cta {
  position: relative;
  padding: 60px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ff3d8b 0%, #b14bff 100%);
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.gift-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 216, 74, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
}

.gift-cta__inner {
  position: relative;
  z-index: 2;
}

.gift-cta__logo {
  width: 220px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  animation: giftLogoPulse 3s ease-in-out infinite;
}

@keyframes giftLogoPulse {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50%      { transform: scale(1.05) rotate(2deg); }
}

.gift-cta h3 {
  font-family: 'Bungee', cursive;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  color: var(--c-white);
}

.gift-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================= */
/* BRINQUEDOS SECTION                                             */
/* ============================================================= */
.section--brinquedos {
  background: var(--t-brinquedos-bg);
  border-top: 1px solid rgba(255, 216, 74, 0.15);
}

.section--brinquedos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 216, 74, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bubbles span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: bubbleFloat 6s ease-in-out infinite alternate;
}

.bubbles span:nth-child(1) { top: 10%; left: 5%;   width: 40px; height: 40px; background: rgba(255, 90, 60, 0.1); }
.bubbles span:nth-child(2) { top: 30%; left: 90%;  width: 60px; height: 60px; background: rgba(60, 182, 255, 0.1); animation-delay: 0.5s; }
.bubbles span:nth-child(3) { top: 60%; left: 15%;  width: 30px; height: 30px; background: rgba(255, 216, 74, 0.1); animation-delay: 1s; }
.bubbles span:nth-child(4) { top: 80%; left: 85%;  width: 50px; height: 50px; background: rgba(255, 61, 139, 0.1); animation-delay: 1.5s; }
.bubbles span:nth-child(5) { top: 20%; left: 70%;  width: 35px; height: 35px; background: rgba(255, 216, 74, 0.1); animation-delay: 2s; }
.bubbles span:nth-child(6) { top: 50%; left: 50%;  width: 45px; height: 45px; background: rgba(60, 182, 255, 0.1); animation-delay: 2.5s; }
.bubbles span:nth-child(7) { top: 75%; left: 30%;  width: 25px; height: 25px; background: rgba(255, 90, 60, 0.1); animation-delay: 3s; }
.bubbles span:nth-child(8) { top: 15%; left: 40%;  width: 55px; height: 55px; background: rgba(255, 61, 139, 0.1); animation-delay: 3.5s; }

@keyframes bubbleFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.1); }
}

.card--kid {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.card--kid:hover {
  transform: translateY(-10px) rotate(-1deg);
  border-color: rgba(255, 216, 74, 0.4);
  box-shadow: 0 25px 60px rgba(255, 90, 60, 0.2);
}

.card__blob {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 74, 0.3), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.card__blob--alt {
  background: radial-gradient(circle, rgba(60, 182, 255, 0.3), transparent 70%);
}

.card__blob--alt2 {
  background: radial-gradient(circle, rgba(255, 61, 139, 0.3), transparent 70%);
}

.card__emoji {
  font-size: 64px;
  margin-bottom: 18px;
  animation: emojiBounce 2s ease-in-out infinite;
  display: inline-block;
}

.card--kid:nth-child(2) .card__emoji { animation-delay: 0.2s; }
.card--kid:nth-child(3) .card__emoji { animation-delay: 0.4s; }
.card--kid:nth-child(4) .card__emoji { animation-delay: 0.6s; }

@keyframes emojiBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-10px) rotate(5deg); }
}

.card__btn--kid {
  background: linear-gradient(135deg, var(--c-yellow), var(--c-orange), var(--c-pink), var(--c-blue));
  background-size: 300% 300%;
  animation: kidsShift 5s ease infinite;
  width: 100%;
  text-align: center;
}

/* Kids CTA */
.kids-cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 216, 74, 0.1), rgba(60, 182, 255, 0.05));
  border: 2px solid rgba(255, 216, 74, 0.2);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.kids-cta::before {
  content: '🌈';
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 150px;
  opacity: 0.15;
}

.kids-cta__pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 216, 74, 0.2);
  color: var(--c-yellow);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.kids-cta h3 {
  font-family: 'Bungee', cursive;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.kids-cta p {
  color: var(--c-muted);
  font-size: 16px;
}

.kids-cta__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kids-cta__right .cta {
  justify-content: center;
  width: 100%;
}

/* ============================================================= */
/* FINAL CTA                                                      */
/* ============================================================= */
.final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 138, 61, 0.15) 0%, transparent 60%),
    var(--c-bg);
  overflow: hidden;
}

.final-cta__logo {
  width: 280px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(255, 61, 139, 0.5));
  animation: finalLogoGlow 3s ease-in-out infinite alternate;
}

@keyframes finalLogoGlow {
  0%   { filter: drop-shadow(0 0 30px rgba(255, 138, 61, 0.4)) drop-shadow(0 0 50px rgba(255, 61, 139, 0.3)); }
  100% { filter: drop-shadow(0 0 50px rgba(255, 138, 61, 0.6)) drop-shadow(0 0 80px rgba(255, 61, 139, 0.5)); }
}

.final-cta h2 {
  font-family: 'Bungee', cursive;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-pink), var(--c-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta p {
  font-size: 18px;
  color: var(--c-muted);
  margin-bottom: 36px;
}

.final-cta__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================= */
/* FOOTER                                                         */
/* ============================================================= */
.footer {
  background: #06060f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand p {
  color: var(--c-muted);
  margin-top: 12px;
  font-size: 14px;
}

.footer__logo {
  width: 180px;
}

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

.footer__cols strong {
  display: block;
  margin-bottom: 14px;
  color: var(--c-white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__cols a {
  display: block;
  color: var(--c-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer__cols a:hover {
  color: var(--c-orange);
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--c-muted);
}

/* ============================================================= */
/* RESPONSIVO                                                     */
/* ============================================================= */
@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .nav__link { font-size: 14px; padding: 6px 10px; }
  .btn-custom { font-size: 14px; padding: 8px 14px; }
  .btn-custom__icon { width: 28px; height: 28px; }
  .universe { width: 220px; }
  .logo-img { width: 160px; }
  .orbit--1 { width: 200px; height: 200px; }
  .orbit--2 { width: 240px; height: 240px; }
  .orbit--3 { width: 280px; height: 280px; }
  .orbit--4 { width: 320px; height: 320px; }
}

@media (max-width: 900px) {
  .header { padding: 12px 0; }

  .header__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
  }

  .nav--left, .nav--right {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__logo {
    margin: 0 auto;
  }

  .universe {
    width: 200px;
    height: 70px;
  }

  .logo-img {
    width: 140px;
  }

  .orbit--1 { width: 180px; height: 180px; }
  .orbit--2 { width: 220px; height: 220px; }
  .orbit--3 { width: 260px; height: 260px; }
  .orbit--4 { width: 300px; height: 300px; }

  .section {
    padding: 100px 0 60px;
  }

  .hero__proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .kids-cta {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .kids-cta__right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .universe {
    width: 160px;
    height: 60px;
  }

  .logo-img {
    width: 120px;
  }

  .orbit--1 { width: 150px; height: 150px; }
  .orbit--2 { width: 180px; height: 180px; }
  .orbit--3 { width: 210px; height: 210px; }
  .orbit--4 { width: 240px; height: 240px; }

  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .gift-cta {
    padding: 40px 24px;
  }

  .gift-cta__logo {
    width: 160px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .section__watermark {
    width: 400px;
  }
}

/* ============================================================= */
/* ACESSIBILIDADE — REDUZIR ANIMAÇÃO                              */
/* ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================= */
/* SELEÇÃO DE TEXTO PERSONALIZADA                                 */
/* ============================================================= */
::selection {
  background: var(--c-pink);
  color: var(--c-white);
}

/* Scrollbar custom */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-orange), var(--c-pink));
  border-radius: 5px;
}
