/* ==========================================================================
   Roberto Mateus 6565. E aí, vamos conversar?
   Visual festival: laranja, rosa, lilás. Sem vermelho.
   ========================================================================== */

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #FF4EB2;
  --pink-hot: #FF2D8A;
  --pink-soft: #FF8AC8;
  --orange: #FF7A32;
  --orange-deep: #FF5C1A;
  --yellow: #FFC44D;
  --lilac: #B794F6;
  --lilac-deep: #8B5CF6;
  --peach: #FFD4B8;
  --cream: #FFF6EE;
  --wash-pink: #FFE4F4;
  --wash-lilac: #F0E7FF;
  --wash-orange: #FFE8D4;

  --ink: #2B1848;
  --ink-soft: #4A2C6A;
  --muted: #6B4E7A;
  --line: rgba(43, 24, 72, .12);

  --n-0: #FFFFFF;
  --n-50: var(--cream);
  --n-100: #FFEFE3;
  --n-200: #F5D9C8;
  --n-300: #E8C4B0;
  --n-400: #C9A08C;
  --n-500: var(--muted);
  --n-600: #5A3A68;
  --n-700: var(--ink-soft);
  --n-800: #351F54;
  --n-900: var(--ink);

  --shadow-xs: 0 1px 2px rgba(43, 24, 72, .06);
  --shadow-sm: 0 6px 16px -8px rgba(255, 77, 141, .28);
  --shadow-md: 0 18px 36px -16px rgba(255, 90, 40, .32);
  --shadow-lg: 0 28px 60px -20px rgba(139, 92, 246, .38);

  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-full: 999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --bounce: cubic-bezier(.34, 1.4, .64, 1);
  --shell: 1120px;
  --fs-scale: 1;

  --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-emoji: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', emoji;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: calc(1rem * var(--fs-scale));
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 10px;
}

.shell {
  width: min(var(--shell), calc(100% - 4rem));
  margin-inline: auto;
}
.brand {
  display: block;
  width: min(13.8rem, 78%);
  height: auto;
  margin-bottom: 1.5rem;
}

.brand--footer {
  width: min(16rem, 100%);
  margin-bottom: .9rem;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Progresso + controles ---------- */

.progress {
  position: fixed; inset: 0 0 auto 0; height: 5px; z-index: 90;
  background: transparent;
}

.progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pink-hot), var(--orange), var(--yellow));
  transition: width .12s linear;
}

.pauta-pill {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 80;
  display: none; align-items: center; gap: .65rem;
  padding: .72rem 1.15rem .72rem .75rem;
  background: var(--ink); color: #fff;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
  font-size: .86rem; font-weight: 700;
}

.pauta-pill.is-on { display: flex; }
.pauta-pill__count {
  display: grid; place-items: center;
  width: 1.75rem; height: 1.75rem; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  font-weight: 800; font-size: .8rem;
}

.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.25rem;
  background: #25D366; color: #fff;
  border-radius: var(--r-full);
  font-weight: 700; font-size: .92rem; text-decoration: none;
  box-shadow: 0 16px 32px -12px rgba(37, 211, 102, .55);
  transition: transform .25s var(--bounce);
}

.wa-float:hover { transform: translateY(-4px) scale(1.03); }
.wa-float svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }

/* ---------- Hero festival ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 5.5rem 0 0;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(70% 55% at 12% 88%, #C44BFF 0%, transparent 62%),
    radial-gradient(58% 50% at 92% 8%, #FFC44D 0%, transparent 58%),
    linear-gradient(165deg, #C44BFF 0%, #FF2D8A 36%, #FF7A32 72%, #FFC44D 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 28px 0 56px -28px rgba(196, 75, 255, .4),
    inset -28px 0 56px -28px rgba(255, 122, 50, .28);
}

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

.hero__social {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  right: auto;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: .55rem;
  transform: translateX(-50%);
}

.hero__social-link {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 20px -10px rgba(43, 24, 72, .45);
  transition: transform .22s var(--bounce);
}

.hero__social-link:hover { transform: translateY(-3px) scale(1.07); }

.hero__social-link svg { width: 1.18rem; height: 1.18rem; display: block; }

.hero__social-link--ig {
  background: radial-gradient(circle at 28% 110%, #F4D35E 0%, #F77737 18%, #E1306C 52%, #C13584 72%, #833AB4 100%);
}

.hero__social-link--tt {
  background: #111;
}

.hero__social-link--tt svg {
  filter: drop-shadow(1.6px 0 0 #25F4EE) drop-shadow(-1.6px 0 0 #FE2C55);
}

.hero__social-link--fb {
  background: #1877F2;
}

.hero__blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  animation: blob 14s ease-in-out infinite;
}

.hero__blobs .b1 {
  width: 58vw; height: 58vw; max-width: 520px; max-height: 520px;
  left: -18%; bottom: -8%;
  background: #FF5C1A;
  border-radius: 58% 42% 38% 62% / 48% 38% 62% 52%;
}

.hero__blobs .b2 {
  width: 42vw; height: 42vw; max-width: 380px; max-height: 380px;
  right: -12%; top: -10%;
  background: #FF8AC8;
  border-radius: 42% 58% 62% 38% / 52% 42% 58% 48%;
  animation-delay: -4s;
}

.hero__blobs .b3 {
  width: 28vw; height: 28vw; max-width: 240px; max-height: 240px;
  right: 8%; bottom: 28%;
  background: #B794F6;
  border-radius: 62% 38% 48% 52% / 42% 62% 38% 58%;
  animation-delay: -8s; opacity: .4;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(18px, -22px) rotate(8deg); }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 3;
  order: 1;
  padding-bottom: 46svh;
}

.hero__media {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 155vw;
  height: 50svh;
  margin: 0;
  transform: translateX(-50%);
  overflow: visible;
}

.hero__media[hidden] { display: none; }

.hero__media::after {
  content: '';
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 6%;
  height: 2.2rem;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(43, 24, 72, .32) 0%, transparent 72%);
}

.hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: drop-shadow(0 22px 36px rgba(43, 24, 72, .32));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-size: clamp(.58rem, 2.5vw, .72rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, .88);
  margin-bottom: .85rem;
  padding: .42rem .8rem;
  background: rgba(255, 255, 255, .16);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 9.2vw, 2.7rem);
  font-weight: 650; line-height: 1.02; letter-spacing: -.03em;
  max-width: 12ch;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: #FFE08A;
}

.hero__lead {
  margin-top: .9rem; max-width: 38ch;
  font-size: clamp(.92rem, 3.2vw, 1.05rem);
  font-weight: 400; line-height: 1.5;
  color: rgba(255, 255, 255, .92);
}

.hero__meta {
  margin-top: 1.15rem; display: flex; flex-wrap: wrap; gap: .4rem;
}

.hero__meta span {
  display: inline-flex; align-items: center;
  padding: .32rem .7rem;
  background: rgba(255, 255, 255, .16);
  border-radius: var(--r-full);
  font-size: .74rem; font-weight: 600;
  color: #fff;
}

.hero__scroll {
  display: grid;
  justify-items: start;
  gap: .4rem;
  margin-top: 1.15rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.hero__scroll i {
  width: 8px;
  height: 8px;
  margin-left: .15rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.6s var(--ease) infinite;
}

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 4;
  height: clamp(52px, 10vw, 96px);
  margin-top: 0;
  color: var(--peach);
}

.hero__wave svg { width: 100%; height: 100%; display: block; }

@media (min-width: 860px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(20rem, .7fr) minmax(30rem, 1.3fr);
    grid-template-rows: 1fr;
    align-items: stretch;
    min-height: 100svh;
    padding: 0;
  }

  .hero::before {
    box-shadow:
      inset 40px 0 70px -36px rgba(196, 75, 255, .4),
      inset -40px 0 70px -36px rgba(255, 122, 50, .22);
  }

  .hero__social {
    top: 1.35rem;
    left: auto;
    right: 1.4rem;
    gap: .65rem;
    transform: none;
  }

  .hero__social-link {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero__eyebrow {
    font-size: .72rem;
    letter-spacing: .12em;
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.6vw, 5.6rem);
    line-height: .98;
  }

  .hero__lead {
    margin-top: 1.4rem;
    font-size: clamp(1.02rem, 1.6vw, 1.28rem);
    line-height: 1.55;
  }

  .hero__meta {
    margin-top: 2.2rem;
    gap: .55rem;
  }

  .hero__meta span {
    padding: .42rem .85rem;
    font-size: .8rem;
  }

  .hero__inner {
    order: unset;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    max-width: none;
    padding: 6.5rem 1.2rem 4.2rem 0;
    margin-left: max(2rem, calc((100vw - var(--shell)) / 2));
    margin-right: 0;
  }

  .hero__media {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    order: unset;
    z-index: 2;
    width: 118%;
    max-width: none;
    height: 100%;
    min-height: 100svh;
    margin: 0 0 0 auto;
    padding: 0;
    justify-content: flex-end;
  }

  .hero__media::after {
    left: 28%;
    right: 4%;
    bottom: 6%;
    height: 3.2rem;
  }

  .hero__photo {
    width: auto;
    max-width: none;
    height: 108svh;
    max-height: none;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero__blobs { opacity: 1; }

  .hero__blobs .b1 { left: -12%; bottom: -18%; }
  .hero__blobs .b2 { right: -8%; top: -12%; }
  .hero__blobs .b3 { right: 18%; bottom: 22%; left: auto; }

  .hero__scroll {
    position: static;
    left: auto;
    bottom: auto;
    margin-top: 2.6rem;
    z-index: auto;
  }

  .hero__wave {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    margin-top: 0;
    order: unset;
  }
}

/* ---------- Seções + ondas ---------- */

.section {
  position: relative;
  padding: clamp(3.4rem, 8vw, 6.5rem) 0 clamp(4.2rem, 10vw, 7.5rem);
  overflow: hidden;
}

.section .shell { position: relative; z-index: 2; }

.blob {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(0px);
  opacity: .55;
}

.blob--pink {
  width: 280px; height: 280px; top: -80px; right: -90px;
  background: #FFB4DC;
  border-radius: 58% 42% 38% 62% / 48% 38% 62% 52%;
}

.blob--orange {
  width: 240px; height: 240px; bottom: -70px; left: -80px;
  background: #FFD0A8;
  border-radius: 42% 58% 62% 38% / 52% 42% 58% 48%;
}

.blob--lilac {
  width: 220px; height: 220px; top: 20%; left: -70px;
  background: #D9C4FF;
  border-radius: 62% 38% 48% 52% / 42% 62% 38% 58%;
}

.section--peach { background: var(--peach); }
.section--lilac { background: var(--wash-lilac); }
.section--cream { background: var(--cream); }
.section--pink { background: var(--wash-pink); }
.section--orange { background: var(--wash-orange); }
.section--festival {
  background:
    radial-gradient(70% 80% at 100% 0%, #C44BFF 0%, transparent 55%),
    linear-gradient(160deg, #5B2A8A 0%, #8B2E6A 48%, #C44BFF 100%);
  color: rgba(255, 255, 255, .86);
}

.wave {
  display: block; width: 100%; height: clamp(42px, 8vw, 78px);
  margin-top: -1px; line-height: 0;
}

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

.head { max-width: 38rem; }
.head--center { margin-inline: auto; text-align: center; }

.label {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .85rem;
  background: #fff;
  color: var(--pink-hot);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
}

.section--festival .label {
  background: rgba(255, 255, 255, .16); color: #FFE08A; box-shadow: none;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 3.15rem);
  font-weight: 650; line-height: 1.08; letter-spacing: -.03em;
  color: var(--ink);
  text-wrap: balance;
}

.section--festival .title { color: #fff; }
.title em { font-style: normal; color: var(--pink-hot); }
.section--festival .title em { color: #FFE08A; }

.lead {
  margin-top: .95rem;
  font-size: clamp(1rem, 3.2vw, 1.12rem);
  color: var(--muted); line-height: 1.7;
}

.section--festival .lead { color: rgba(255, 255, 255, .74); }

/* ---------- Cards de quiz (Espelho) ---------- */

.mirror { display: grid; gap: 1rem; margin-top: 2.4rem; }

@media (min-width: 860px) {
  .mirror { grid-template-columns: repeat(2, 1fr); }
  .mirror > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}

.mirror-card {
  display: grid; gap: 1rem;
  padding: 1.35rem 1.3rem 1.2rem;
  background: #fff;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--bounce), box-shadow .3s var(--ease);
}

.mirror-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mirror-card.is-yes { box-shadow: 0 18px 36px -16px rgba(255, 45, 138, .4); }

.mirror-card__top { display: flex; gap: .85rem; align-items: flex-start; }

.icon-tile {
  flex: none; width: 3.1rem; height: 3.1rem;
  display: grid; place-items: center;
  border-radius: 1.15rem;
  background: var(--wash-lilac);
  font-family: var(--font-emoji);
  font-size: 1.55rem;
  line-height: 1;
  animation: floaty 3.4s ease-in-out infinite;
}

.icon-tile--peach { background: var(--wash-orange); }
.icon-tile--orange { background: #FFE0C2; }
.icon-tile--pink { background: var(--wash-pink); }
.icon-tile--lilac { background: var(--wash-lilac); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.mirror-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem; font-weight: 650; color: var(--ink);
}

.mirror-card__hook { margin-top: .2rem; color: var(--muted); font-size: .98rem; }
.mirror-card__note { font-size: .78rem; color: #B0899A; }

.probe { display: grid; gap: .55rem; list-style: none; }

.probe__item {
  display: grid; gap: .65rem;
  padding: .85rem .95rem;
  background: var(--cream);
  border: 0;
  border-radius: 1.15rem;
  transition: background .22s var(--ease), transform .22s var(--bounce);
}

.probe__item.is-yes { background: var(--wash-pink); }
.probe__item.is-no { background: var(--wash-lilac); }
.probe__item.is-no .probe__q { color: var(--muted); }

.probe__q { font-size: .95rem; line-height: 1.45; color: var(--ink); font-weight: 500; }
.probe__item.is-yes .probe__q { font-weight: 600; }

.probe__btns { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }

.probe__btn {
  min-height: 2.7rem;
  padding: .5rem .7rem;
  background: #fff;
  border: 0; border-radius: var(--r-full);
  font-size: .88rem; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow-xs);
  transition: transform .2s var(--bounce), background .2s var(--ease), color .2s var(--ease);
}

.probe__btn:hover { transform: scale(1.04); }
.probe__btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.probe__btn[data-voto="nao"][aria-pressed="true"] {
  background: linear-gradient(135deg, var(--lilac-deep), var(--lilac));
}

.tally {
  margin-top: 1.8rem; padding: 1.35rem 1.4rem;
  display: grid; gap: .35rem;
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.tally strong {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 650;
}

.tally p { color: rgba(255, 255, 255, .9); font-size: .95rem; max-width: 52ch; }

/* ---------- Pauta ---------- */

.agenda-grid { display: grid; gap: .85rem; margin-top: 2.2rem; }

@media (min-width: 720px) { .agenda-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .agenda-grid { grid-template-columns: repeat(3, 1fr); } }

.agenda-card {
  position: relative; text-align: left;
  display: grid; gap: .7rem; align-content: start;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 3px solid transparent;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--bounce), border-color .28s var(--ease);
}

.agenda-card:hover { transform: translateY(-5px) rotate(-.4deg); }
.agenda-card.is-picked {
  border-color: var(--pink-hot);
  background: linear-gradient(180deg, var(--wash-pink), #fff 70%);
}

.agenda-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 650; color: var(--ink);
}

.agenda-card p { font-size: .92rem; color: var(--muted); }

.agenda-card__rank {
  position: absolute; top: -.7rem; right: 1rem;
  display: none; place-items: center;
  width: 2.1rem; height: 2.1rem; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
  font-size: .85rem; font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.agenda-card.is-picked .agenda-card__rank { display: grid; }

.agenda-card__cue {
  font-size: .8rem; font-weight: 700; color: var(--pink-hot);
}

.agenda-card.is-picked .agenda-card__cue { color: var(--muted); }

/* ---------- Deep dive ---------- */

.deep {
  margin-top: 1.6rem;
  border: 0; border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.deep[hidden] { display: none; }

.deep__head {
  display: flex; flex-wrap: wrap; gap: .9rem; align-items: center;
  padding: 1.3rem 1.3rem 1rem;
  background: linear-gradient(180deg, var(--wash-pink), #fff);
}

.deep__head h3 {
  font-family: var(--font-display);
  font-size: 1.28rem; font-weight: 650; color: var(--ink);
}

.deep__head p { font-size: .86rem; color: var(--muted); }

.deep__tabs {
  display: flex; gap: .4rem; padding: 0 1.2rem;
  flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none;
}

.deep__tabs::-webkit-scrollbar { display: none; }

.deep__switch {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  padding: .2rem 1.2rem 1rem;
}

.deep__switch b {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-right: .2rem;
}

.deep__switch button {
  padding: .38rem .85rem;
  border: 0; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 700; color: var(--ink-soft);
  background: var(--cream);
}

.deep__switch button[aria-selected="true"] {
  background: var(--ink); color: #fff;
}

.deep__tab {
  flex: none;
  padding: .62rem 1rem;
  border-radius: var(--r-full);
  font-size: .82rem; font-weight: 700; color: var(--muted);
  background: var(--cream);
  white-space: nowrap;
}

.deep__tab[aria-selected="true"] {
  background: var(--ink); color: #fff;
}

.deep__panel { padding: 1.2rem 1.3rem 1.6rem; }
.deep__panel[hidden] { display: none; }
.deep__panel p { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }

.deep__list { display: grid; gap: .65rem; margin-top: .3rem; }

.deep__list li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .9rem 1rem;
  background: var(--cream); border-radius: 1.1rem;
  font-size: .96rem; color: var(--ink-soft);
  list-style: none;
}

.deep__list li::before {
  content: '✨';
  flex: none;
  font-family: var(--font-emoji);
  margin-top: .05rem;
}

.deep__list--no li::before { content: '🔸'; }

.ask {
  margin-top: 1.3rem; padding: 1.2rem 1.25rem;
  background: var(--wash-orange);
  border: 0;
  border-radius: 1.4rem;
}

.ask p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.12rem; color: var(--ink); line-height: 1.45;
}

.ask__tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: .45rem;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.5rem;
  border-radius: var(--r-full);
  font-size: .96rem; font-weight: 700; text-decoration: none;
  transition: transform .25s var(--bounce), box-shadow .25s var(--ease);
}

.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn--wa { background: #25D366; color: #fff; box-shadow: var(--shadow-sm); }
.btn--wa svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }
.btn--dark {
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
}
.btn--ghost { background: #fff; color: var(--ink); box-shadow: var(--shadow-xs); }
.btn--lg { padding: 1.15rem 1.8rem; font-size: 1.02rem; min-height: 3.2rem; }

/* ---------- Bio ---------- */

.bio { display: grid; gap: 2.2rem; align-items: center; margin-top: 2.2rem; }

@media (min-width: 940px) { .bio { grid-template-columns: .9fr 1.1fr; gap: 3.5rem; } }

.portrait {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 42% 58% 48% 52% / 38% 42% 58% 62%;
  overflow: hidden;
  background: linear-gradient(150deg, #C44BFF, #FF2D8A 45%, #FF7A32 100%);
  box-shadow: var(--shadow-lg);
}

.portrait img { width: 100%; height: 100%; object-fit: cover; }

.portrait__fallback {
  position: absolute; inset: 0;
  display: grid; place-content: end start; gap: .3rem;
  padding: 2rem; color: #fff;
}

.portrait__fallback b {
  font-family: var(--font-display); font-size: 4.2rem; line-height: .85;
}

.portrait__fallback span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

.prose p { font-size: 1.04rem; line-height: 1.8; color: var(--ink-soft); margin-top: 1.05rem; }
.prose strong { color: var(--ink); font-weight: 700; }

.pull {
  margin-top: 1.5rem; padding: 1.25rem 1.35rem;
  background: var(--wash-pink);
  border: 0;
  border-radius: 1.4rem;
}

.pull p {
  margin: 0;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.2rem; line-height: 1.4; color: var(--ink);
}

/* ---------- Timeline ---------- */

.timeline { margin-top: 2.2rem; }

.timeline__years {
  display: flex; gap: .45rem; overflow-x: auto;
  padding-bottom: .8rem;
  scrollbar-width: none;
}

.timeline__years::-webkit-scrollbar { display: none; }

.timeline__year {
  flex: none;
  padding: .62rem 1.05rem;
  border: 0; border-radius: var(--r-full);
  font-size: .86rem; font-weight: 700; color: var(--ink-soft);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.timeline__year[aria-selected="true"] {
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
}

.timeline__panel {
  margin-top: 1rem; padding: 1.4rem 1.3rem;
  border: 0; border-radius: var(--r-xl);
  background: #fff; box-shadow: var(--shadow-sm);
  display: grid; gap: .6rem;
}

.timeline__panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 650; color: var(--ink);
}

.timeline__panel p { color: var(--ink-soft); line-height: 1.7; }

.timeline__stat {
  display: inline-flex; align-self: start;
  padding: .4rem .85rem;
  background: var(--wash-orange); border-radius: var(--r-full);
  font-size: .8rem; font-weight: 700; color: var(--orange-deep);
}

/* ---------- Quiz mito/verdade ---------- */

.quiz { display: grid; gap: .9rem; margin-top: 2.2rem; }

.quiz-item {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  background: #fff;
  border: 0; border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  display: grid; gap: 1rem;
}

.quiz-item__n {
  display: inline-flex; align-self: start;
  padding: .28rem .7rem;
  background: var(--wash-lilac);
  color: var(--lilac-deep);
  border-radius: var(--r-full);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}

.quiz-item__q {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 550; color: var(--ink); line-height: 1.4;
}

.quiz-item__row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }

.quiz-btn {
  min-height: 3rem;
  padding: .7rem 1rem;
  border: 0; border-radius: var(--r-full);
  font-size: .95rem; font-weight: 800; color: var(--ink-soft);
  background: var(--cream);
  transition: transform .2s var(--bounce);
}

.quiz-btn:hover { transform: scale(1.04); }
.quiz-btn.is-right {
  background: linear-gradient(135deg, #34D399, #10B981);
  color: #fff;
}
.quiz-btn.is-wrong {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--ink);
}
.quiz-item.is-done .quiz-btn { cursor: default; }

.quiz-item__fb {
  padding: 1rem 1.1rem;
  background: var(--cream); border-radius: 1.1rem;
  font-size: .96rem; line-height: 1.65; color: var(--ink-soft);
}

.quiz-item__fb[hidden] { display: none; }
.quiz-item__fb b { color: var(--ink); }

.quiz-score {
  margin-top: 1.5rem; padding: 1.4rem 1.35rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--lilac-deep), var(--pink-hot));
  color: #fff;
  display: grid; gap: .4rem;
}

.quiz-score[hidden] { display: none; }
.quiz-score strong {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 650;
}
.quiz-score p { color: rgba(255, 255, 255, .88); max-width: 62ch; }

/* ---------- FAQ ---------- */

.faq { margin-top: 2.2rem; display: grid; gap: .7rem; }

.faq-item {
  border: 0; border-radius: 1.4rem;
  background: #fff; overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.faq-item.is-open { box-shadow: var(--shadow-sm); }

.faq-item__q {
  width: 100%; text-align: left;
  display: flex; gap: .9rem; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.2rem;
  font-size: 1rem; font-weight: 650; color: var(--ink);
}

.faq-item__q i {
  flex: none; width: 1.8rem; height: 1.8rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--wash-pink); color: var(--pink-hot);
  font-style: normal; font-size: 1.1rem; font-weight: 700;
  transition: transform .25s var(--bounce), background .25s var(--ease);
}

.faq-item.is-open .faq-item__q i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
}

.faq-item__a { padding: 0 1.2rem 1.25rem; }
.faq-item__a[hidden] { display: none; }
.faq-item__a p { color: var(--ink-soft); line-height: 1.75; }
.faq-item__a p + p { margin-top: .8rem; }

/* ---------- Compromissos ---------- */

.pact { display: grid; gap: .85rem; margin-top: 2.2rem; }

@media (min-width: 860px) { .pact { grid-template-columns: repeat(2, 1fr); } }

.pact-item {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.25rem 1.2rem;
  background: rgba(255, 255, 255, .1);
  border: 0;
  border-radius: 1.4rem;
}

.pact-item__n {
  flex: none; width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center;
  border-radius: .85rem;
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  color: #fff;
  font-size: .8rem; font-weight: 800;
}

.pact-item h3 { font-size: 1.02rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.pact-item p { font-size: .94rem; color: rgba(255, 255, 255, .72); line-height: 1.65; }

/* ---------- Números ---------- */

.stats { display: grid; gap: .85rem; margin-top: 2.2rem; }

@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.stat {
  padding: 1.8rem 1.3rem; text-align: center;
  background: #fff;
  border: 0; border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--bounce);
}

.stat:hover { transform: translateY(-5px) rotate(-.6deg); }

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.3rem); font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--pink-hot), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .5rem;
}

.stat span { display: block; font-weight: 700; color: var(--ink); }
.stat small { display: block; margin-top: .3rem; font-size: .84rem; color: var(--muted); }

/* ---------- Devolutiva ---------- */

.recap {
  margin-top: 2.2rem; padding: 1.5rem 1.3rem;
  background: #fff;
  border: 0; border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  display: grid; gap: 1.2rem;
}

.recap__rows { display: grid; gap: .65rem; }

.recap__row {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: baseline; justify-content: space-between;
  padding: .9rem 1.05rem;
  background: var(--cream); border-radius: 1.1rem;
}

.recap__row dt { font-size: .84rem; font-weight: 600; color: var(--muted); }
.recap__row dd { font-weight: 800; color: var(--ink); }
.recap__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.recap__empty { font-size: .96rem; color: var(--muted); }

/* ---------- Footer ---------- */

.footer {
  background:
    radial-gradient(70% 80% at 0% 100%, #FF7A32 0%, transparent 50%),
    linear-gradient(165deg, #2B1848 0%, #5B2A8A 55%, #FF2D8A 140%);
  color: rgba(255, 255, 255, .74);
  padding: 4rem 0 7.5rem;
}

.footer__grid { display: grid; gap: 2.2rem; }

@media (min-width: 860px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; } }

.footer h2 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 650; color: #fff; margin: .5rem 0 .4rem;
}

.footer h3 {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5); margin-bottom: .9rem;
}

.footer p { font-size: .9rem; line-height: 1.7; }
.footer__links { display: grid; gap: .5rem; }

.footer__links a {
  font-size: .9rem; text-decoration: none; color: rgba(255, 255, 255, .78);
}

.footer__links a:hover { color: #FFE08A; }

.footer__legal {
  margin-top: 2.4rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem; line-height: 1.75; color: rgba(255, 255, 255, .48);
}

.footer__party { font-size: .72rem; color: rgba(255, 255, 255, .32); }

/* ---------- Consentimento ---------- */

.consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  max-width: none;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: .65rem;
  align-items: center;
  justify-content: space-between;
  padding: .48rem .9rem .48rem 1rem;
  padding-right: 12.5rem;
  background: rgba(43, 24, 72, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 -10px 28px -18px rgba(43, 24, 72, .45);
}

.consent[hidden] { display: none; }

.consent p {
  font-size: .72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .68);
  max-width: none;
  flex: 1 1 auto;
}

.consent a { color: rgba(255, 224, 138, .9); }

.consent button {
  flex: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: .32rem .8rem;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
}

.consent button:hover { background: rgba(255, 255, 255, .2); }

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (min-width: 720px) {
  .probe__item {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  }
  .probe__q { flex: 1 1 14rem; }
  .probe__btns { display: flex; flex: none; }
  .probe__btn { min-width: 4.2rem; }
  .quiz-item__row { display: flex; }
}

@media (max-width: 640px) {
  .wa-float span { display: none; }
  .wa-float { padding: 1.05rem; }
  .hero__social { top: 1.1rem; }
  .pauta-pill { left: .7rem; bottom: .7rem; }
  .consent { padding-right: 4.4rem; }
  .deep__head, .deep__tabs, .deep__panel, .deep__switch { padding-inline: 1rem; }
  .footer { padding-bottom: 8.5rem; }
}
