/* ═══════════════════════════════════════════════
   Educação Infantil — A Jornada · estilos da página
   (usa os tokens de style.css: quadriculado, Poppins,
    tracking -70, títulos azuis, botões, fitas)
   ═══════════════════════════════════════════════ */

/* topo mínimo */
.jnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: flex-end; gap: 1.1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  pointer-events: none;
}
.jnav a { pointer-events: auto; }
.jnav__logo img { height: 48px; width: auto; }
.jnav__back {
  font-size: 0.85rem; font-weight: 600; color: var(--blue);
  background: rgba(255,255,255,0.9); border: 1.5px solid rgba(0,134,188,0.3);
  border-radius: 100px; padding: 0.6em 1.3em; text-decoration: none;
  box-shadow: 0 6px 18px -8px rgba(1,42,58,0.3);
  transition: border-color 0.3s, transform 0.3s;
}
.jnav__back:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ── capa ─────────────────────────────────── */
.jhero {
  min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden;
  padding: 6rem clamp(1.5rem, 6vw, 4rem) 4rem;
}
.jhero__content { max-width: 880px; position: relative; z-index: 2; }
.jhero__content .section-eyebrow { justify-content: center; }
.jhero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem); font-weight: 800;
  color: var(--blue); line-height: 1.05; text-wrap: balance;
}
.jhero__sub { margin-top: 1.6rem; font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.75; color: #4a5a63; }
.jhero__cta { margin-top: 2.4rem; }

.jhero__shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; display: block; opacity: 0.85; }
.shape--circle { width: 34px; height: 34px; border-radius: 50%; background: var(--c); }
.shape--square { width: 30px; height: 30px; border-radius: 7px; background: var(--c); transform: rotate(12deg); }
.shape--ring   { width: 38px; height: 38px; border-radius: 50%; border: 7px solid var(--c); }
.shape--tri {
  width: 0; height: 0; background: none;
  border-left: 19px solid transparent; border-right: 19px solid transparent;
  border-bottom: 32px solid var(--c);
}

.jhero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.jhero__scroll span:first-child { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; color: var(--graphite); }
.jhero__scroll-line { width: 1.5px; height: 46px; background: linear-gradient(var(--blue), transparent); position: relative; overflow: hidden; }
.jhero__scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--gold); animation: scrollLine 1.8s var(--ease-expo) infinite; }

/* ── proposta pedagógica + diferenciais ───── */
.proposta { padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 6vw, 4rem); }
.proposta__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.proposta__head { position: relative; max-width: 820px; margin: 0 auto; }
.proposta__head .section-eyebrow { justify-content: center; }
.proposta__ring { display: inline-block; width: 74px; height: 74px; margin-bottom: 1.1rem; }
.proposta__ring svg { width: 100%; height: 100%; animation: propostaSpin 22s linear infinite; transform-origin: center; }
@keyframes propostaSpin { to { transform: rotate(360deg); } }
.proposta__title {
  font-size: clamp(2.1rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--blue); line-height: 1.08; text-wrap: balance; margin-bottom: 1.2rem;
}
.proposta__lead { font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.8; color: #4a5a63; }

.proposta__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem; margin: clamp(2.5rem, 6vh, 4rem) 0 2.2rem;
}
.dif-tile {
  background: #fff; text-align: left;
  border: 2px solid var(--c); border-radius: 18px;
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: 0 0 12px var(--c-soft), 0 0 34px var(--c-soft), inset 0 0 12px var(--c-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.dif-tile:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 0 16px var(--c-glow), 0 0 46px var(--c-soft), inset 0 0 14px var(--c-soft);
}
.dif-tile h3 { font-size: 1.12rem; font-weight: 700; color: var(--c); margin-bottom: 0.55rem; }
.dif-tile p { font-size: 0.9rem; line-height: 1.7; color: #4a5a63; }

.proposta__more a {
  font-size: 0.95rem; font-weight: 700; color: var(--blue); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
  transition: color 0.3s;
}
.proposta__more a:hover { color: var(--pink); }

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

/* ── jornada / trilha ─────────────────────── */
.jornada { position: relative; padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 6vw, 4rem) clamp(4rem, 10vh, 7rem); max-width: 1300px; margin: 0 auto; }
.jornada__line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; transform: translateX(-50%);
  background: rgba(1,42,58,0.08); border-radius: 3px;
}
.jornada__line-fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #FBB03B 0%, #8CC63F 34%, #ED1E79 67%, #0086BC 100%);
  border-radius: 3px;
  transform: scaleY(0); transform-origin: top;
}

.cap {
  position: relative;
  display: grid; grid-template-columns: 1fr clamp(60px, 8vw, 110px) 1fr;
  align-items: center;
  padding: clamp(3rem, 9vh, 6rem) 0;
}
.cap__info { grid-column: 1; text-align: right; justify-self: end; max-width: 480px; }
.cap__scene { grid-column: 3; justify-self: start; }
.cap--flip .cap__info { grid-column: 3; text-align: left; justify-self: start; }
.cap--flip .cap__scene { grid-column: 1; justify-self: end; }

.cap__dot {
  grid-column: 2; grid-row: 1; justify-self: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c); border: 5px solid #fff;
  box-shadow: 0 0 0 3px var(--c), 0 6px 16px -4px var(--c);
  transform: scale(0);
}

.cap__chip {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  color: var(--c); border: 1.5px solid var(--c); border-radius: 100px;
  padding: 0.5em 1.2em; margin-bottom: 1.1rem;
  box-shadow: 0 0 12px var(--c-soft), inset 0 0 8px var(--c-soft);
}
.cap__title { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 800; color: var(--blue); line-height: 1.08; margin-bottom: 1rem; }
.cap__text { font-size: 1rem; line-height: 1.8; color: #4a5a63; margin-bottom: 1.3rem; }
.cap__list { list-style: none; display: inline-flex; flex-direction: column; gap: 0.45rem; }
.cap__list li { font-size: 0.9rem; font-weight: 500; color: var(--blue-ink); position: relative; padding-right: 1.4em; }
.cap__list li::after { content: ''; position: absolute; right: 0; top: 0.42em; width: 9px; height: 9px; border-radius: 50%; background: var(--c); }
.cap--flip .cap__list li { padding-right: 0; padding-left: 1.4em; }
.cap--flip .cap__list li::after { right: auto; left: 0; }

/* cena interativa */
.cap__scene { position: relative; cursor: pointer; }
.cap__num {
  position: absolute; top: -2.2rem; left: -1.6rem; z-index: 2;
  font-size: clamp(4rem, 8vw, 6.5rem); font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 2.5px var(--c);
}
.cap--flip .cap__num { left: auto; right: -1.6rem; }
.cap__media {
  width: clamp(260px, 30vw, 420px); border-radius: 20px; overflow: visible;
  position: relative; margin: 0;
  transform: rotate(1.2deg);
  transition: transform 0.45s var(--ease-out);
}
.cap--flip .cap__media { transform: rotate(-1.2deg); }
.cap__scene:hover .cap__media { transform: rotate(0deg) translateY(-6px); }
.cap__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 20px;
  border: 2.5px solid var(--c);
  box-shadow: 0 0 16px var(--c-soft), 0 24px 50px -24px rgba(1,42,58,0.45);
}
.cap__media .tape { top: -13px; }

.mini { position: absolute; pointer-events: none; opacity: 0.9; }
.mini--circle { width: 18px; height: 18px; border-radius: 50%; background: var(--c); top: -10px; right: -14px; }
.mini--tri {
  width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent;
  border-bottom: 19px solid var(--c); bottom: -12px; left: 8%;
}
.mini--square { width: 15px; height: 15px; border-radius: 4px; background: var(--c); bottom: 18%; right: -20px; transform: rotate(18deg); }

/* partícula do clique */
.burst {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--bc); pointer-events: none; z-index: 5;
}

/* ── rotina ───────────────────────────────── */
.rotina { padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 4rem); }
.rotina__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.rotina__inner .section-eyebrow { justify-content: center; }
.rotina__inner .section-title { margin-left: auto; margin-right: auto; }
.rotina__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-top: 1rem; text-align: left; }
.rotina__horarios { position: relative; padding: 2.2rem 2.2rem 2rem; transform: rotate(-0.8deg); }
.rotina__horarios h3 { font-size: 1.25rem; font-weight: 700; color: var(--blue); margin-bottom: 1.1rem; }
.rotina__horarios ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.rotina__horarios li { font-size: 0.95rem; color: var(--blue-ink); border-top: 1.5px dashed rgba(0,134,188,0.25); padding-top: 0.7rem; }
.rotina__horarios li span { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--blue); margin-bottom: 0.15rem; }
.rotina__chips { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.chip {
  font-size: 0.85rem; font-weight: 600; color: var(--c);
  background: #fff; border: 1.5px solid var(--c); border-radius: 100px;
  padding: 0.6em 1.3em;
  box-shadow: 0 4px 14px -8px var(--c);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.chip:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 10px 20px -8px var(--c); }

/* ── ponte ────────────────────────────────── */
.ponte { position: relative; text-align: center; padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 4rem) clamp(6rem, 14vh, 10rem); }
.ponte .section-eyebrow { justify-content: center; }
.ponte__title { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 800; color: var(--blue); line-height: 1.12; max-width: 22ch; margin: 0 auto 1.2rem; text-wrap: balance; }
.ponte__sub { font-size: 1.05rem; line-height: 1.75; color: #4a5a63; margin-bottom: 2.2rem; }
.ponte__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ponte__plane { position: absolute; top: 8%; right: clamp(4%, 10vw, 16%); width: 120px; height: auto; }

.jfooter { text-align: center; padding: 2rem 1rem 5.5rem; font-size: 0.85rem; color: var(--graphite); }
.jfooter a { color: var(--blue); font-weight: 600; text-decoration: none; }
.jfooter a:hover { color: var(--pink); }

/* ── responsivo ───────────────────────────── */
@media (max-width: 900px) {
  .jornada__line { left: 22px; transform: none; }
  .cap { grid-template-columns: 48px 1fr; padding: clamp(2.5rem, 7vh, 4rem) 0; row-gap: 1.6rem; }
  .cap__dot { grid-column: 1; grid-row: 1; }
  .cap__info, .cap--flip .cap__info { grid-column: 2; grid-row: 1; text-align: left; justify-self: start; }
  .cap__scene, .cap--flip .cap__scene { grid-column: 2; grid-row: 2; justify-self: start; }
  .cap__list li { padding-right: 0; padding-left: 1.4em; }
  .cap__list li::after { right: auto; left: 0; }
  .cap__num, .cap--flip .cap__num { left: auto; right: -0.6rem; }
  .rotina__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .jornada__line-fill { transform: scaleY(1) !important; }
  .cap__dot { transform: scale(1) !important; }
  .shape { display: none; }
}

/* ═══ Rabiscos de giz de cera ═══ */
.cray {
  position: absolute;
  fill: none;
  stroke: var(--c);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
  transform: rotate(-4deg);
}
.cray--mini { z-index: 3; opacity: 0.85; filter: drop-shadow(0 2px 3px rgba(1,42,58,0.12)); }
.jhero__shapes .cray { animation: crayFloat 7s ease-in-out infinite alternate; }
.jhero__shapes .cray:nth-child(2n) { animation-duration: 9s; transform: rotate(5deg); }
@keyframes crayFloat { to { translate: 0 -14px; } }
@media (prefers-reduced-motion: reduce) { .jhero__shapes .cray { animation: none; } }

/* ═══ Lousa interativa ═══ */
.lousa { padding: clamp(70px, 11vh, 130px) 6vw; }
.lousa__head { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.lousa__quadro {
  max-width: 940px; margin: 0 auto;
  background: linear-gradient(160deg, #B07B45, #8B5A2B);
  border-radius: 22px;
  padding: clamp(12px, 2vw, 18px);
  box-shadow: 0 34px 70px -30px rgba(1,42,58,0.5);
}
.lousa__moldura {
  position: relative;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.06), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.04), transparent 40%),
    #274E3D;
  border-radius: 12px;
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3rem) clamp(4.5rem, 8vw, 5.5rem);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.35);
  overflow: hidden;
}
.lousa__titulo {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  color: #fff;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 0 10px rgba(255,255,255,0.25);
}
.lousa__sublinhado {
  display: block; width: min(300px, 70%); margin: 2px auto 22px;
  fill: none; stroke: #FBB03B; stroke-width: 4; stroke-linecap: round;
  opacity: 0.9;
}
.lousa__itens { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 1.6rem; }
.lousa__itens button {
  font-family: 'Caveat', cursive;
  font-weight: 700; font-size: 1.25rem;
  color: rgba(255,255,255,0.82);
  background: transparent;
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: 12px;
  padding: 0.3em 0.9em;
  cursor: pointer;
  transform: rotate(-1deg);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.lousa__itens button:nth-child(2n) { transform: rotate(1.2deg); }
.lousa__itens button:hover { color: #fff; border-color: rgba(255,255,255,0.7); transform: rotate(0) scale(1.04); }
.lousa__itens button.is-on {
  color: #274E3D;
  background: #FBB03B;
  border-color: #FBB03B;
  border-style: solid;
  box-shadow: 0 0 14px rgba(251,176,59,0.45);
}
.lousa__texto {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.45;
  color: #fff;
  text-align: center;
  max-width: 34ch;
  margin: 0 auto;
  min-height: 4.2em;
  text-shadow: 0 0 8px rgba(255,255,255,0.18);
}
.lousa__texto::after { content: '|'; opacity: 0.6; animation: lousaCursor 1s steps(1) infinite; }
@keyframes lousaCursor { 50% { opacity: 0; } }
.lousa__tata {
  position: absolute; right: clamp(8px, 2vw, 22px); bottom: clamp(40px, 6vw, 52px);
  width: clamp(74px, 11vw, 120px);
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.35));
  transform: rotate(2deg);
}
.lousa__bandeja {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 34px;
  background: linear-gradient(180deg, #9c6a38, #7c5227);
  border-radius: 0 0 12px 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 22px;
}
.lousa__bandeja i {
  width: 34px; height: 8px; border-radius: 4px;
  background: var(--g);
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}
.lousa__apagador {
  width: 52px; height: 16px; border-radius: 4px;
  background: linear-gradient(180deg, #345, #123);
  margin-left: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

/* ═══ O poder do brincar ═══ */
.brincar { padding: clamp(70px, 11vh, 130px) 6vw; max-width: 1150px; margin: 0 auto; }
.brincar__head { max-width: 800px; margin: 0 auto 36px; text-align: center; }
.brincar__eyebrow { justify-content: center; }
.brincar__lead {
  margin-top: 14px;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem); line-height: 1.7;
  color: var(--graphite); letter-spacing: var(--track);
}
.brincar__lead strong, .brincar__ciencia strong { color: var(--blue); }
.brincar__ciencia {
  position: relative;
  max-width: 860px; margin: 0 auto 34px;
  padding: 2.2rem 2.2rem 2rem;
}
.brincar__ciencia h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--blue);
  letter-spacing: var(--track); margin-bottom: 0.7rem;
}
.brincar__ciencia p { font-size: 0.95rem; line-height: 1.75; color: var(--ink); letter-spacing: var(--track); }
.brincar__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 34px;
}
.bdim {
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--c) 45%, transparent);
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.2rem;
  box-shadow: 0 14px 30px -20px rgba(1,42,58,0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.bdim:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: 0 22px 40px -20px color-mix(in srgb, var(--c) 55%, transparent); }
.bdim__cray {
  width: 44px; height: 44px;
  fill: none; stroke: var(--c); stroke-width: 4.5;
  stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 0.6rem;
}
.bdim h3 { font-size: 1rem; font-weight: 800; color: var(--blue-ink); letter-spacing: var(--track); margin-bottom: 0.4rem; }
.bdim p { font-size: 0.85rem; line-height: 1.6; color: var(--graphite); letter-spacing: var(--track); }
.brincar__telas {
  display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2rem);
  max-width: 860px; margin: 0 auto 34px;
  background: #fff;
  border: 2px dashed rgba(237,30,121,0.5);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.brincar__telas-icone { flex: 0 0 auto; width: 64px; height: 64px; color: var(--pink); }
.brincar__telas-icone svg { width: 100%; height: 100%; }
.brincar__telas h3 { font-size: 1.15rem; font-weight: 800; color: var(--pink); letter-spacing: var(--track); margin-bottom: 0.5rem; }
.brincar__telas p { font-size: 0.93rem; line-height: 1.7; color: var(--ink); letter-spacing: var(--track); }
.brincar__telas strong { color: var(--pink); }
.brincar__cbr { max-width: 860px; margin: 0 auto 26px; }
.brincar__cbr h3 { font-size: 1.15rem; font-weight: 800; color: var(--blue); letter-spacing: var(--track); margin-bottom: 0.8rem; }
.brincar__cbr ul { list-style: none; display: grid; gap: 0.65rem; }
.brincar__cbr li {
  position: relative; padding-left: 1.7rem;
  font-size: 0.93rem; line-height: 1.65; color: var(--graphite); letter-spacing: var(--track);
}
.brincar__cbr li::before {
  content: ''; position: absolute; left: 0; top: 0.4em;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px rgba(253,182,3,0.5);
}
.brincar__cbr strong { color: var(--blue-ink); }
.brincar__refs {
  max-width: 860px; margin: 0 auto; text-align: center;
  font-size: 0.76rem; line-height: 1.7; color: var(--graphite);
  letter-spacing: var(--track); opacity: 0.85;
  border-top: 1.5px dashed rgba(0,134,188,0.25); padding-top: 1.2rem;
}
@media (max-width: 640px) { .brincar__telas { flex-direction: column; text-align: center; } }

/* ═══ Galeria ═══ */
.igal { padding: clamp(60px, 10vh, 110px) 6vw clamp(70px, 11vh, 120px); max-width: 1150px; margin: 0 auto; }
.igal__head { max-width: 780px; margin: 0 auto 10px; text-align: center; }
.igal__media { max-width: 1080px; margin: clamp(30px, 5vh, 46px) auto 18px; }
.igal__media img {
  width: 100%; display: block;
  border-radius: clamp(20px, 3vw, 34px);
  box-shadow: 0 40px 90px -44px rgba(1, 42, 58, 0.55);
}
.igal__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.igal__item { margin: 0; }
.igal__item img {
  width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block;
  border-radius: 18px;
  box-shadow: 0 24px 50px -26px rgba(1,42,58,0.5);
}
.igal__slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem;
  min-height: 220px;
  border: 2.5px dashed rgba(0,134,188,0.35);
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  padding: 1.4rem;
  text-align: center;
}
.igal__slot svg { width: 40px; height: 40px; color: rgba(0,134,188,0.5); }
.igal__slot em {
  font-style: normal; font-size: 0.82rem; font-weight: 600;
  color: var(--graphite); letter-spacing: var(--track); max-width: 24ch;
}

/* ═══ Destaque do hero — Um mundo de Imaginação ═══ */
.jhero__destaque {
  display: flex; flex-direction: column; align-items: center;
  line-height: 1.02;
  margin: 14px 0 20px;
  cursor: default;
}
.jhero__destaque span { transition: color 0.35s, text-shadow 0.35s; }
.jhero__d1 {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: var(--track);
}
.jhero__d2 {
  font-size: clamp(3.2rem, 9.5vw, 7rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: var(--track);
}
.jhero__d3 {
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: var(--track);
  margin-top: 6px;
}
.jhero__destaque:hover span {
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(253, 182, 3, 0.9),
    0 0 22px rgba(253, 182, 3, 0.55),
    0 0 48px rgba(253, 182, 3, 0.35),
    0 0 90px rgba(253, 182, 3, 0.2);
}
.jhero__destaque:hover .jhero__d3 {
  color: #fff;
  text-shadow:
    0 0 6px rgba(253, 182, 3, 1),
    0 0 16px rgba(253, 182, 3, 0.9),
    0 0 40px rgba(253, 182, 3, 0.6),
    0 0 80px rgba(253, 182, 3, 0.35);
}

/* adesivos ilustrados (SVGs do Gabriel) no lugar dos rabiscos */
img.cray { opacity: 0.95; filter: drop-shadow(0 5px 9px rgba(1,42,58,0.14)); }
img.bdim__cray { object-fit: contain; }

/* ── Brincar remodelado: tipografia grande, fatos breves ── */
.brincar__giga { margin-left: auto; margin-right: auto; text-align: center; max-width: 14ch; }
.brincar__lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem) !important; max-width: 44ch !important; }

.bfatos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  max-width: 1080px; margin: clamp(2.2rem, 5vw, 3.6rem) auto clamp(2.6rem, 6vw, 4rem);
  padding: 0 1.5rem;
}
.bfato { border-top: 2.5px solid rgba(0,134,188,0.25); padding-top: 1.1rem; position: relative; }
.bfato__num {
  font-family: 'Libre Baskerville', serif; font-style: italic;
  font-size: 0.95rem; color: #BE8B00; letter-spacing: 0;
  display: block; margin-bottom: 0.5rem;
}
.bfato h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.12;
  color: var(--blue); letter-spacing: var(--track);
  margin-bottom: 0.55rem; text-wrap: balance;
}
.bfato p { font-size: 0.92rem; line-height: 1.65; color: #4a5a63; letter-spacing: var(--track); }
.bfato p em { font-style: normal; color: #7a8a93; font-size: 0.85em; }

.bpraticas {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  max-width: 1080px; margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: 0 1.5rem;
}
.bpraticas__rotulo {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #7a8a93;
}
.bpraticas__chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.bpraticas__chips span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: var(--track);
  color: #12333f; background: #fff;
  border: 1.5px solid var(--c, var(--blue));
  border-radius: 999px; padding: 7px 15px;
  box-shadow: 0 6px 14px -8px rgba(1,42,58,0.25);
}

@media (max-width: 820px) { .bfatos { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ═══ UM DIA NO INTEGRAL — liquid glass ═══ */
.gdia {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  color: #04466E;
}



.gdia__inner {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,0.34);
  backdrop-filter: blur(26px) saturate(1.4);
  -webkit-backdrop-filter: blur(26px) saturate(1.4);
  border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 32px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 30px 60px -30px rgba(4,70,110,0.35);
  padding: clamp(1.8rem, 4vw, 3rem);
}
/* borda de neon que acompanha o mouse */
.gdia__inner::before {
  content: '';
  position: absolute; inset: -1.5px;
  border-radius: 33px;
  padding: 2.5px;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, -20%),
    rgba(41,171,226,1), rgba(253,182,3,0.85) 42%, transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  filter: drop-shadow(0 0 10px rgba(41,171,226,0.7));
}
.gdia__inner.is-neon::before { opacity: 1; }
.gdia__eyebrow {
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: var(--track);
  color: #BE8B00;
  margin-bottom: 0.9rem;
}
.gdia__titulo {
  font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 800; line-height: 1.06;
  letter-spacing: var(--track);
  color: #0086BC;
  margin-bottom: 0.7rem;
}
.gdia__sub { font-size: 0.95rem; color: #3D6E88; letter-spacing: var(--track); margin-bottom: 1.8rem; }

/* pílulas dos dias — vidro */
.gdia__dias { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.gdia__dias button {
  font-family: inherit; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #04466E; cursor: pointer;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(0,134,188,0.35);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.gdia__dias button:hover { transform: translateY(-2px); border-color: var(--blue); }
.gdia__dias button.is-on {
  background: var(--gold); border-color: var(--gold); color: #04466E;
  box-shadow: 0 0 22px rgba(253,182,3,0.55);
}

/* linha do tempo — cartões de vidro */
.gdia__lista { display: grid; gap: 9px; text-align: left; }
.gdia__item {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-radius: 16px;
  opacity: 0; transform: translateY(16px) scale(0.985);
  animation: gdiaEntra 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: var(--d, 0s);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.gdia__item:hover {
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,134,188,0.45);
  transform: translateX(6px);
}
.gdia__item.is-aberto { transform: none; background: rgba(255,255,255,0.78); border-color: rgba(0,134,188,0.5); }
.gdia__topo {
  width: 100%;
  display: grid; grid-template-columns: 118px 1fr auto;
  align-items: center; gap: 1rem;
  padding: 12px 18px;
  background: none; border: 0; cursor: pointer;
  font-family: inherit; text-align: left; letter-spacing: inherit;
}
.gdia__mais {
  font-size: 1.3rem; font-weight: 300; color: var(--blue);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.gdia__item.is-aberto .gdia__mais { transform: rotate(45deg); }
.gdia__saber {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22,1,0.36,1);
}
.gdia__item.is-aberto .gdia__saber { grid-template-rows: 1fr; }
.gdia__saber-inner { overflow: hidden; min-height: 0; padding: 0 18px; }
.gdia__saber i {
  font-style: normal;
  display: inline-block;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: var(--track);
  margin-bottom: 6px;
}
.gdia__saber p {
  font-size: 0.88rem; line-height: 1.7; color: #3D6E88;
  letter-spacing: var(--track);
  max-width: 62ch; margin: 0 auto 14px;
}
.gdia__saber img {
  width: 100%; max-height: 240px; object-fit: cover;
  border-radius: 12px; margin-bottom: 16px;
  box-shadow: 0 14px 30px -16px rgba(1,42,58,0.4);
}
@keyframes gdiaEntra { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .gdia__item { animation: none; opacity: 1; transform: none; } }
.gdia__hora {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  color: #BE8B00;
  white-space: nowrap;
}
.gdia__ativ { font-size: 0.95rem; font-weight: 600; letter-spacing: var(--track); color: #04466E; }
.gdia__fixa {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6E93A8;
  border: 1px solid rgba(0,134,188,0.3);
  border-radius: 999px; padding: 4px 10px;
  white-space: nowrap;
}
.gdia__item--dia .gdia__ativ { color: #0086BC; }
.gdia__item--intervalo {
  background: rgba(253,182,3,0.32);
  border-color: rgba(253,182,3,0.75);
  box-shadow: 0 0 22px -6px rgba(253,182,3,0.6);
}
.gdia__item--intervalo .gdia__ativ { color: #8a6400; font-weight: 700; }
.gdia__item--saida {
  background: rgba(0,134,188,0.14);
  border-color: rgba(0,134,188,0.55);
  box-shadow: 0 0 22px -6px rgba(0,134,188,0.5);
}
.gdia__item--saida .gdia__ativ { color: #0086BC; font-weight: 700; }
.gdia__item--dia { border-color: rgba(253,182,3,0.5); box-shadow: 0 0 24px -8px rgba(253,182,3,0.5); }

.gdia__nota { margin-top: 1.4rem; font-size: 0.76rem; color: #6E93A8; letter-spacing: var(--track); }

@media (max-width: 620px) {
  .gdia__topo { grid-template-columns: 82px 1fr auto; gap: 0.6rem; }
}
