/* ===== Tokens ===== */
:root {
  --paper-white: #FBFAF4;
  --sunset-peach: #F49561;
  --playtime-coral: #EA7A6C;
  --sage-garden: #AECDC5;
  --sky-tales: #A9DAEB;
  --golden-story: #EBC360;
  --dream-lavender: #AFA8D3;
  --storybook-ink: #4A4A4B;
  --white: #FFFFFF;
  --radius-lg: 32px;
  --radius-md: 24px;
  --font-title: 'Quicksand', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper-white);
  color: var(--storybook-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hl { color: var(--playtime-coral); }

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-family: var(--font-title);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; }
h3 { font-size: 1.25rem; }

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--storybook-ink);
  opacity: .75;
  font-size: 1.02rem;
}

section { padding: 96px 0; position: relative; }

/* Nome com letras coloridas (uso moderado: logo do header + título "Sobre") */
.lc-1 { color: var(--sunset-peach); }
.lc-2 { color: var(--playtime-coral); }
.lc-3 { color: var(--sky-tales); }
.lc-4 { color: var(--golden-story); }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), filter .2s ease;
}

.btn-primary {
  background: var(--playtime-coral);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.06);
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.btn-arrow i, .btn-arrow svg { width: 18px; height: 18px; color: var(--playtime-coral); }

.btn-small { padding: 8px 8px 8px 20px; font-size: .9rem; }
.btn-small .btn-arrow { width: 30px; height: 30px; }
.btn-small .btn-arrow i, .btn-small .btn-arrow svg { width: 15px; height: 15px; }

/* ===== Doodles (giz de cera) e stickers ===== */
.doodle-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-white);
  border: 3px solid var(--storybook-ink);
  box-shadow: 0 8px 18px rgba(74, 74, 75, .1);
}

.sticker svg { width: 60%; height: 60%; }

.sticker--peach { border-color: var(--sunset-peach); box-shadow: 0 10px 22px rgba(244, 149, 97, .25); }
.sticker--coral { border-color: var(--playtime-coral); box-shadow: 0 10px 22px rgba(234, 122, 108, .25); }
.sticker--sage { border-color: var(--sage-garden); box-shadow: 0 10px 22px rgba(174, 205, 197, .3); }
.sticker--sky { border-color: var(--sky-tales); box-shadow: 0 10px 22px rgba(169, 218, 235, .3); }
.sticker--golden { border-color: var(--golden-story); box-shadow: 0 10px 22px rgba(235, 195, 96, .3); }
.sticker--lavender { border-color: var(--dream-lavender); box-shadow: 0 10px 22px rgba(175, 168, 211, .3); }

.blob-1 { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; }
.blob-2 { border-radius: 58% 42% 38% 62% / 55% 60% 40% 45%; }
.blob-3 { border-radius: 65% 35% 50% 50% / 40% 55% 45% 60%; }
.blob-4 { border-radius: 38% 62% 55% 45% / 60% 42% 58% 40%; }

.rot--6 { transform: rotate(-6deg); }
.rot-6 { transform: rotate(6deg); }
.rot--10 { transform: rotate(-10deg); }
.rot-10 { transform: rotate(10deg); }
.rot-4 { transform: rotate(4deg); }

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}

.floaty { animation: float-y 5s ease-in-out infinite; }
.floaty-slow { animation: float-y 7s ease-in-out infinite; }
.floaty-delay { animation-delay: 1.2s; }
.floaty-delay-2 { animation-delay: 2.4s; }

/* pattern de fundo (doodles espalhados, opacidade baixa) */
.doodle-pattern {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 260px;
  opacity: .08;
  pointer-events: none;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 244, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 74, 75, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-sub {
  font-size: .68rem;
  font-weight: 500;
  color: var(--storybook-ink);
  opacity: .7;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 26px; }

.main-nav a {
  position: relative;
  color: var(--storybook-ink);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--playtime-coral); }
.main-nav a.active { color: var(--playtime-coral); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: var(--golden-story);
}

@media (max-width: 860px) {
  .main-nav { display: none; }
}

@media (max-width: 480px) {
  .header-inner .btn-small {
    font-size: .76rem;
    padding: 7px 7px 7px 14px;
    gap: 8px;
    white-space: nowrap;
  }
  .header-inner .btn-small .btn-arrow { width: 26px; height: 26px; }
  .header-inner .btn-small .btn-arrow i, .header-inner .btn-small .btn-arrow svg { width: 13px; height: 13px; }
}

/* ===== Hero ===== */
.hero {
  padding-top: 64px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-sub {
  color: var(--storybook-ink);
  opacity: .8;
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-media { position: relative; }

.hero-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 20px 40px rgba(74, 74, 75, .12);
}

.hero-sticker-1 { position: absolute; top: -28px; left: -32px; width: 76px; height: 76px; }
.hero-sticker-2 { position: absolute; bottom: 60px; right: -36px; width: 84px; height: 84px; }
.hero-sticker-3 { position: absolute; top: 40%; left: -48px; width: 58px; height: 58px; }

.social-proof-card {
  position: absolute;
  bottom: -22px;
  left: 12px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(74, 74, 75, .15);
  text-decoration: none;
  color: var(--storybook-ink);
  font-size: .85rem;
  font-weight: 600;
}

.social-proof-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.social-proof-card small { display: block; font-weight: 400; opacity: .7; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 48px; }
  .hero-media { order: -1; max-width: 320px; margin: 0 auto 48px; }
}

@media (max-width: 600px) {
  .hero { padding-top: 0; }

  .hero-inner {
    display: block;
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    border: none;
    box-shadow: none;
    opacity: .62;
  }

  .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(251, 250, 244, .18) 0%, rgba(251, 250, 244, .38) 45%, rgba(251, 250, 244, .82) 82%, var(--paper-white) 100%);
  }

  .hero-sticker-1, .hero-sticker-2, .hero-sticker-3 { display: none; }

  .hero-text { position: relative; z-index: 1; padding-top: 56px; }

  .social-proof-card {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 1;
    padding: 6px 16px 6px 6px;
    font-size: .78rem;
  }

  .social-proof-avatar { width: 30px; height: 30px; }
}

/* Marquee */
.marquee {
  background: var(--sage-garden);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  font-weight: 600;
  font-family: var(--font-title);
  color: var(--storybook-ink);
  font-size: .95rem;
}

.marquee-track svg { width: 18px; height: 18px; flex-shrink: 0; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Como funciona (processo) ===== */
.processo-cards {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.card {
  border-radius: var(--radius-md);
  padding: 36px 28px;
}

.processo-card { flex: 1; }
.processo-card--sage { background: var(--sage-garden); }
.processo-card--sky { background: var(--sky-tales); }
.processo-card--golden { background: #F3DC9E; }

.processo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 16px;
}

.processo-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
}

.processo-connector svg { width: 42px; height: 42px; }
.processo-connector .connector-v { display: none; }

@media (max-width: 860px) {
  .processo-cards { flex-direction: column; }
  .processo-connector { align-self: center; }
  .processo-connector .connector-h { display: none; }
  .processo-connector .connector-v { display: block; }
}

/* ===== Como posso ajudar (grade) ===== */
.ajuda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ajuda-card {
  background: var(--white);
  border: 2px solid rgba(74, 74, 75, .08);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(74, 74, 75, .05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ajuda-card:hover {
  transform: translateY(-6px);
  border-color: var(--sunset-peach);
  box-shadow: 0 16px 28px rgba(244, 149, 97, .18);
}

.ajuda-sticker {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  transition: transform .25s ease;
}

.ajuda-card:hover .ajuda-sticker {
  transform: scale(1.08) rotate(-4deg);
}

.ajuda-card p { margin: 0; font-size: .95rem; }

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

@media (max-width: 560px) {
  .ajuda-grid { grid-template-columns: 1fr; }
}

/* ===== Sobre ===== */
.sobre-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.sobre-media { position: relative; }

.sobre-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 20px 40px rgba(74, 74, 75, .12);
}

.sobre-sticker-1 { position: absolute; top: -24px; right: -24px; width: 64px; height: 64px; }
.sobre-sticker-2 { position: absolute; bottom: -20px; left: -28px; width: 56px; height: 56px; }

.sobre-text h2 { text-align: left; }

.sobre-lista { list-style: none; padding: 0; margin: 0 0 32px; }

.sobre-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.sobre-lista li .li-dot {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: var(--sky-tales);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.sobre-lista li .li-dot svg { width: 12px; height: 12px; color: var(--storybook-ink); }
.sobre-lista li strong { color: var(--storybook-ink); }

@media (max-width: 860px) {
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-media { max-width: 320px; margin: 0 auto; }
  .sobre-text h2, .sobre-text .section-sub { text-align: center; }
  .sobre-text { text-align: center; }
  .sobre-lista li { text-align: left; }
}

/* ===== Serviços ===== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 2px solid rgba(74, 74, 75, .08);
  box-shadow: 0 8px 20px rgba(74, 74, 75, .05);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  border-color: var(--playtime-coral);
  box-shadow: 0 16px 28px rgba(234, 122, 108, .18);
}

.servico-card--ebook:hover {
  border-color: var(--golden-story);
  box-shadow: 0 16px 28px rgba(235, 195, 96, .28);
}

.servico-sticker { width: 56px; height: 56px; margin-bottom: 18px; transition: transform .25s ease; }

.servico-card:hover .servico-sticker {
  transform: scale(1.08) rotate(-4deg);
}

.servico-card p { flex: 1; font-size: .92rem; opacity: .85; }

.servico-card--ebook { background: #FDF6E6; border-color: var(--golden-story); position: relative; }

.tag-digital {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--golden-story);
  color: var(--storybook-ink);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.servico-card--ebook .btn { margin-top: 12px; }
.servico-card--ebook .btn-primary { background: var(--sunset-peach); }

@media (max-width: 960px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .servicos-grid { grid-template-columns: 1fr; }
}

/* ===== Depoimentos ===== */
.depoimentos {
  background: var(--playtime-coral);
  border-radius: var(--radius-md);
  margin: 0 clamp(24px, 6vw, 96px);
  padding: 56px 0;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

@media (max-width: 600px) {
  .depoimentos { margin: 0 16px; padding: 40px 0; }
}

.depoimentos h2 { color: var(--white); position: relative; z-index: 1; }
.depoimentos .section-sub { color: rgba(255,255,255,.85); opacity: 1; position: relative; z-index: 1; }

.depoimentos-carrossel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.depoimentos-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: depoimentos-scroll 60s linear infinite;
}

.depoimentos-carrossel:hover .depoimentos-track,
.depoimentos-track:focus-within,
.depoimentos-track.is-paused {
  animation-play-state: paused;
}

@keyframes depoimentos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.depoimento-card {
  background: var(--white);
  color: var(--storybook-ink);
  border-radius: var(--radius-md);
  padding: 32px;
  width: 320px;
  flex: 0 0 320px;
}

.stars { color: var(--golden-story); letter-spacing: 2px; margin-bottom: 16px; font-size: 1.1rem; }
.depoimento-card p { opacity: .85; margin-bottom: 24px; }

.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-garden);
  color: var(--storybook-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  flex-shrink: 0;
}
.depoimento-autor strong { display: block; }
.depoimento-filho { opacity: .7; font-size: .85rem; }

@media (max-width: 600px) {
  .depoimentos-track { animation-duration: 40s; gap: 16px; }
  .depoimento-card { width: 240px; flex: 0 0 240px; padding: 20px; }
  .depoimento-card p { font-size: .9rem; margin-bottom: 16px; }
  .depoimento-avatar { width: 36px; height: 36px; font-size: .9rem; }
}

/* ===== Localização + FAQ ===== */
.localizacao-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  text-align: left;
}

.localizacao-header h2 { text-align: left; }
.localizacao-header .section-sub { text-align: left; margin: 0 0 8px; }
.localizacao-header .btn { flex-shrink: 0; }

.localizacao-ctas { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.btn-secondary {
  background: var(--white);
  color: var(--playtime-coral);
  border: 2px solid var(--playtime-coral);
  padding: 8px 8px 8px 26px;
}

.btn-secondary .btn-arrow { background: var(--playtime-coral); }
.btn-secondary .btn-arrow i, .btn-secondary .btn-arrow svg { color: var(--white); }

.btn-secondary:hover { background: rgba(234, 122, 108, .08); }

.endereco {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 4px;
}

.endereco svg { width: 20px; height: 20px; color: var(--playtime-coral); flex-shrink: 0; margin-top: 2px; }

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5484D;
  flex-shrink: 0;
  margin-top: 8px;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #E5484D;
  opacity: .55;
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(.5); opacity: .55; }
  100% { transform: scale(2.4); opacity: 0; }
}

.endereco-online { opacity: .75; font-size: .92rem; margin: 0 0 20px 30px; }

.mapa {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 8px 24px rgba(74, 74, 75, .08);
  border: 4px solid var(--white);
}

.mapa iframe { display: block; }

@media (max-width: 860px) {
  .localizacao-header { flex-direction: column; align-items: flex-start; }
}

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.faq-titulo h2 { text-align: left; }

.faq-acordeao { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--sage-garden);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--storybook-ink);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.faq-pergunta svg { width: 20px; height: 20px; color: var(--storybook-ink); transition: transform .3s ease; flex-shrink: 0; }
.faq-pergunta[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-resposta p { margin: 0 20px 20px; opacity: .8; }

@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; }
}

/* ===== CTA final ===== */
.cta-final-card {
  background: var(--sage-garden);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 24px;
  padding: 40px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.cta-final-text p { opacity: .8; margin-bottom: 28px; }
.cta-final-text .btn-primary { background: var(--playtime-coral); }

.cta-final-media { position: relative; text-align: right; }
.cta-final-media img {
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-left: auto;
  transform: translateY(24px);
  border: 4px solid var(--white);
  box-shadow: 0 16px 40px rgba(74, 74, 75, .18);
}

.cta-sticker { position: absolute; top: -20px; left: -16px; width: 56px; height: 56px; }

@media (max-width: 860px) {
  .cta-final-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .cta-final-media { text-align: center; margin-top: 16px; }
  .cta-final-media img { transform: none; margin: 0 auto; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--storybook-ink);
  color: rgba(251, 250, 244, .85);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.logo-light .logo-name { color: var(--paper-white); }
.logo-light .logo-sub { color: rgba(251, 250, 244, .6); }

.footer-col p { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 14px; font-size: .92rem; }
.footer-col p svg { width: 16px; height: 16px; color: var(--sunset-peach); flex-shrink: 0; margin-top: 2px; }

.social-icon { width: 16px; height: 16px; flex-shrink: 0; }
.footer-col a .social-icon { margin-top: 1px; }
.footer-col a { color: rgba(251, 250, 244, .85); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.footer-col a:hover { color: var(--paper-white); }

.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-links a { font-size: .85rem; opacity: .7; }

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 250, 244, .12);
  font-size: .8rem;
  color: rgba(251, 250, 244, .55);
}

.footer-bottom a {
  color: rgba(251, 250, 244, .85);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover { color: var(--paper-white); }

/* ===== WhatsApp flutuante ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--playtime-coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(234, 122, 108, .45);
  z-index: 90;
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: scale(1.08) rotate(-4deg); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== Aviso de cookies ===== */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  background: var(--white);
  border: 3px solid var(--storybook-ink);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(74, 74, 75, .18);
  padding: 20px;
  z-index: 95;
  transform: translateY(140%);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner p { margin: 0 0 14px; font-size: .85rem; opacity: .85; }
.cookie-banner a { color: var(--playtime-coral); font-weight: 600; }
.cookie-banner .btn { width: 100%; justify-content: center; }

@media (max-width: 600px) {
  .cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ===== Páginas legais ===== */
.legal { padding: 64px 0 96px; }
.legal .container { max-width: 760px; }

.legal-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--storybook-ink);
  opacity: .7;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.legal-voltar:hover { color: var(--playtime-coral); opacity: 1; }
.legal-voltar svg { width: 16px; height: 16px; }

.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); text-align: left; margin-bottom: 8px; }
.legal .legal-atualizado { opacity: .6; font-size: .85rem; margin-bottom: 40px; }

.legal h2 { font-size: 1.25rem; text-align: left; margin-top: 40px; margin-bottom: 12px; }

.legal p, .legal li { opacity: .8; font-size: 1rem; }
.legal p { margin-bottom: 16px; }
.legal ul { padding-left: 20px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--storybook-ink); opacity: 1; }
.legal a { color: var(--playtime-coral); }
