/* ========================================
   Mega Kit Infantil — visual brincalhão
   ======================================== */

:root {
  --blue: #2b7cff;
  --blue-dark: #1a5fd4;
  --blue-soft: #dcebff;
  --orange: #ff7a29;
  --orange-dark: #e85f0f;
  --yellow: #ffe14a;
  --yellow-soft: #fff4a8;
  --pink: #ff8fb8;
  --green: #6fdc8c;
  --ink: #2a2a3a;
  --muted: #5f6478;
  --white: #ffffff;
  --paper: #fffdf8;
  --bg: #fff8ef;
  --shadow: 0 8px 0 rgba(42, 42, 58, 0.08);
  --shadow-soft: 0 12px 28px rgba(42, 42, 58, 0.1);
  --radius: 1.5rem;
  --radius-sm: 1rem;
  --dash: 3px dashed #2a2a3a;
  --font-display: "Fredoka", "Poppins", sans-serif;
  --font-body: "Nunito", "Poppins", sans-serif;
  --transition: 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ---------- Playful paper background ---------- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 225, 74, 0.45) 0 70px, transparent 72px),
    radial-gradient(circle at 88% 12%, rgba(43, 124, 255, 0.18) 0 90px, transparent 92px),
    radial-gradient(circle at 80% 78%, rgba(255, 122, 41, 0.16) 0 110px, transparent 112px),
    radial-gradient(circle at 18% 85%, rgba(255, 143, 184, 0.2) 0 80px, transparent 82px),
    radial-gradient(#f0e6d8 1.2px, transparent 1.2px);
  background-size: auto, auto, auto, auto, 22px 22px;
  pointer-events: none;
}

/* doodle decorations */
.doodle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.85;
  line-height: 1;
}

.doodle-star {
  font-size: 1.4rem;
  animation: wiggle 3.5s ease-in-out infinite;
}

.doodle-heart {
  font-size: 1.25rem;
  animation: floaty 4s ease-in-out infinite;
}

.doodle-cloud {
  font-size: 2rem;
  opacity: 0.55;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.08);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px dashed rgba(42, 42, 58, 0.12);
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.brand span {
  display: none;
}

@media (min-width: 576px) {
  .brand span {
    display: inline;
  }
}

.nav-cta {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.55rem 1.15rem !important;
}

/* ---------- Buttons ---------- */
.btn-kit {
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--ink);
  --bs-btn-hover-bg: #ff8d45;
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--orange-dark);
  --bs-btn-active-border-color: var(--ink);
  --bs-btn-active-color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-width: 3px !important;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-kit:hover,
.btn-kit:focus {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-kit:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-kit-lg {
  font-size: 1.15rem;
  padding: 1.1rem 2rem;
}

.btn-kit-pulse {
  animation: bounce-soft 2.2s ease-in-out infinite;
}

.btn-blue {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--ink);
  --bs-btn-hover-bg: #4a90ff;
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-width: 3px !important;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 2rem 0 2.5rem;
  overflow: hidden;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.55rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.85rem;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.9rem 0.35rem 0.45rem;
  box-shadow: 3px 3px 0 var(--ink);
  animation: fade-up 0.7s both;
}

.hero-brand .emoji {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--ink);
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(1.75rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
  animation: fade-up 0.7s 0.08s both;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
  white-space: normal;
}

@media (min-width: 480px) {
  .hero-title .highlight {
    white-space: nowrap;
  }
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.08em;
  height: 0.35em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 0.4em;
  transform: rotate(-1.5deg);
}

.hero-sub {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 34rem;
  font-weight: 600;
  animation: fade-up 0.7s 0.15s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.15rem;
  animation: fade-up 0.7s 0.22s both;
}

.hero-price {
  background: var(--white);
  border: 3px dashed var(--orange);
  border-radius: 1rem;
  padding: 0.45rem 0.85rem;
  line-height: 1.15;
}

.hero-price .from {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
}

.hero-price .now {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--orange);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: fade-up 0.7s 0.28s both;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  box-shadow: 2px 2px 0 var(--ink);
}

.hero-trust i {
  color: var(--blue);
}

/* Hero covers fan */
.hero-visual {
  position: relative;
  margin-top: 2.25rem;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up 0.8s 0.15s both;
}

.cover-fan {
  position: relative;
  width: min(100%, 380px);
  height: 360px;
  margin: 0 auto;
}

.cover-fan .cover {
  position: absolute;
  width: 58%;
  border-radius: 0.85rem;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(42, 42, 58, 0.15);
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition);
}

.cover-fan .cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cover-fan .cover-1 {
  left: 2%;
  top: 18%;
  transform: rotate(-12deg);
  z-index: 1;
}

.cover-fan .cover-2 {
  left: 21%;
  top: 4%;
  transform: rotate(2deg);
  z-index: 3;
  width: 62%;
}

.cover-fan .cover-3 {
  right: 0;
  top: 20%;
  left: auto;
  transform: rotate(11deg);
  z-index: 2;
}

.cover-fan:hover .cover-1 {
  transform: rotate(-16deg) translateY(-6px);
}
.cover-fan:hover .cover-2 {
  transform: rotate(0deg) translateY(-10px) scale(1.03);
}
.cover-fan:hover .cover-3 {
  transform: rotate(15deg) translateY(-6px);
}

.sticker {
  position: absolute;
  z-index: 5;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.15;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-8deg);
  animation: wiggle 4s ease-in-out infinite;
}

.sticker strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.sticker-hero {
  right: -0.25rem;
  bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
    align-items: center;
  }

  .hero-visual {
    margin-top: 0;
    min-height: 440px;
  }

  .cover-fan {
    width: 420px;
    height: 420px;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Wave dividers ---------- */
.wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-bottom: -1px;
}

.wave path {
  fill: var(--paper);
}

.wave-alt path {
  fill: var(--white);
}

.wave-blue path {
  fill: #2b7cff;
}

/* ---------- Sections ---------- */
.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-paper {
  background: var(--paper);
}

.section-alt {
  background: var(--white);
}

.section-blue {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 225, 74, 0.25), transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(255, 143, 184, 0.2), transparent 40%),
    linear-gradient(160deg, #2470f0, #3d8cff);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.75rem;
  box-shadow: 2px 2px 0 var(--ink);
}

.section-blue .section-eyebrow {
  background: var(--yellow);
  color: var(--ink);
}

.section-title {
  font-size: clamp(1.65rem, 4.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  font-weight: 600;
}

.section-blue .section-desc {
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Value strip ---------- */
.value-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.25rem 0 1.5rem;
}

.value-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--white);
  border: 3px dashed var(--blue);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: var(--ink);
}

/* ---------- Benefits ---------- */
.benefit-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  height: 100%;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.benefit-item:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 7px 7px 0 var(--ink);
}

.benefit-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border: 3px solid var(--ink);
}

.benefit-icon.blue {
  background: var(--blue-soft);
}
.benefit-icon.orange {
  background: #ffe0cc;
}
.benefit-icon.yellow {
  background: var(--yellow-soft);
}

.benefit-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.benefit-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

/* ---------- Book / incluso cards ---------- */
.book-card {
  background: var(--paper);
  border-radius: 1.35rem;
  overflow: hidden;
  height: 100%;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translate(-3px, -5px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.book-card .thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f3f3;
  border-bottom: 3px solid var(--ink);
  position: relative;
}

.book-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.book-card:hover .thumb img {
  transform: scale(1.04);
}

.book-card .body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  text-align: center;
}

.book-card .count {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
  box-shadow: 2px 2px 0 var(--ink);
}

.book-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.book-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

.book-card.mini .thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  background:
    radial-gradient(circle at 30% 30%, var(--yellow-soft), transparent 50%),
    var(--blue-soft);
}

.bonus-banner {
  margin-top: 2rem;
  background: var(--yellow-soft);
  border: 3px dashed var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  box-shadow: 4px 4px 0 rgba(42, 42, 58, 0.12);
}

.bonus-banner .label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-dark);
}

.bonus-banner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.15rem 0 0.2rem;
}

.bonus-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery-wrap {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  border: 3px solid var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.gallery-item:nth-child(3n + 1) {
  transform: rotate(-2deg);
}
.gallery-item:nth-child(3n + 2) {
  transform: rotate(1.5deg);
}
.gallery-item:nth-child(3n) {
  transform: rotate(-1deg);
}

.gallery-item:hover {
  transform: rotate(0) scale(1.05) !important;
  box-shadow: 5px 5px 0 var(--ink);
  z-index: 2;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-note {
  text-align: center;
  margin-top: 1.75rem;
  font-weight: 700;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-note strong {
  color: var(--blue);
  font-family: var(--font-display);
}

/* ---------- Audience ---------- */
.audience-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  height: 100%;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform var(--transition);
}

.audience-chip:hover {
  transform: translate(-2px, -3px) rotate(1deg);
  box-shadow: 5px 5px 0 var(--ink);
}

.audience-chip .icon {
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
}

.audience-chip h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.1rem;
}

.audience-chip p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.step {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 1.35rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
  height: 100%;
}

.step-num {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Guarantee ---------- */
.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.75rem;
  padding: 2.1rem 1.6rem;
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
  border: 3px solid var(--ink);
  position: relative;
}

.guarantee-box::before {
  content: "★";
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: var(--yellow);
  text-shadow: 1px 1px 0 var(--ink);
}

.guarantee-box::after {
  content: "♥";
  position: absolute;
  top: -0.55rem;
  right: 1.5rem;
  font-size: 1.3rem;
  color: var(--pink);
}

.guarantee-seal {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.guarantee-box h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.guarantee-box p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------- Final CTA ---------- */
.final-cta .offer-panel {
  background: var(--paper);
  border-radius: 1.75rem;
  padding: 1.85rem 1.35rem;
  box-shadow: 7px 7px 0 var(--ink);
  border: 3px solid var(--ink);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .final-cta .offer-panel {
    padding: 2.5rem 2.75rem;
  }
}

.final-cta .offer-panel h2 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.45rem;
}

.final-cta .offer-panel > .lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.incluso-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 576px) {
  .incluso-list {
    grid-template-columns: 1fr 1fr;
  }
}

.incluso-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  background: var(--white);
  border-radius: 0.9rem;
  border: 2px dashed rgba(42, 42, 58, 0.25);
}

.incluso-list i {
  color: var(--blue);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.incluso-list .bonus {
  background: var(--yellow-soft);
  border-style: dashed;
  border-color: var(--ink);
  grid-column: 1 / -1;
}

.incluso-list .bonus i {
  color: var(--orange);
}

.price-block {
  text-align: center;
  margin-bottom: 1.15rem;
  background: var(--white);
  border: 3px dashed var(--orange);
  border-radius: 1.25rem;
  padding: 1rem;
}

.price-block .was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 700;
}

.price-block .is {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1.05;
}

.price-block .per {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.final-cta .btn-kit {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.secure-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.secure-note i {
  color: var(--blue);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 3px dashed rgba(42, 42, 58, 0.12);
  background: var(--paper);
  font-weight: 700;
}

.site-footer strong {
  font-family: var(--font-display);
  color: var(--ink);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--ink);
  transform: translateY(110%);
  transition: transform var(--transition);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .btn-kit {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
}

@media (min-width: 992px) {
  .sticky-cta {
    display: none;
  }
}

body.has-sticky-cta {
  padding-bottom: 5.5rem;
}

@media (min-width: 992px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.06s;
}
.reveal-delay-2 {
  transition-delay: 0.12s;
}
.reveal-delay-3 {
  transition-delay: 0.18s;
}
.reveal-delay-4 {
  transition-delay: 0.24s;
}
.reveal-delay-5 {
  transition-delay: 0.3s;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(42, 42, 58, 0.88);
  display: none;
  place-items: center;
  padding: 1.5rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 420px);
  max-height: 85vh;
  border-radius: 1rem;
  border: 4px solid var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
}

/* ---------- Mobile-first polish (principal canal) ---------- */
@media (max-width: 767.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  .site-nav {
    padding: 0.55rem 0;
  }

  .site-nav .container {
    gap: 0.5rem;
    text-align: left;
  }

  .brand {
    font-size: 0.95rem;
    min-width: 0;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    flex-shrink: 0;
  }

  .nav-cta {
    font-size: 0.82rem !important;
    padding: 0.55rem 0.9rem !important;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
  }

  .hero {
    padding: 1.15rem 0 1.5rem;
    text-align: center;
  }

  .hero .doodle-cloud,
  .hero .doodle-heart {
    display: none;
  }

  .hero .doodle-star {
    font-size: 1.1rem;
    top: 6% !important;
    left: 3% !important;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  /* Capas primeiro no mobile — prova visual rápida */
  .hero-visual {
    order: -1;
    margin-top: 0.25rem;
    margin-bottom: 0.35rem;
    min-height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cover-fan {
    width: min(100%, 300px);
    height: 270px;
    margin-left: auto;
    margin-right: auto;
  }

  .cover-fan .cover {
    width: 54%;
    border-width: 2.5px;
    box-shadow: 4px 4px 0 rgba(42, 42, 58, 0.14);
  }

  .cover-fan .cover-2 {
    width: 58%;
    top: 8%;
  }

  .cover-fan .cover-1 {
    top: 20%;
  }

  .cover-fan .cover-3 {
    top: 22%;
  }

  .sticker-hero {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 0.68rem;
    right: 0;
    bottom: 0.4rem;
  }

  .sticker-hero strong {
    font-size: 1.1rem;
  }

  .hero-brand {
    font-size: 0.95rem;
    padding: 0.3rem 0.75rem 0.3rem 0.35rem;
    margin-bottom: 0.7rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    justify-content: center;
  }

  .hero-brand .emoji {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: clamp(1.45rem, 7.2vw, 1.85rem);
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
  }

  .hero-actions .btn-kit {
    width: 100%;
    max-width: 360px;
    min-height: 52px;
    font-size: 1.05rem;
    padding: 0.95rem 1.1rem;
    text-align: center;
    justify-content: center;
  }

  .hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price .from {
    display: inline;
    font-size: 0.85rem;
  }

  .hero-price .now {
    font-size: 1.35rem;
  }

  .hero-trust {
    gap: 0.45rem;
    justify-content: center;
    width: 100%;
  }

  .hero-trust span {
    font-size: 0.78rem;
    padding: 0.35rem 0.6rem;
    min-height: 36px;
    justify-content: center;
  }

  .value-strip {
    gap: 0.45rem;
    padding: 0.15rem 0 1rem;
    justify-content: center;
  }

  .value-strip span {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 2.5rem 0;
    text-align: center;
  }

  .section-head {
    margin-bottom: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
    text-align: center;
  }

  .section-desc {
    font-size: 0.95rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .row {
    justify-content: center;
  }

  .benefit-item {
    padding: 1.1rem 0.75rem;
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .benefit-icon {
    width: 3.15rem;
    height: 3.15rem;
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
  }

  .benefit-item h3 {
    font-size: 0.95rem;
  }

  .benefit-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .book-card {
    border-width: 2.5px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .book-card .body {
    padding: 0.8rem 0.7rem 1rem;
  }

  .book-card h3 {
    font-size: 0.98rem;
  }

  .book-card p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .book-card.mini .thumb {
    font-size: 2.6rem;
    aspect-ratio: 3 / 2.2;
  }

  .bonus-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem 1rem;
    gap: 0.85rem;
  }

  .bonus-banner > div {
    width: 100%;
    text-align: center;
  }

  .bonus-banner .btn-blue {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .gallery-item {
    border-width: 2.5px;
    box-shadow: 2px 2px 0 var(--ink);
    border-radius: 0.75rem;
  }

  .gallery-note {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  .audience-chip {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 0.65rem;
    gap: 0.5rem;
    border-width: 2.5px;
  }

  .audience-chip .icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .audience-chip h3 {
    font-size: 0.95rem;
    text-align: center;
  }

  .audience-chip p {
    font-size: 0.78rem;
    line-height: 1.3;
    text-align: center;
  }

  .steps {
    gap: 0.75rem;
    justify-items: center;
  }

  .step {
    padding: 1.15rem 0.9rem;
    border-width: 2.5px;
    text-align: center;
    width: 100%;
  }

  .step-num {
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-box {
    padding: 1.6rem 1.15rem;
    border-width: 2.5px;
    box-shadow: 4px 4px 0 var(--ink);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-box h2 {
    font-size: 1.35rem;
    text-align: center;
  }

  .guarantee-box p {
    font-size: 0.95rem;
    text-align: center;
  }

  .guarantee-seal {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta .offer-panel {
    padding: 1.4rem 1rem;
    border-width: 2.5px;
    box-shadow: 5px 5px 0 var(--ink);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta .doodle {
    display: none;
  }

  .final-cta .offer-panel h2 {
    font-size: 1.45rem;
    text-align: center;
  }

  .final-cta .offer-panel > .lead {
    text-align: center;
  }

  .incluso-list {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    justify-items: center;
  }

  .incluso-list li {
    font-size: 0.9rem;
    padding: 0.65rem 0.7rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .price-block {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .price-block .is {
    font-size: 2.4rem;
  }

  .final-cta .btn-kit {
    max-width: none;
    width: 100%;
    min-height: 54px;
    font-size: 1.05rem;
    padding: 1rem 0.85rem;
    white-space: normal;
    line-height: 1.25;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-wrap,
  .gallery-note,
  .secure-note,
  .site-footer {
    text-align: center;
  }

  .book-card .body,
  .benefit-item {
    text-align: center;
  }

  .sticky-cta {
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  }

  .sticky-cta .btn-kit {
    min-height: 50px;
    font-size: 1rem;
    animation: none;
  }

  body.has-sticky-cta {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .wave {
    height: 28px;
  }

  .lightbox {
    padding: 1rem;
    align-items: center;
  }

  .lightbox img {
    max-width: 92vw;
    max-height: 75vh;
  }

  .lightbox-close {
    top: max(0.75rem, env(safe-area-inset-top));
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }
}

/* Telas bem estreitas */
@media (max-width: 379.98px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .cover-fan {
    width: 260px;
    height: 240px;
  }

  .hero-visual {
    min-height: 230px;
  }

  .nav-cta {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.7rem !important;
  }

  .value-strip span {
    font-size: 0.74rem;
    width: 100%;
  }
}

/* Touch: desativa hover “pulo” que atrapalha no celular */
@media (hover: none) {
  .benefit-item:hover,
  .book-card:hover,
  .audience-chip:hover,
  .gallery-item:hover,
  .btn-kit:hover,
  .btn-kit:focus {
    transform: none;
  }

  .cover-fan:hover .cover-1,
  .cover-fan:hover .cover-2,
  .cover-fan:hover .cover-3 {
    transform: none;
  }

  .cover-fan .cover-1 {
    transform: rotate(-12deg);
  }

  .cover-fan .cover-2 {
    transform: rotate(2deg);
  }

  .cover-fan .cover-3 {
    transform: rotate(11deg);
  }

  .btn-kit-pulse {
    animation: none;
  }
}
