/* ─── BASE ─── */
:root {
  --ink:   #1c1b3b;
  --gray:  #65607b;
  --cream: #fef7ec;
  --sun:   #fece2a;
  --pink:  #ff5f9f;
  --lilac: #7c60e0;
  --sky:   #28b6f0;
  --green: #30c960;
  --line:  rgba(28,27,59,0.12);
  --grow:  translateY(-3px);
}
* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Fredoka", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto }
a { color: inherit; text-decoration: none }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  left: -999px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}
.skip-link:focus { left: 16px; top: 16px }

/* ─── TOP BAR ─── */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(254,247,236,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--line);
}
.top-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.top-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--sun);
  object-fit: cover;
}
.top-logo-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--lilac);
  line-height: 1;
}
.top-nav {
  display: flex;
  gap: 8px;
}
.top-nav a {
  display: none;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gray);
}
.top-nav a:hover { background: rgba(124,96,224,0.1); color: var(--lilac) }
@media (min-width: 700px) {
  .top-nav a { display: block }
}
.top-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #20c261;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(32,194,97,0.3);
}
.top-cta:hover { transform: var(--grow) }

/* ─── CONFETTI ─── */
.confetti-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.confetti-wrap span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  opacity: 0.65;
  animation: confetti-fall 5s ease-in-out infinite;
}
.confetti-wrap span:nth-child(1)  { left: 5%;  top: -5%;  background: var(--pink);  animation-delay: 0s;   width: 14px; height: 14px }
.confetti-wrap span:nth-child(2)  { left: 15%; top: -3%;  background: var(--sky);  animation-delay: 0.5s; width: 10px; height: 10px }
.confetti-wrap span:nth-child(3)  { left: 28%; top: -7%;  background: var(--sun);  animation-delay: 1s;   width: 16px; height: 16px }
.confetti-wrap span:nth-child(4)  { left: 42%; top: -2%;  background: var(--green);animation-delay: 1.5s; width: 8px;  height: 8px  }
.confetti-wrap span:nth-child(5)  { left: 55%; top: -6%;  background: var(--lilac);animation-delay: 2s;   width: 13px; height: 13px }
.confetti-wrap span:nth-child(6)  { left: 68%; top: -4%;  background: var(--pink);  animation-delay: 2.5s; width: 9px;  height: 9px  }
.confetti-wrap span:nth-child(7)  { left: 78%; top: -8%;  background: var(--sun);  animation-delay: 3s;   width: 15px; height: 15px }
.confetti-wrap span:nth-child(8)  { left: 88%; top: -3%;  background: var(--sky);  animation-delay: 3.5s; width: 11px; height: 11px }
.confetti-wrap span:nth-child(9)  { left: 2%;  top: -2%;  background: var(--green);animation-delay: 0.2s; width: 6px;  height: 6px  }
.confetti-wrap span:nth-child(10) { left: 48%; top: -5%;  background: var(--lilac);animation-delay: 4s;   width: 13px; height: 13px }
.confetti-wrap span:nth-child(11) { left: 35%; top: -2%;  background: var(--pink);  animation-delay: 0.8s; width: 8px;  height: 8px  }
.confetti-wrap span:nth-child(12) { left: 72%; top: -7%;  background: var(--sun);  animation-delay: 3.2s; width: 13px; height: 13px }
.confetti-wrap span:nth-child(13) { left: 60%; top: -5%;  background: var(--sky);  animation-delay: 1.8s; width: 10px; height: 10px }
.confetti-wrap span:nth-child(14) { left: 20%; top: -4%;  background: var(--green);animation-delay: 2.8s; width: 11px; height: 11px }
.confetti-wrap span:nth-child(15) { left: 92%; top: -2%;  background: var(--pink);  animation-delay: 0.6s; width: 8px;  height: 8px  }
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.65 }
  80%  { opacity: 0.65 }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0 }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 32px 20px 48px;
  background:
    radial-gradient(circle at 10% 20%, rgba(254,206,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,95,159,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #fff5e6 100%);
}
.hero-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 0 rgba(28,27,59,0.1);
}
.hero-logo {
  margin: 0 0 10px;
}
.hero-logo img {
  width: clamp(150px, 30vw, 240px);
  height: clamp(150px, 30vw, 240px);
  margin: 0 auto;
  border-radius: 50%;
  border: 8px solid #fff;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(124,96,224,0.2), 0 0 0 4px var(--sun);
}
h1 {
  margin: 0 0 6px;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 14vw, 6rem);
  line-height: 0.92;
  color: var(--lilac);
  letter-spacing: -0.02em;
}
.hero-tag {
  margin: 0 0 8px;
  color: var(--pink);
  font-weight: 600;
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto 18px;
  color: var(--gray);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 1.5;
}
.hero-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-prices > div {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--line);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 2px 0 rgba(28,27,59,0.06);
}
.hero-prices strong {
  color: var(--pink);
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.pill {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--sun);
  font-weight: 600;
  font-size: 0.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 120ms, box-shadow 120ms;
  cursor: pointer;
}
.btn-big {
  min-height: 56px;
  padding: 0 30px;
  background: var(--green);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 0 rgba(48,201,96,0.3), 0 10px 20px rgba(48,201,96,0.2);
}
.btn-big:hover { transform: var(--grow) }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(28,27,59,0.12);
}
.btn-outline:hover { transform: var(--grow) }
.btn-card {
  width: 100%;
  min-height: 48px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.95rem;
  box-shadow: 0 4px 0 rgba(28,27,59,0.12);
}
.btn-card:hover { transform: var(--grow) }

/* ─── STRIP ─── */
.strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: min(960px, calc(100% - 28px));
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
}
.strip > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid var(--line);
  text-align: center;
  box-shadow: 0 4px 0 rgba(28,27,59,0.06);
}
.strip b { font-size: 0.95rem; color: var(--ink) }
.strip small { color: var(--gray); font-size: 0.78rem }
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
}

/* ─── SECTIONS ─── */
.section {
  width: min(960px, calc(100% - 28px));
  margin: 0 auto;
  padding: 52px 0 36px;
}
.sec-title {
  margin: 0 0 6px;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--lilac);
}
.sec-desc {
  margin: 0 0 22px;
  color: var(--gray);
  font-size: 1rem;
}

/* ─── MODEL CARDS ─── */
.model-cards {
  display: grid;
  gap: 20px;
}
.card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: 0 6px 0 rgba(28,27,59,0.08);
  transition: transform 160ms;
}
.card:hover { transform: var(--grow) }
.card.featured {
  border-color: var(--pink);
  position: relative;
}
.card-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 3px 8px rgba(48,201,96,0.3);
}
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.card-body {
  padding: 20px 22px 24px;
}
.card-body h3 {
  margin: 0 0 2px;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--lilac);
  line-height: 1;
}
.card-price {
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--gray);
}
.card-price strong {
  color: var(--pink);
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}
.card-body dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}
.card-body dl div {
  padding: 8px;
  border-radius: 12px;
  background: rgba(40,182,240,0.08);
  text-align: center;
}
.card-body dt {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--lilac);
}
.card-body dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.card-body p {
  margin: 0 0 16px;
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.5;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.gallery-grid img,
.gallery-video {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: 0 6px 0 rgba(28,27,59,0.08);
}
.gallery-video {
  object-fit: contain;
  background: #1c1b3b;
}
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    grid-column: 1 / -1;
  }
}

/* ─── PRICES ─── */
.prices-grid {
  display: grid;
  gap: 12px;
}
.price-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: 0 4px 0 rgba(28,27,59,0.06);
}
.price-card.featured {
  border-color: var(--pink);
  background: #fff8fc;
}
.price-label {
  font-weight: 500;
  color: var(--gray);
  flex: 1;
}
.price-value {
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--pink);
  line-height: 1;
}
.price-card small {
  color: var(--gray);
  font-size: 0.78rem;
}
.price-footnote {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 0.82rem;
  font-style: italic;
}

/* ─── DECORAÇÃO ─── */
.decor-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.decor-grid img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: 0 6px 0 rgba(28,27,59,0.08);
}
@media (min-width: 700px) {
  .decor-grid { grid-template-columns: repeat(3, 1fr) }
}

/* ─── KIT FESTA ─── */
.kit-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.kit-grid img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: 0 6px 0 rgba(28,27,59,0.08);
  margin: 0 auto;
}

/* ─── PACKAGES ─── */
.pack-grid {
  display: grid;
  gap: 16px;
}
.pack-card {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: 0 4px 0 rgba(28,27,59,0.06);
}
.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.pack-card h3 {
  margin: 0 0 6px;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--lilac);
}
.pack-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ─── TRUST ─── */
.trust {
  display: grid;
  gap: 24px;
}
.trust ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.trust li {
  padding: 10px 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-photo img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 24px;
  border: 6px solid #fff;
  box-shadow: 0 6px 0 rgba(28,27,59,0.08);
}

/* ─── FAQ ─── */
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border-radius: 18px;
  background: #fff;
  border: 2px solid var(--line);
  overflow: hidden;
  box-shadow: 0 3px 0 rgba(28,27,59,0.06);
}
.faq-list summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-list p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── BOTTOM ─── */
.bottom {
  margin-top: 30px;
  padding: 32px 14px 22px;
  background: var(--ink);
  color: #fff;
}
.bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: min(960px, calc(100% - 28px));
  margin: 0 auto;
}
.bottom-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.bottom-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--sun);
  object-fit: cover;
}
.bottom-brand b {
  display: block;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}
.bottom-brand small {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.bottom-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.bottom-info a { color: #fff; font-weight: 600; }
.bottom-copy {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  margin: 20px 0 0;
}

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #20c261;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 0 rgba(32,194,97,0.3), 0 8px 20px rgba(32,194,97,0.3);
  transition: transform 120ms;
}
.wa-float:hover { transform: scale(1.08) }

/* ─── RESPONSIVE: TABLET + ─── */
@media (min-width: 700px) {
  .strip { grid-template-columns: repeat(4, 1fr); margin-top: -32px }
  .model-cards { grid-template-columns: repeat(3, 1fr) }
  .pack-grid { grid-template-columns: repeat(3, 1fr) }
  .trust { grid-template-columns: 1fr 1fr; align-items: center }
  .prices-grid { grid-template-columns: repeat(3, 1fr) }
  .price-card { flex-direction: column; text-align: center; padding: 24px }
  .price-label { flex: 0 }
}

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr }
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    grid-column: 1 / -1;
    max-height: 400px;
  }
}

@media (min-width: 480px) {
  .card img { max-height: 300px }
  .card-body dl { grid-template-columns: repeat(3, 1fr) }
}

/* ─── RESPONSIVE: SMALL ─── */
@media (max-width: 399px) {
  .top-logo-name { font-size: 1rem }
  .top-logo-img { width: 40px; height: 40px }
  .hero { padding: 24px 14px 36px }
  .hero-logo img { width: 140px; height: 140px; border-width: 6px }
  .card img { max-height: 220px }
  .card-body dl { grid-template-columns: 1fr }
  .card-body dl div { text-align: left; display: flex; gap: 6px }
  .gallery-grid img,
  .gallery-video { max-height: 220px }
  .strip { grid-template-columns: 1fr 1fr; gap: 8px }
  .strip > div { padding: 14px 10px }
  .bottom-row { flex-direction: column; align-items: start; gap: 16px }
  .wa-float { width: 52px; height: 52px; font-size: 1.4rem; right: 12px; bottom: 14px }
}
