@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --wine: #5C2040;
  --wine2: #7B3060;
  --wine3: #3D1229;
  --wine-shadow: #2A0D1C;
  --gold: #C9A033;
  --gold-dark: #7A5C10;
  --gold2: #E8C96A;
  --goldlt: #FFF8E6;
  --pink: #D4537E;
  --pink-dark: #A83258;
  --pink2: #E8A0B8;
  --pinklt: #FFF0F5;
  --bg: #F7F7F7;
  --surface: #FFFFFF;
  --border: #E5E5E5;
  --border-dark: #D0D0D0;
  --dark: #2A0D1C;
  --gray: #4A3844;
  --lgray: #6B5560;
  --muted: #6B5560;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --fb: 'Nunito', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: linear-gradient(145deg, #fdf6f0 0%, #f5e8ef 45%, #ebe4f8 100%);
  background-attachment: fixed;
  color: var(--dark);
  overflow-x: clip;
  padding-top: 72px;
  line-height: 1.5;
  min-height: 100vh;
}

/* ── GLASSMORPHISM ── */
.glass {
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 8px 32px rgba(92,32,64,.06);
}
.glass-dark {
  background: rgba(61,18,41,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-glass {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 14px; font-size: 15px; font-weight: 800;
  background: rgba(255,255,255,.35); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6); color: var(--wine);
  transition: transform .15s, background .15s;
}
.btn-glass:hover { background: rgba(255,255,255,.55); transform: translateY(-2px); }
a { text-decoration: none; color: inherit; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  line-height: 1; user-select: none; vertical-align: middle;
}

.page { display: none !important; }
.page.active { display: block !important; }

/* ── DUOLINGO 3D BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 14px;
  font-size: 15px; font-weight: 800; letter-spacing: .3px;
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap; border: 2px solid transparent;
}
.btn-primary {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine-shadow);
  box-shadow: 0 4px 0 var(--wine-shadow);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary:active { transform: translateY(4px); box-shadow: none; }
.btn-secondary {
  background: var(--surface);
  color: var(--wine);
  border-color: var(--border-dark);
  box-shadow: 0 4px 0 var(--border-dark);
}
.btn-secondary:hover { background: #FAFAFA; }
.btn-secondary:active { transform: translateY(4px); box-shadow: none; }
.btn-play {
  padding: 9px 18px; border-radius: 12px; font-size: 13px; font-weight: 800;
  background: var(--wine); color: #fff;
  border: 2px solid var(--wine-shadow);
  box-shadow: 0 3px 0 var(--wine-shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-play:hover { filter: brightness(1.05); }
.btn-play:active { transform: translateY(3px); box-shadow: none; }

/* ── NAVBAR (Duolingo clean) ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(92,32,64,.1); }
.nav-inner {
  max-width: 1140px; height: 100%; margin: 0 auto;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.nav-left { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(201,160,51,.45);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.06)}
}
.nav-divider { width: 2px; height: 28px; background: var(--border); border-radius: 2px; }
.nav-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
}
.nav-name {
  font-size: 18px; font-weight: 900; color: var(--wine3); line-height: 1.1;
}
.nav-name em { font-style: normal; color: var(--gold-dark); }
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 10px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 800; color: var(--gray);
  transition: background .15s, color .15s;
}
.nav-link:hover { color: var(--wine); background: rgba(255,255,255,.4); }
.nav-link.active { color: var(--wine); background: rgba(255,240,245,.7); }
.nav-cta {
  margin-left: 6px; padding: 10px 20px; border-radius: 14px;
  background: var(--wine); color: #fff;
  font-size: 14px; font-weight: 800;
  border: 2px solid var(--wine-shadow);
  box-shadow: 0 4px 0 var(--wine-shadow);
  transition: transform .12s, box-shadow .12s;
}
.nav-cta:hover { filter: brightness(1.06); }
.nav-cta:active { transform: translateY(4px); box-shadow: none; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-blob.b1 { width: 360px; height: 360px; background: rgba(212,83,126,.2); top: -80px; right: -60px; }
.hero-blob.b2 { width: 300px; height: 300px; background: rgba(201,160,51,.18); bottom: -60px; left: -40px; }
.hero-grid {
  max-width: 1000px; width: 100%; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center;
}
.hero-panel { padding: 36px 32px; border-radius: 24px; }
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900; color: var(--wine3); line-height: 1.1; margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--pink-dark); }
.hero-desc {
  font-size: 16px; font-weight: 600; color: var(--gray);
  line-height: 1.55; margin-bottom: 24px; max-width: 420px;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; padding: 8px 14px; border-radius: 20px;
  background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.65);
  color: var(--wine);
}
.chip-ico { font-size: 16px !important; }

/* Hero — botão jogos (Uiverse marcelodolza) */
.btn-jogos-ui {
  --primary: var(--pink);
  --neutral-1: #faf8f5;
  --neutral-2: #ebe6e0;
  --radius: 14px;
  --btn-text: var(--wine3);

  cursor: pointer;
  border-radius: var(--radius);
  color: var(--btn-text);
  text-shadow: 0 1px 1px rgba(255,255,255,.6);
  border: none;
  background: transparent;
  box-shadow: 0 .5px .5px 1px rgba(255,255,255,.35),
    0 10px 20px rgba(92,32,64,.15), 0 4px 5px 0 rgba(92,32,64,.06);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: all .3s ease;
  min-width: 200px; padding: 20px; height: 68px;
  font-family: var(--fb); font-size: 17px; font-weight: 700;
}
.btn-jogos-ui:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255,255,255,.4),
    0 15px 30px rgba(92,32,64,.2), 0 10px 3px -3px rgba(92,32,64,.05);
}
.btn-jogos-ui:active { transform: scale(1); }
.btn-jogos-ui:disabled { pointer-events: none; }

.btn-jogos-ui::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  border: 2.5px solid transparent;
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(92,32,64,.08), rgba(92,32,64,.2)) border-box;
  z-index: 0; transition: all .4s ease;
}
.btn-jogos-ui:hover::after {
  transform: scale(1.05, 1.08);
  box-shadow: inset 0 -1px 3px 0 rgba(255,255,255,.9);
}
.btn-jogos-ui::before {
  content: ""; inset: 7px 6px 6px; position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px; filter: blur(.5px); z-index: 1;
}

.btn-jogos-ui .outline {
  position: absolute; border-radius: inherit; overflow: hidden;
  z-index: 0; opacity: 0; transition: opacity .4s ease;
  inset: -2px -3.5px; pointer-events: none;
}
.btn-jogos-ui .outline::before {
  content: ""; position: absolute; inset: -100%;
  background: conic-gradient(from 180deg, transparent 60%, rgba(201,160,51,.9) 80%, transparent 100%);
  animation: btnJogosSpin 2s linear infinite;
  animation-play-state: paused;
}
.btn-jogos-ui:hover .outline { opacity: 1; }
.btn-jogos-ui:hover .outline::before { animation-play-state: running; }
@keyframes btnJogosSpin { to { transform: rotate(360deg); } }

.btn-jogos-ui .state {
  padding-left: 32px; z-index: 2; display: flex; position: relative;
}
.btn-jogos-ui .state p {
  display: flex; align-items: center; justify-content: center; margin: 0;
}
.btn-jogos-ui .state .icon {
  position: absolute; left: 0; top: 0; bottom: 0; margin: auto;
  transform: scale(1.2); transition: all .3s ease;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
}
.btn-jogos-ui .state .icon svg { overflow: visible; }

.btn-jogos-ui .state--default p span {
  display: block; opacity: 0;
  animation: btnJogosSlideDown .8s ease forwards calc(var(--i) * .03s);
}
.btn-jogos-ui:hover .state--default p span {
  opacity: 1;
  animation: btnJogosWave .5s ease forwards calc(var(--i) * .02s);
}
.btn-jogos-ui.is-sent .state--default p span,
.btn-jogos-ui:focus .state--default p span {
  animation: btnJogosDisappear .6s ease forwards calc(var(--i) * .03s);
}
@keyframes btnJogosWave {
  30% { opacity: 1; transform: translateY(4px); }
  50% { opacity: 1; transform: translateY(-3px); color: var(--primary); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes btnJogosSlideDown {
  0% { opacity: 0; transform: translateY(-20px) translateX(5px) rotate(-90deg); color: var(--primary); filter: blur(5px); }
  30% { opacity: 1; transform: translateY(4px); filter: blur(0); }
  50% { opacity: 1; transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes btnJogosDisappear {
  from { opacity: 1; }
  to { opacity: 0; transform: translateX(5px) translateY(20px); color: var(--primary); filter: blur(5px); }
}

.btn-jogos-ui .state--default .icon svg { animation: btnJogosLand .6s ease forwards; }
.btn-jogos-ui:hover .state--default .icon { transform: rotate(-12deg) scale(1.25); }
.btn-jogos-ui.is-sent .state--default svg,
.btn-jogos-ui:focus .state--default svg { animation: btnJogosTakeOff .8s linear forwards; }
.btn-jogos-ui.is-sent .state--default .icon,
.btn-jogos-ui:focus .state--default .icon { transform: rotate(0) scale(1.25); }
@keyframes btnJogosTakeOff {
  0% { opacity: 1; }
  60% { opacity: 1; transform: translateX(70px) rotate(-20deg) scale(1.8); }
  100% { opacity: 0; transform: translateX(160px) rotate(-20deg) scale(0); }
}
@keyframes btnJogosLand {
  0% { transform: translateX(-60px) translateY(30px) rotate(30deg) scale(1.8); opacity: 0; filter: blur(3px); }
  100% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; filter: blur(0); }
}

.btn-jogos-ui .state--default .icon::before {
  content: ""; position: absolute; top: 50%; height: 2px; width: 0; left: -5px;
  background: linear-gradient(to right, transparent, rgba(92,32,64,.35));
}
.btn-jogos-ui.is-sent .state--default .icon::before,
.btn-jogos-ui:focus .state--default .icon::before { animation: btnJogosContrail .8s linear forwards; }
@keyframes btnJogosContrail {
  0% { width: 0; opacity: 1; }
  8% { width: 15px; }
  60% { opacity: .7; width: 80px; }
  100% { opacity: 0; width: 160px; }
}

.btn-jogos-ui .state--default span:nth-child(8) { margin-right: 4px; }
.btn-jogos-ui .state--sent { display: none; }
.btn-jogos-ui .state--sent svg { transform: scale(1.2); margin-right: 6px; }

.btn-jogos-ui.is-sent .state--default,
.btn-jogos-ui:focus .state--default { position: absolute; }
.btn-jogos-ui.is-sent .state--sent,
.btn-jogos-ui:focus .state--sent { display: flex; }
.btn-jogos-ui.is-sent .state--sent span,
.btn-jogos-ui:focus .state--sent span {
  opacity: 0;
  animation: btnJogosSlideDown .8s ease forwards calc(var(--i) * .15s);
}
.btn-jogos-ui.is-sent .state--sent .icon svg,
.btn-jogos-ui:focus .state--sent .icon svg {
  opacity: 0;
  animation: btnJogosAppear 1.2s ease forwards .8s;
}
@keyframes btnJogosAppear {
  0% { opacity: 0; transform: scale(4) rotate(-40deg); color: var(--primary); filter: blur(4px); }
  30% { opacity: 1; transform: scale(.6); filter: blur(1px); }
  50% { opacity: 1; transform: scale(1.2); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .btn-jogos-ui { min-width: 185px; height: 60px; font-size: 15px; padding: 16px; }
}

.btn-ver-todos {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 800; color: var(--wine);
  background: rgba(255,255,255,.5); backdrop-filter: blur(10px);
  border: 2px solid rgba(92,32,64,.12);
  box-shadow: 0 3px 0 rgba(92,32,64,.08);
  transition: transform .12s, box-shadow .12s, background .15s;
}
.btn-ver-todos .material-symbols-rounded { font-size: 18px; transition: transform .2s; }
.btn-ver-todos:hover { background: rgba(255,255,255,.75); }
.btn-ver-todos:hover .material-symbols-rounded { transform: translateX(3px); }
.btn-ver-todos:active { transform: translateY(3px); box-shadow: none; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; align-items: center; }
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-logo-ring {
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.5); backdrop-filter: blur(12px);
  border: 3px solid rgba(201,160,51,.35);
  box-shadow: 0 24px 56px rgba(92,32,64,.14), 0 0 0 8px rgba(201,160,51,.1);
  display: flex; align-items: center; justify-content: center;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,100%{transform:translateY(0) rotate(0deg)}
  33%{transform:translateY(-10px) rotate(1.5deg)}
  66%{transform:translateY(-5px) rotate(-1deg)}
}
.hero-logo-ring img {
  width: 220px; height: 220px; object-fit: cover; border-radius: 50%;
}
.hero-logo-ring.sm {
  width: 200px; height: 200px;
  animation: logoFloat 5s ease-in-out infinite;
}
.hero-logo-ring.sm img { width: 184px; height: 184px; }
.hero-pill {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: 16px; padding: 14px 16px; width: 100%; max-width: 300px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 3px 0 var(--border-dark);
}
.hero-pill-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; border: 2px solid var(--border);
}
.hero-pill-t { font-size: 13px; font-weight: 800; color: var(--wine3); }
.hero-pill-s { font-size: 12px; font-weight: 600; color: var(--gray); }

/* ── SECTIONS ── */
.sec { padding: 56px 24px; }
.sec-in { max-width: 1100px; margin: 0 auto; }
.sec-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900; color: var(--wine3); line-height: 1.15; margin-bottom: 8px;
}
.sec-title em { font-style: normal; color: var(--pink-dark); }
.sec-sub {
  font-size: 15px; font-weight: 600; color: var(--gray);
  margin-bottom: 28px; max-width: 480px;
}

/* ── CONVO CARDS (doodle + conversa) ── */
.convo-sec { padding-top: 20px; }
.convo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; align-items: start;
}
.convo-grid-sm { margin-top: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }

.convo-card {
  --ink: #3D1229;
  --paper: rgba(255,253,248,.75);
  --paper-line: rgba(92,32,64,.08);
  --tape: rgba(232,201,106,.85);
  --acc-coral: #D4537E;
  --acc-mint: #c6e377;
  --acc-lav: #E8A0B8;
  --acc-yellow: #E8C96A;
  font-size: 15px; position: relative; width: 100%;
  background:
    linear-gradient(var(--paper) 1.4em, transparent 1.4em) 0 0 / 100% 1.5em,
    linear-gradient(var(--paper-line) .06em, transparent .06em) 0 1.4em / 100% 1.5em var(--paper);
  backdrop-filter: blur(10px);
  border: .2em solid var(--ink);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: .45em .45em 0 var(--ink), inset 0 0 1em rgba(255,255,255,.4);
  display: flex; flex-direction: column; align-items: center;
  padding: 2.6em 1.4em 1.6em; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-radius .35s;
  animation: floatCard 6s ease-in-out infinite;
  outline: none;
}
.convo-card:nth-child(2) { animation-delay: .5s; }
.convo-card:nth-child(3) { animation-delay: 1s; }
.convo-card:nth-child(4) { animation-delay: 1.5s; }
.convo-card::before {
  content: ""; position: absolute; top: -.65em; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 4.5em; height: 1.2em; background: var(--tape);
  border: .08em solid rgba(0,0,0,.08);
  border-radius: 2px 4px 2px 5px; z-index: 10;
  animation: tapeFlutter 4s infinite alternate ease-in-out;
}
.convo-card:hover, .convo-card.open, .convo-card:focus-visible {
  transform: translateY(-.6em) rotate(.8deg);
  box-shadow: .6em .75em 0 var(--ink);
  border-radius: 15px 255px 15px 225px / 255px 15px 225px 15px;
}
.convo-card.mini { padding: 2em 1.2em 1.4em; font-size: 14px; }
.convo-card.carol-card {
  max-width: 320px; margin: 0 auto 0; cursor: default;
  animation: floatCard 5s ease-in-out infinite;
}
.convo-card.carol-card:hover { transform: translateY(-.4em); }

.doodle { position: absolute; z-index: 0; pointer-events: none; }
.doodle.star { width: 1.5em; height: 1.5em; top: 1.2em; right: 1.2em; fill: var(--acc-yellow); animation: pulseSparkle 3s infinite alternate; }
.doodle.sparkle { width: 1.2em; height: 1.2em; top: 3.5em; left: 1.2em; fill: var(--acc-mint); animation: pulseSparkle 2.5s infinite alternate-reverse; }
.doodle.swirl { width: 2em; height: 2em; bottom: 1.5em; right: .8em; stroke: var(--acc-lav); stroke-width: 5; fill: none; opacity: .5; animation: rotateDoodle 15s linear infinite; }

.convo-avatar {
  width: 3.8em; height: 3.8em; border-radius: 50% 45% 50% 45%;
  background: rgba(255,255,255,.6); border: .15em solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8em; margin-bottom: .8em;
  box-shadow: .2em .2em 0 var(--acc-coral);
  animation: avatarBounce 4s ease-in-out infinite; z-index: 2;
}
.convo-avatar.sm { width: 2.8em; height: 2.8em; font-size: 1.3em; margin-bottom: .5em; }

.card-photo {
  width: 7em; height: 7em; border-radius: 45% 55% 50% 50%;
  border: .2em solid var(--ink); overflow: hidden;
  box-shadow: .25em .25em 0 var(--acc-coral);
  margin-bottom: 1em; animation: avatarBounce 4s ease-in-out infinite; z-index: 2;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

.convo-ask {
  font-size: .9em; font-weight: 700; font-style: italic; color: var(--gray);
  text-align: center; margin-bottom: .6em; z-index: 2; line-height: 1.4;
  padding: .5em .8em; border-radius: 12px 12px 12px 4px;
  background: rgba(255,255,255,.5); border: 1px dashed rgba(92,32,64,.15);
}
.convo-title {
  text-align: center; font-size: 1.15em; font-weight: 900; color: var(--ink);
  margin-bottom: .4em; z-index: 2; line-height: 1.25;
}
.convo-title span {
  display: block; font-size: .55em; font-weight: 800;
  background: var(--acc-mint); color: var(--ink);
  padding: .35em .9em; margin-top: .5em;
  border: .12em solid var(--ink);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: .15em .15em 0 var(--ink);
  text-transform: uppercase; letter-spacing: .06em;
}
.convo-card.accent-pink .convo-title span { background: #fceef5; }
.convo-card.accent-gold .convo-title span { background: var(--acc-yellow); }
.convo-card.accent-lav .convo-title span { background: #f5e8f0; }
.convo-card:hover .convo-title, .convo-card.open .convo-title { animation: titleWobble .5s ease-in-out infinite alternate; }

.convo-reply {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .3s, margin .3s;
  width: 100%; z-index: 2;
}
.convo-reply p {
  font-size: .88em; font-weight: 600; color: var(--gray); line-height: 1.5;
  text-align: center; padding: .7em .9em; margin-top: .5em;
  background: rgba(255,255,255,.65); border-radius: 4px 14px 14px 14px;
  border: .12em solid var(--ink);
  box-shadow: .12em .12em 0 var(--ink);
}
.convo-card:hover .convo-reply, .convo-card.open .convo-reply, .convo-card:focus-visible .convo-reply {
  max-height: 120px; opacity: 1; margin-top: .3em;
}
.convo-reply.always { max-height: 200px; opacity: 1; margin-top: .5em; }

.card-socials {
  display: flex; gap: .8em; height: 0; opacity: 0; overflow: hidden;
  transition: all .35s var(--ease-out); z-index: 2; margin-top: 0;
}
.carol-card:hover .card-socials, .carol-card.open .card-socials {
  height: 3em; opacity: 1; margin-top: 1.2em; overflow: visible;
}
.card-socials-btn {
  width: 2.6em; height: 2.6em; border: .12em solid var(--ink);
  background: rgba(255,255,255,.8); border-radius: 50% 40% 60% 40% / 40% 60% 40% 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: .15em .15em 0 var(--ink); transition: transform .15s;
}
.card-socials-btn svg { width: 1.2em; height: 1.2em; fill: var(--ink); }
.card-socials-btn.soc-wa:hover { background: #00d757; }
.card-socials-btn.soc-wa:hover svg { fill: #fff; }
.card-socials-btn.soc-mail:hover { background: #ea4335; }
.card-socials-btn.soc-mail:hover svg { fill: #fff; }
.card-socials-btn.soc-ig:hover { background: linear-gradient(45deg,#f09433,#dc2743); }
.card-socials-btn.soc-ig:hover svg { fill: #fff; }
.card-socials-btn:hover { transform: translateY(-.2em) rotate(-4deg); animation: btnWiggle .5s ease-in-out infinite; }

.carol-ig-note { font-size: 11px; font-weight: 700; color: var(--muted); margin-top: 12px; z-index: 2; }
.sobre-center { display: flex; flex-direction: column; align-items: center; }
.sobre-body { padding: 40px 24px 64px; }

@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-.35em)} }
@keyframes tapeFlutter { 0%{transform:translateX(-50%) rotate(-4deg)} 100%{transform:translateX(-50%) rotate(-2deg) scale(1.02)} }
@keyframes pulseSparkle { 0%{transform:scale(.85);opacity:.6} 100%{transform:scale(1.05);opacity:1} }
@keyframes rotateDoodle { to{transform:rotate(360deg)} }
@keyframes avatarBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-.25em)} }
@keyframes titleWobble { 0%{transform:rotate(-1.5deg)} 100%{transform:rotate(1.5deg)} }
@keyframes btnWiggle { 0%,100%{transform:translateY(-.2em) rotate(0)} 50%{transform:translateY(-.2em) rotate(6deg)} }

/* Jogos preview */
.jogos-preview { padding-bottom: 48px; }
.jogos-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}

.jogos-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 290px));
  gap: 12px; justify-content: center;
}

/* Browser shell — modal do jogo (Uiverse arthur_6104) */
.game-browser {
  width: 100%; max-width: 420px;
  background: #d8d3ce;
  border-radius: 7px;
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
  box-shadow: 5px 5px 10px rgba(42, 13, 28, .22);
}

.game-browser .tabs-head {
  background-color: var(--wine-shadow);
  height: 40px; flex-shrink: 0;
  display: flex; justify-content: space-between; align-items: end;
  padding-left: 16px; position: relative; z-index: 3;
}
.game-browser .tab-open {
  width: auto; min-width: 148px; max-width: 210px; height: 34px;
  border-radius: 7px 7px 0 0;
  background-color: var(--wine);
  display: flex; gap: 5px; align-items: center;
  justify-content: space-between;
  padding: 4px 8px; position: relative;
}
.game-browser .tab-open .tab-ico { font-size: 13px !important; color: #fff; flex-shrink: 0; }
.game-browser .tab-open > span:not(.tab-ico) {
  color: #fff; font-size: 10px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
}
.game-browser .close-tab {
  color: #fff; font-size: 9px; padding: 1px 4px;
  border-radius: 50%; cursor: default; flex-shrink: 0;
}
.game-browser .close-tab:hover { background-color: rgba(255,255,255,.12); }
.game-browser .rounded-l,
.game-browser .rounded-r {
  position: absolute; background-color: var(--wine);
  width: 20px; height: 24px; top: 0; overflow: hidden;
}
.game-browser .rounded-l { right: 0; transform: translate(100%); }
.game-browser .rounded-r { left: 0; transform: translate(-100%); }
.game-browser .mask-round { width: 100%; height: 100%; background-color: var(--wine-shadow); }
.game-browser .rounded-l .mask-round { border-radius: 0 0 0 7px; }
.game-browser .rounded-r .mask-round { border-radius: 0 0 7px 0; }

.game-browser .window-opt { display: flex; }
.game-browser .window-opt button {
  height: 30px; width: 30px; border: none;
  background-color: transparent; transition: .1s ease-out;
  color: #fff; margin-bottom: 10px; font-size: 12px; cursor: default;
}
.game-browser .window-opt button:hover { background-color: rgba(255,255,255,.1); }
.game-browser .window-opt .window-close:hover { background-color: rgb(255, 52, 52); }

.game-browser .head-browser {
  position: absolute; top: 30px; left: 0; right: 0;
  height: 40px; z-index: 2;
  background-color: #4a3040;
  padding: 7px; display: flex; border-radius: 7px 7px 0 0;
  gap: 5px; align-items: center;
}
.game-browser .head-browser input {
  background-color: #352230; border: 2px solid transparent;
  height: 100%; border-radius: 20px; outline: none;
  color: #fff; padding: 0 12px; flex: 1; min-width: 0;
  font-size: 11px; font-weight: 600; font-family: var(--fb);
  transition: .2s ease-in-out; cursor: default;
}
.game-browser .head-browser input:hover { background-color: #4a3545; }
.game-browser .head-browser input:focus {
  border-color: var(--gold2);
  background-color: #352230;
}
.game-browser .head-browser button {
  width: 27px; height: 25px; border: none;
  background-color: transparent; color: #fff;
  border-radius: 50%; transition: .2s ease-in-out;
  font-size: 13px; flex-shrink: 0; cursor: pointer;
}
.game-browser .head-browser button:disabled { opacity: .35; cursor: default; }
.game-browser .head-browser button:not(:disabled):hover { background-color: rgba(255,255,255,.12); }
.game-browser .head-browser .star {
  color: #fff; font-size: 14px; opacity: .75;
  display: flex; align-items: center; justify-content: center;
  cursor: default;
}

.game-browser-body {
  position: relative; z-index: 1;
  padding: 42px 12px 14px;
  background: linear-gradient(180deg, #faf7f4 0%, #f0ebe5 100%);
  min-height: 120px;
}

.jogos-page-body { padding: 32px 24px 64px; max-width: 640px; margin: 0 auto; }
.jogos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 290px));
  gap: 12px; justify-content: center;
}

/* Game cards — Uiverse JohnnyCSilva (adaptado marca) */
.game-card {
  width: 100%; max-width: 290px; height: 70px;
  background: rgba(42, 18, 32, .9);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: flex-start;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 16px rgba(42,13,28,.15);
  cursor: pointer; outline: none;
  transition: transform .35s ease-in-out, box-shadow .35s ease-in-out;
}
.game-card:hover, .game-card:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(92,32,64,.28);
}

.game-img {
  width: 50px; height: 50px; margin-left: 10px; border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .5s ease-in-out;
}
.game-img .material-symbols-rounded { font-size: 26px; color: #fff; }

.game-img.tone-pink { background: linear-gradient(135deg, #f0d4e4, #c0bbfe); }
.game-card:hover .game-img.tone-pink { background: linear-gradient(135deg, #c0bbfe, #5C2040); }
.game-img.tone-green { background: linear-gradient(135deg, #d0ede3, #91c9b5); }
.game-card:hover .game-img.tone-green { background: linear-gradient(135deg, #91c9b5, #3D6B55); }
.game-img.tone-blue { background: linear-gradient(135deg, #c8e8f0, #7eb8d4); }
.game-card:hover .game-img.tone-blue { background: linear-gradient(135deg, #7eb8d4, #2A5C72); }
.game-img.tone-orange { background: linear-gradient(135deg, #ffe0b8, #E8C96A); }
.game-card:hover .game-img.tone-orange { background: linear-gradient(135deg, #E8C96A, #7A5C10); }
.game-img.tone-purple { background: linear-gradient(135deg, #d8d0ec, #b8a8d8); }
.game-card:hover .game-img.tone-purple { background: linear-gradient(135deg, #b8a8d8, #5C2040); }
.game-img.tone-rose { background: linear-gradient(135deg, #f8bbd0, #D4537E); }
.game-card:hover .game-img.tone-rose { background: linear-gradient(135deg, #D4537E, #712020); }

.game-textBox {
  width: calc(100% - 70px); margin-left: 10px; padding-right: 10px;
  color: #fff; min-width: 0;
}
.game-textContent {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.game-h1 {
  font-size: 15px; font-weight: 800; color: #fff;
  line-height: 1.2; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-span {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45);
  flex-shrink: 0; text-transform: uppercase; letter-spacing: .03em;
}
.game-p {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.62);
  margin: 2px 0 0; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Jogos page */
/* Page hero */
.page-hero { padding: 48px 24px 56px; text-align: center; }
.page-hero-in { max-width: 560px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 8px;
}
.page-hero h1 em { font-style: normal; color: var(--gold2); }
.page-hero p { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85); }

/* Sobre */
.sobre-body { padding: 48px 24px 72px; }
.sobre-in { max-width: 1080px; margin: 0 auto; }
.carol-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px;
  align-items: start; margin-bottom: 56px;
}
.carol-photo {
  border-radius: 20px; aspect-ratio: 3/4;
  background: var(--pinklt); border: 2px solid var(--border);
  box-shadow: 0 4px 0 var(--border-dark);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 28px;
}
.carol-photo img {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 4px solid rgba(201,160,51,.35);
  box-shadow: 0 12px 36px rgba(92,32,64,.18);
  animation: logoFloat 5s ease-in-out infinite;
}
.carol-name { font-size: 20px; font-weight: 900; color: var(--wine3); text-align: center; }
.carol-role { font-size: 13px; font-weight: 700; color: var(--gray); text-align: center; line-height: 1.5; }
.carol-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; width: 100%; }
.carol-badge {
  background: var(--surface); border-radius: 12px; padding: 12px;
  border: 2px solid var(--border); text-align: center;
  box-shadow: 0 3px 0 var(--border-dark);
  transition: transform .15s;
}
.carol-badge:hover { transform: translateY(-2px); }
.carol-badge-v { font-size: 20px; font-weight: 900; color: var(--wine); }
.carol-badge-l {
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}
.carol-quote {
  font-size: 18px; font-weight: 700; color: var(--wine3);
  line-height: 1.55; padding: 16px 18px; margin-bottom: 20px;
  background: var(--goldlt); border: 2px solid var(--gold2); border-radius: 14px;
}
.carol-bio { font-size: 15px; font-weight: 600; color: var(--gray); line-height: 1.7; margin-bottom: 22px; }
.creds { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.cred { display: flex; align-items: flex-start; gap: 10px; }
.cred-dot {
  width: 10px; height: 10px; border-radius: 4px;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}
.cred-t { font-size: 14px; font-weight: 800; color: var(--wine3); }
.cred-s { font-size: 13px; font-weight: 600; color: var(--gray); margin-top: 2px; }
.contacts {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end;
  padding-top: 8px; padding-bottom: 44px; margin-top: 8px;
}

/* ── WhatsApp expand button (Uiverse Gaurang7717) ── */
.wa-btn {
  display: flex; align-items: center; justify-content: flex-start;
  width: 48px; height: 48px; border: none; border-radius: 50%;
  cursor: pointer; position: relative; overflow: hidden;
  transition: width .3s ease, border-radius .3s ease;
  box-shadow: 2px 2px 10px rgba(0,0,0,.18);
  background-color: #00d757; text-decoration: none; color: #fff;
  font-family: var(--fb); flex-shrink: 0;
}
.wa-btn-lg { width: 52px; height: 52px; }
.wa-sign {
  width: 100%; transition: width .3s ease; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-sign svg { width: 26px; height: 26px; }
.wa-sign svg path { fill: #fff; }
.wa-label {
  position: absolute; right: 0; width: 0; opacity: 0;
  color: #fff; font-size: 15px; font-weight: 800;
  white-space: nowrap; transition: width .3s ease, opacity .3s ease;
}
.wa-btn:hover {
  width: 168px; border-radius: 40px;
}
.wa-btn-lg:hover { width: 200px; }
.wa-btn:hover .wa-sign { width: 30%; padding-left: 8px; }
.wa-btn:hover .wa-label { opacity: 1; width: 70%; padding-right: 12px; }
.wa-btn:active { transform: translate(2px, 2px); }
.hero-btns .wa-btn-lg { margin-right: 4px; }
.nav-right { overflow: visible; }
.cta-in .wa-btn-lg { margin: 0 auto; }

/* ── Social tooltip icons (Uiverse vinodjangid07) ── */
.soc-wrap {
  position: relative; cursor: pointer; font-size: 17px; border-radius: 10px;
}
.soc-tip {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  padding: 10px; opacity: 0; pointer-events: none; transition: all .3s;
  border-radius: 14px; z-index: 20; min-width: 220px;
  box-shadow: inset 4px 4px 6px rgba(0,0,0,.15), inset -4px -4px 10px rgba(255,255,255,.08),
    4px 4px 14px rgba(0,0,0,.22), -2px -2px 10px rgba(255,255,255,.06);
}
.soc-profile {
  background: #2a2b2f; border-radius: 10px 14px; padding: 12px;
  border: 1px solid #52382f;
}
.soc-wrap:hover .soc-tip {
  top: -148px; opacity: 1; visibility: visible; pointer-events: auto;
}
.soc-icon {
  text-decoration: none; color: #fff; display: block; position: relative;
}
.soc-layer {
  width: 56px; height: 56px; transition: transform .3s; position: relative;
}
.soc-icon:hover .soc-layer { transform: rotate(-35deg) skew(20deg); }
.soc-layer span {
  position: absolute; top: 0; left: 0; height: 100%; width: 100%;
  border: 1px solid #fff; border-radius: 14px; transition: all .3s;
}
.soc-icon-name {
  position: absolute; left: 50%; bottom: -5px; opacity: 0; font-weight: 800;
  font-size: 12px; transform: translateX(-50%);
  transition: bottom .3s ease, opacity .3s ease; white-space: nowrap; color: var(--wine3);
}
.soc-icon:hover .soc-icon-name { bottom: -32px; opacity: 1; }
.soc-icon:hover .soc-layer span:nth-child(1) { opacity: .2; }
.soc-icon:hover .soc-layer span:nth-child(2) { opacity: .4; transform: translate(5px,-5px); }
.soc-icon:hover .soc-layer span:nth-child(3) { opacity: .6; transform: translate(10px,-10px); }
.soc-icon:hover .soc-layer span:nth-child(4) { opacity: .8; transform: translate(15px,-15px); }
.soc-icon:hover .soc-layer span:nth-child(5) { opacity: 1; transform: translate(20px,-20px); }
.soc-face {
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.soc-wa .soc-layer span, .soc-wa .soc-icon-name { color: #00d757; border-color: #00d757; }
.soc-wa .soc-face { background: #00d757; }
.soc-wa .soc-icon:hover .soc-layer span { box-shadow: -1px 1px 3px #00d757; }
.soc-gmail .soc-layer span, .soc-gmail .soc-icon-name { color: #ea4335; border-color: #ea4335; }
.soc-gmail .soc-face { background: linear-gradient(135deg,#ea4335,#fbbc04); }
.soc-gmail .soc-icon:hover .soc-layer span { box-shadow: -1px 1px 3px #ea4335; }
.soc-ig .soc-layer span, .soc-ig .soc-icon-name { color: #e6683c; border-color: #e6683c; }
.soc-ig .soc-face {
  background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888);
}
.soc-ig .soc-icon:hover .soc-layer span { box-shadow: -1px 1px 3px #e6683c; }
.soc-user { display: flex; gap: 10px; align-items: center; }
.soc-avatar {
  width: 48px; height: 48px; font-size: 14px; font-weight: 900;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: #fff; flex-shrink: 0; overflow: hidden;
}
.soc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.soc-name { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2; }
.soc-username { font-size: 12px; font-weight: 600; color: #ccc; }
.soc-about { color: #aaa; font-size: 12px; font-weight: 600; padding-top: 6px; }

.val-sec { background: var(--bg); padding: 72px 24px; border-top: 2px solid var(--border); }
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.val-card {
  background: var(--surface); border-radius: 16px; padding: 24px;
  border: 2px solid var(--border); box-shadow: 0 4px 0 var(--border-dark);
  transition: transform .2s var(--ease-out);
}
.val-card:hover { transform: translateY(-4px); }
.val-icon { font-size: 32px; margin-bottom: 12px; }
.val-card h3 { font-size: 18px; font-weight: 900; color: var(--wine3); margin-bottom: 8px; }
.val-card p { font-size: 14px; font-weight: 600; color: var(--gray); line-height: 1.55; }

.gal-sec { padding: 72px 24px; background: var(--surface); }
.gal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px; gap: 14px; margin-top: 32px;
}
.gal-item {
  border-radius: 16px; background: var(--bg);
  border: 2px solid var(--border); box-shadow: 0 3px 0 var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform .2s;
}
.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-item:hover { transform: translateY(-3px); }
.gal-inner { text-align: center; }
.gal-icon { font-size: 28px; opacity: .4; }
.gal-item:first-child .gal-icon { font-size: 40px; }
.gal-lbl {
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}
.gal-note {
  position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase; color: var(--gray);
  background: var(--surface); padding: 4px 10px; border-radius: 8px;
  border: 2px solid var(--border);
}

/* CTA */
.cta-banner { padding: 48px 24px; text-align: center; }
.cta-in { max-width: 480px; margin: 0 auto; }
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900; color: #fff; margin-bottom: 20px;
}
.cta-banner h2 em { font-style: normal; color: var(--gold2); }

/* ── MODAL (navegador) ── */
#modal {
  position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 16px;
}
#modal.on { display: flex; }
.modal-ov {
  position: absolute; inset: 0;
  background: rgba(42,13,28,.7); backdrop-filter: blur(4px);
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.modal-browser {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px;
  max-height: 92vh;
  animation: modalPop .35s var(--ease-out);
  box-shadow: 8px 8px 24px rgba(42, 13, 28, .35);
}
@keyframes modalPop {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.modal-browser .window-close { cursor: pointer; }
.modal-browser .head-browser button:not(:disabled) { cursor: pointer; }

.modal-browser-body {
  padding: 38px 16px 18px;
  overflow-y: auto;
  max-height: calc(92vh - 72px);
}
.modal-intro {
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(92,32,64,.1);
}
.modal-tag {
  font-size: 10px; font-weight: 900; letter-spacing: .5px;
  text-transform: uppercase; color: var(--wine2); margin-bottom: 4px;
}
.modal-title { font-size: 17px; font-weight: 900; color: var(--wine3); }
.modal-body { padding: 0; }

/* ── GAMES UI ── */
.g-em {
  text-align: center; font-size: 44px; margin-bottom: 12px;
  animation: emojiPop .35s var(--ease-out);
}
@keyframes emojiPop {
  0% { transform: scale(.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.g-q {
  background: var(--bg); border-radius: 14px; padding: 16px;
  margin-bottom: 14px; border: 2px solid var(--border);
  animation: slideUp .3s var(--ease-out);
}
@keyframes slideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
.g-btns { display: flex; gap: 10px; margin-bottom: 12px; }
.bg {
  flex: 1; padding: 14px 10px; border-radius: 12px; border: 2px solid transparent;
  cursor: pointer; font-family: var(--fb); font-size: 14px; font-weight: 800;
  box-shadow: 0 4px 0 rgba(0,0,0,.15); transition: transform .12s, box-shadow .12s;
}
.bg:active { transform: translateY(4px); box-shadow: none; }
.bg-v { background: #27AE60; color: #fff; border-color: #1e8449; box-shadow: 0 4px 0 #1e8449; }
.bg-m { background: #E74C3C; color: #fff; border-color: #c0392b; box-shadow: 0 4px 0 #c0392b; }
.fb {
  border-radius: 12px; padding: 12px 14px; margin-bottom: 12px;
  border: 2px solid transparent; animation: slideUp .3s var(--ease-out);
}
.fb-ok { background: #E8F8EF; border-color: #27AE60; }
.fb-er { background: #FDEDEC; border-color: #E74C3C; }
.fb-t { font-size: 14px; font-weight: 900; margin-bottom: 4px; }
.fb-ok .fb-t { color: #1a7a45; }
.fb-er .fb-t { color: #a93226; }
.fb-s { font-size: 13px; font-weight: 600; color: var(--gray); line-height: 1.5; }
.btn-nx {
  width: 100%; padding: 14px; border-radius: 12px; cursor: pointer;
  background: var(--wine); color: #fff; font-weight: 800; font-size: 14px;
  border: 2px solid var(--wine-shadow); box-shadow: 0 4px 0 var(--wine-shadow);
  transition: transform .12s, box-shadow .12s;
}
.btn-nx:active { transform: translateY(4px); box-shadow: none; }

.pdts { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; }
.pd { width: 10px; height: 10px; border-radius: 4px; transition: transform .2s, background .2s; }
.pd-d { background: var(--gold); }
.pd-c { background: var(--wine); transform: scale(1.2); }
.pd-n { background: var(--border); }

/* Results */
.rs { padding: 16px; text-align: center; }
.rs-m { font-size: 52px; margin-bottom: 8px; animation: celebratePop .5s var(--ease-out); }
@keyframes celebratePop {
  0% { transform: scale(.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.rs-sc { font-size: 28px; font-weight: 900; color: var(--wine3); margin-bottom: 4px; }
.rs-msg { font-size: 14px; font-weight: 700; color: var(--wine2); margin-bottom: 14px; }
.rs-pr {
  background: var(--bg); border-radius: 12px; height: 12px;
  overflow: hidden; margin-bottom: 14px; border: 2px solid var(--border);
}
.rs-bar {
  height: 100%; border-radius: 10px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform-origin: left; transform: scaleX(0);
  transition: transform 1s var(--ease-out);
}
.rs-bar.filled { transform: scaleX(1); }
.rs-cta {
  background: var(--wine); border-radius: 14px; padding: 14px 16px;
  margin-bottom: 12px; text-align: left;
  border: 2px solid var(--wine-shadow);
}
.rs-cl {
  font-size: 10px; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold2); margin-bottom: 4px;
}
.rs-ct { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.5; }
.rs-ph { font-size: 14px; font-weight: 800; color: var(--gold2); margin-top: 6px; }
.btn-rp {
  width: 100%; padding: 13px; border-radius: 12px; cursor: pointer;
  background: var(--gold); color: var(--wine3); font-weight: 900; font-size: 14px;
  border: 2px solid var(--gold-dark); box-shadow: 0 4px 0 var(--gold-dark);
  transition: transform .12s, box-shadow .12s;
}
.btn-rp:active { transform: translateY(4px); box-shadow: none; }

/* Memory */
.mi { display: flex; gap: 8px; justify-content: center; margin-bottom: 12px; }
.ms {
  background: var(--bg); border-radius: 12px; padding: 8px 14px;
  text-align: center; border: 2px solid var(--border);
}
.ms-v { font-size: 22px; font-weight: 900; color: var(--wine); line-height: 1; }
.ms-l {
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted);
}
.mg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.mc { aspect-ratio: 1; border-radius: 10px; cursor: pointer; perspective: 500px; }
.mc-i {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d; transition: transform .4s var(--ease-out);
}
.mc.fl .mc-i { transform: rotateY(180deg); }
.mc.mt .mc-b {
  background: #27AE60 !important; border-color: #1e8449 !important;
  animation: matchPop .4s var(--ease-out);
}
.mc.mwr .mc-i { animation: shakeWrong .35s ease; }
@keyframes matchPop {
  50% { transform: rotateY(180deg) scale(1.1); }
}
.mc-f, .mc-b {
  position: absolute; inset: 0; border-radius: 10px;
  backface-visibility: hidden; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
}
.mc-f {
  background: var(--wine); color: rgba(255,255,255,.4);
  font-size: 18px; font-weight: 900;
  box-shadow: 0 3px 0 var(--wine-shadow);
}
.mc-b {
  background: var(--surface); transform: rotateY(180deg);
  font-size: 24px;
}

/* Simon */
.sq-b {
  background: var(--bg); border-radius: 12px; padding: 12px 16px;
  text-align: center; border: 2px solid var(--border); margin-bottom: 12px;
}
.sq-lv { font-size: 22px; font-weight: 900; color: var(--wine); }
.sq-mg { font-size: 13px; font-weight: 700; color: var(--gray); }
.sq-cir { display: flex; gap: 10px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.scc {
  width: 58px; height: 58px; border-radius: 14px; cursor: pointer;
  border: 2px solid rgba(0,0,0,.12); display: flex; align-items: center;
  justify-content: center; font-size: 22px;
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
  transition: transform .12s;
}
.scc.lit { transform: scale(1.12); filter: brightness(1.15); }
.scc:active { transform: translateY(3px); box-shadow: none; }
.btn-sq {
  width: 100%; padding: 13px; border-radius: 12px; cursor: pointer;
  background: var(--wine); color: #fff; font-weight: 800; font-size: 14px;
  border: 2px solid var(--wine-shadow); box-shadow: 0 4px 0 var(--wine-shadow);
}
.btn-sq:active { transform: translateY(4px); box-shadow: none; }

/* Syllables */
.sl-ht { text-align: center; font-size: 14px; font-weight: 700; color: var(--gray); margin-bottom: 10px; }
.sl-dp {
  background: var(--bg); border: 2px solid var(--border); border-radius: 14px;
  padding: 14px; text-align: center; margin-bottom: 12px; min-height: 54px;
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.sl-sl {
  min-width: 42px; height: 42px; border-radius: 10px; background: var(--surface);
  border: 2px dashed var(--border-dark); display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 900; color: var(--wine);
  transition: transform .2s var(--ease-out);
}
.sl-sl.ok { border-style: solid; border-color: var(--wine); background: var(--pinklt); }
.sl-sy { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 12px; }
.sl-bt {
  padding: 10px 14px; border-radius: 10px; border: 2px solid var(--border);
  cursor: pointer; background: var(--surface); font-size: 16px;
  font-weight: 800; color: var(--wine);
  box-shadow: 0 3px 0 var(--border-dark);
  transition: transform .12s;
}
.sl-bt:hover:not(:disabled) { background: var(--pinklt); border-color: var(--wine); }
.sl-bt:active:not(:disabled) { transform: translateY(3px); box-shadow: none; }
.sl-bt.ud { opacity: .3; pointer-events: none; }
.btn-cl {
  width: 100%; padding: 10px; border-radius: 12px;
  border: 2px solid var(--border); background: var(--bg);
  color: var(--wine); font-weight: 800; font-size: 13px; cursor: pointer; margin-bottom: 8px;
}

/* Find */
.fn-mt { display: flex; gap: 8px; justify-content: center; margin-bottom: 12px; }
.fn-bx { border-radius: 12px; padding: 8px 14px; text-align: center; border: 2px solid transparent; }
.fn-w { background: var(--wine); border-color: var(--wine-shadow); box-shadow: 0 3px 0 var(--wine-shadow); }
.fn-g { background: var(--goldlt); border-color: var(--gold2); }
.fn-v { font-size: 22px; font-weight: 900; line-height: 1; }
.fn-l { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.fn-w .fn-v, .fn-w .fn-l { color: #fff; }
.fn-w .fn-l { color: rgba(255,255,255,.7); }
.fn-g .fn-v { color: var(--wine); }
.fn-g .fn-l { color: var(--muted); }
.fn-gd { display: grid; gap: 8px; margin-bottom: 12px; }
.fn-c {
  aspect-ratio: 1; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; cursor: pointer;
  background: var(--surface); border: 2px solid var(--border);
  box-shadow: 0 3px 0 var(--border-dark);
  transition: transform .12s;
}
.fn-c:hover { transform: translateY(-2px); }
.fn-c:active { transform: translateY(2px); box-shadow: none; }
.fn-c.wr { animation: shakeWrong .35s ease; border-color: #E74C3C; background: #FDEDEC; }
.fn-c.ok { animation: correctPop .35s var(--ease-out); border-color: #27AE60; background: #E8F8EF; }
@keyframes shakeWrong {
  0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)}
}
@keyframes correctPop {
  50% { transform: scale(1.12); }
}

/* Breathing */
.br-sc { display: flex; flex-direction: column; align-items: center; padding: 6px 0; }
.br-c {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--pinklt); border: 3px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; margin-bottom: 14px;
  transition: transform 4s ease;
}
.br-c.inh { transform: scale(1.45); animation: breatheIn 4s ease; }
.br-c.exh { transform: scale(1); animation: breatheOut 4s ease; }
@keyframes breatheIn { to { transform: scale(1.45); } }
@keyframes breatheOut { from { transform: scale(1.45); } to { transform: scale(1); } }
.br-lb { font-size: 22px; font-weight: 900; color: var(--wine); margin-bottom: 6px; text-align: center; min-height: 30px; }
.br-ct { font-size: 36px; font-weight: 900; color: var(--pink-dark); line-height: 1; margin-bottom: 14px; }
.br-pg { display: flex; gap: 8px; margin-bottom: 14px; }
.br-pd {
  width: 12px; height: 12px; border-radius: 4px;
  background: var(--border); transition: transform .3s, background .3s;
}
.br-pd.dn { background: var(--gold); transform: scale(1.2); }
.br-tp {
  background: var(--bg); border-radius: 12px; padding: 12px 14px; width: 100%;
  border: 2px solid var(--border); text-align: center;
  font-size: 13px; font-weight: 600; color: var(--gray); line-height: 1.55; margin-bottom: 12px;
}
.btn-br {
  width: 100%; padding: 13px; border-radius: 12px; cursor: pointer;
  background: var(--pink); color: #fff; font-weight: 800; font-size: 14px;
  border: 2px solid var(--pink-dark); box-shadow: 0 4px 0 var(--pink-dark);
}
.btn-br:active { transform: translateY(4px); box-shadow: none; }

/* Confetti */
.confetti-piece {
  position: fixed; width: 8px; height: 8px; border-radius: 2px;
  pointer-events: none; z-index: 10000;
  animation: confettiFall 2s ease forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.reveal.vis { opacity: 1; transform: none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}

/* Footer */
.footer { padding: 32px 24px 20px; }
.footer-in { max-width: 900px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 20px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(201,160,51,.35);
  animation: logoPulse 3s ease-in-out infinite;
}
.footer-name { font-size: 17px; font-weight: 900; color: #fff; }
.footer-name em { font-style: normal; color: var(--gold2); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a, .footer-links button {
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-copy { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.4); text-align: center; }
.footer-copy a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer-copy a:hover { color: #fff; }

/* ── COOKIE BANNER (Uiverse wojtek221221 — adaptado) ── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10000; width: calc(100% - 32px); max-width: 360px;
  animation: cookieIn .4s var(--ease-out);
}
.cookie-banner[hidden] { display: none !important; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-card {
  border-radius: 15px; width: 100%;
  background-color: #fff;
  box-shadow: 0 12px 40px rgba(42, 13, 28, .18);
  border: 1px solid rgba(92, 32, 64, .08);
  padding: 18px 20px 16px;
}
.cookie-title {
  display: block; font-size: 18px; font-weight: 900;
  color: var(--wine3); text-align: center; margin-bottom: 10px;
}
.cookie-description {
  font-size: 13px; line-height: 1.55; text-align: center;
  font-family: var(--fb); color: var(--gray); margin: 0 0 14px;
}
.cookie-description strong { color: var(--wine3); font-weight: 800; }
.cookies-policy {
  color: var(--wine); font-weight: 700; text-decoration: underline;
}
.cookies-policy:hover { text-decoration: none; color: var(--pink-dark); }
.accept-button {
  cursor: pointer; font-weight: 800; font-family: var(--fb);
  font-size: 14px; border-radius: 8px;
  width: 100%; max-width: 140px; height: 38px;
  display: block; margin: 0 auto;
  background-color: transparent;
  color: var(--wine3);
  border: 2px solid var(--wine3);
  transition: background .2s, color .2s;
}
.accept-button:hover {
  background-color: var(--wine);
  color: #fff; border-color: var(--wine);
}
.accept-button:active { transform: scale(.98); }

/* ── PÁGINA LEGAL ── */
.legal-page { padding-top: 0; }
.legal-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; margin-bottom: 24px;
}
.legal-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 900; color: var(--wine3);
  text-decoration: none;
}
.legal-nav-brand em { font-style: normal; color: var(--gold-dark); }
.legal-nav-brand img { border-radius: 50%; border: 2px solid rgba(201,160,51,.35); }
.legal-nav-back {
  font-size: 14px; font-weight: 800; color: var(--wine);
  text-decoration: none; padding: 8px 14px; border-radius: 10px;
  background: rgba(255,255,255,.5);
}
.legal-nav-back:hover { background: rgba(255,255,255,.8); }
.legal-main { padding: 0 20px 48px; max-width: 720px; margin: 0 auto; }
.legal-doc {
  padding: 32px 28px 40px; border-radius: 18px;
}
.legal-doc h1 {
  font-size: clamp(24px, 4vw, 30px); font-weight: 900;
  color: var(--wine3); margin-bottom: 8px; line-height: 1.2;
}
.legal-updated {
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-doc h2 {
  font-size: 17px; font-weight: 900; color: var(--wine);
  margin: 24px 0 10px;
}
.legal-doc p, .legal-doc li {
  font-size: 14px; font-weight: 600; color: var(--gray);
  line-height: 1.65;
}
.legal-doc a { color: var(--wine); font-weight: 700; }
.legal-doc a:hover { color: var(--pink-dark); }
.legal-list { margin: 10px 0 10px 20px; }
.legal-list li { margin-bottom: 6px; }
.legal-table {
  width: 100%; border-collapse: collapse; margin: 12px 0 16px;
  font-size: 12px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--border); padding: 10px 12px;
  text-align: left; vertical-align: top;
}
.legal-table th {
  background: var(--goldlt); color: var(--wine3); font-weight: 800;
}
.legal-table code {
  font-size: 11px; background: var(--bg); padding: 2px 6px; border-radius: 4px;
}
.legal-contact {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center; font-weight: 700;
}
.legal-footer { margin-top: 32px; }
.legal-footer .footer-copy a { color: rgba(255,255,255,.6); }

/* Responsive */
@media (max-width: 900px) {
  .nav-link { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero-right { order: -1; }
  .hero-desc, .hero-btns, .hero-chips { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-logo-ring { width: 190px; height: 190px; }
  .hero-logo-ring img { width: 174px; height: 174px; }
  .jogos-grid, .jogos-grid-home { grid-template-columns: 1fr; justify-items: center; }
  .modal-browser { max-width: 100%; }
  .convo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sec { padding-left: 16px; padding-right: 16px; }
  .convo-grid { grid-template-columns: 1fr; }
  .hero-panel { padding: 28px 22px; }
}
