@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600;1,700&display=swap');

:root {
  /* Cores oficiais — manual de identidade visual Pequena Tribo (Mateus Freitas), pág. 6 "CORES OFICIAIS" */
  --pt-navy: #11173F;
  --pt-navy-dark: #0b0f2e;
  --pt-teal: #38BCA7;
  --pt-yellow: #F9A50D;
  --pt-red: #CA2736;
  /* coral mapeado pro vermelho oficial (marca não tem coral próprio) */
  --pt-coral: #CA2736;
  --pt-coral-light: #d95b5b;
  --pt-teal-soft: #d4f0ea;
  --pt-yellow-soft: #ffeec2;
  --pt-yellow-paper: #fff6e0;
  --pt-bg: #fdfbf4;
  --pt-bg-soft: #fff6e0;
  --pt-bg-coral: #fbe4e4;
  --pt-bg-teal: #e7f7f3;
  --pt-text: #11173F;
  --pt-muted: #6b6878;
  --pt-border: #e4d8c4;
  --pt-white: #ffffff;
}

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

/* O cabeçalho é sticky: sem esta folga o link de âncora para embaixo dele e o título fica escondido. */
[id] { scroll-margin-top: 130px; }
@media (max-width: 900px) { [id] { scroll-margin-top: 96px; } }

/* ===== Acessibilidade: link "pular para o conteúdo" ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--pt-navy);
  color: var(--pt-white);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--pt-yellow);
  outline-offset: 2px;
}

body {
  font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
  color: var(--pt-text);
  background-color: var(--pt-white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  overflow-anchor: none;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", "Helvetica", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* ============ HEADER ============ */
header.site-header {
  position: sticky;
  top: 0;
  background: var(--pt-white);
  border-bottom: 3px solid var(--pt-yellow);
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 4px 12px rgba(31,42,68,0.06);
}
.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand .brand-logo {
  height: 80px;
  width: auto;
  display: block;
}
.brand::after {
  content: "®";
  position: absolute;
  top: 2px;
  right: -2px;
  font-size: 9px;
  line-height: 1;
  color: var(--pt-muted);
  font-weight: 400;
}

/* Busca à esquerda, ocupando o espaço entre o logo e o menu */
.header-search {
  flex-shrink: 0;
  color: var(--pt-navy);
  font-size: 13px;
  text-decoration: none;
  border: 2px solid var(--pt-border);
  padding: 8px 16px 8px 34px;
  border-radius: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2311173F' stroke-width='2.4' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.5' y2='16.5'/></svg>");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 15px 15px;
  margin-right: auto;
  transition: border-color .15s, background-color .15s;
}
.header-search:hover { border-color: var(--pt-navy); background-color: var(--pt-yellow-soft); }

nav.site-nav { display: flex; align-items: center; gap: 22px; }
nav.site-nav a {
  color: var(--pt-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 6px 4px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
nav.site-nav a:hover { border-bottom-color: var(--pt-coral); }
nav.site-nav .nav-doe {
  background: var(--pt-yellow);
  color: var(--pt-navy);
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  border-bottom: none;
  border: 2px solid var(--pt-navy);
  box-shadow: 0 3px 0 var(--pt-navy);
}
nav.site-nav .nav-doe:hover { background: #d99700; border-bottom: none; transform: translateY(1px); box-shadow: 0 2px 0 var(--pt-navy); }

/* Dropdown Mídia */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer;
  color: var(--pt-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 6px 4px;
  border-bottom: 3px solid transparent;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover { border-bottom-color: var(--pt-coral); }
.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: var(--pt-white);
  border: 2px solid var(--pt-navy);
  border-radius: 12px;
  box-shadow: 0 6px 0 var(--pt-navy);
  display: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  border-bottom: none !important;
  color: var(--pt-navy);
  font-size: 14px;
  font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--pt-yellow-soft); color: var(--pt-coral); }

/* Hero eyebrow */
.hero-eyebrow {
  display: inline-block;
  color: var(--pt-yellow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
nav.site-nav .nav-login {
  color: var(--pt-navy);
  font-size: 13px;
  background: var(--pt-white);
  border: 2px solid var(--pt-navy);
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 3px 0 var(--pt-navy);
}
nav.site-nav .nav-login:hover { background: var(--pt-yellow-soft); border-bottom: 2px solid var(--pt-navy); transform: translateY(1px); box-shadow: 0 2px 0 var(--pt-navy); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pt-navy);
}
.hero-band {
  position: relative;
  background: var(--pt-navy);
  padding: 88px 32px 123px;
  overflow: hidden;
}
.hero-band::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'><path d='M0,30 Q150,0 300,30 T600,30 T900,30 T1200,30 V60 H0 Z' fill='%23ffffff'/></svg>") bottom center / cover no-repeat;
  z-index: 3;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('photos/turma-livros.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,23,63,0.55) 0%, rgba(17,23,63,0.62) 55%, rgba(17,23,63,0.78) 100%);
}
.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 32px;
  text-align: center;
  z-index: 2;
}
.hero-tagline {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-tagline .ponto-amarelo { color: var(--pt-yellow); }
.hero-tagline-en {
  font-size: 19px;
  font-style: italic;
  color: var(--pt-teal);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-sub {
  position: relative;
  z-index: 2;
  font-size: 22px;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; position: relative; z-index: 2; }
.btn {
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--pt-navy);
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 0 var(--pt-navy);
}
.btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--pt-navy); }
.btn-yellow { background: var(--pt-yellow); color: var(--pt-navy); }
.btn-yellow:hover { background: #d99700; }
.btn-outline { background: var(--pt-white); color: var(--pt-navy); }
.btn-outline:hover { background: var(--pt-yellow-soft); }
.btn-coral { background: var(--pt-coral); color: var(--pt-white); border-color: var(--pt-navy); }
.btn-coral:hover { background: #a82828; }
.btn-red { background: #e0584e; color: var(--pt-white); }
.btn-red:hover { background: #c8453c; }
.btn-navy { background: var(--pt-navy); color: var(--pt-white); }
.btn-navy:hover { background: var(--pt-navy-dark); }
.btn-teal { background: var(--pt-teal); color: var(--pt-white); }
.btn-teal:hover { background: #2a9c89; }

/* ============ SECTION COMMON ============ */
section.block {
  padding: 80px 32px;
  position: relative;
}
.container { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  color: var(--pt-coral);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--pt-navy);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}
.section-lead {
  font-size: 17px;
  color: var(--pt-text);
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ============ PAGE HERO (páginas internas) ============ */
.page-hero {
  background: var(--pt-navy);
  color: #fff;
  padding: 72px 32px 60px;
  position: relative;
}
.page-hero .container { max-width: 1100px; margin: 0 auto; }
.page-hero .section-eyebrow {
  color: var(--pt-yellow);
  font-size: 16px;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.page-hero-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.8px;
}
.page-hero-sub {
  font-size: 17.5px;
  color: rgba(255,255,255,0.96);
  max-width: none;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .page-hero { padding: 52px 22px 44px; }
  .page-hero-title { font-size: 32px; }
}

/* link pro vídeo institucional no espaço vazio do hero de Sobre nós (desktop) */
@media (min-width: 900px) {
  .page-hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .page-hero-text { flex: 1; min-width: 0; }
  /* Aqui o texto avança até quase encostar no Jaguá: o limite de 760px do resto
     do site deixava uma faixa vazia larga entre o parágrafo e o mascote. */
  .page-hero-sobre .page-hero-sub { max-width: 850px; }
  .page-hero-video-popover-wrap {
    position: absolute;
    top: 50%;
    right: 78px;
    transform: translateY(calc(-50% - 20px));
    z-index: 40;
    text-align: center;
  }
  .phvl-mascote {
    display: block;
    height: 118px;
    width: auto;
    margin: 27px auto 0;
    filter: drop-shadow(0 4px 8px rgba(17,23,63,0.25));
  }
  .page-hero-video-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 30px;
    padding: 10px 18px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    max-width: 230px;
    cursor: pointer;
    transition: .15s;
  }
  .page-hero-video-link:hover,
  .page-hero-video-link[aria-expanded="true"] { background: rgba(255,255,255,0.18); border-color: var(--pt-yellow); }
  .phvl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--pt-yellow);
    color: var(--pt-navy);
    font-size: 11px;
  }
  .video-popover {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 40;
    width: 220px;
    background: var(--pt-navy);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    padding: 10px;
  }
  .video-popover[hidden] { display: none; }
  .video-popover video {
    display: block;
    width: 100%;
    aspect-ratio: 720 / 1280;
    max-height: 340px;
    border-radius: 8px;
    background: #000;
  }
  .video-popover-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: var(--pt-navy);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .video-popover-close:hover { background: var(--pt-coral); border-color: var(--pt-coral); }
}
@media (max-width: 899px) {
  .page-hero-video-popover-wrap { display: none; }
}

/* ============ HOME — bloco "Por onde começar" + mascote ============ */
.start-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
}
.start-head-text { min-width: 0; }
.start-mascote {
  flex-shrink: 0;
  justify-self: end;
  position: relative;
}
.start-mascote img {
  height: 300px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(17,23,63,0.12));
}
.start-mascote .mascote-balloon {
  position: absolute;
  top: 6px;
  left: -118px;
  background: var(--pt-teal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  padding: 12px 16px;
  border-radius: 16px 16px 4px 16px;
  max-width: 170px;
  line-height: 1.35;
  box-shadow: 0 4px 0 rgba(17,23,63,0.18);
}
.start-mascote .mascote-balloon::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 14px;
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent var(--pt-teal);
}
@media (max-width: 760px) {
  .start-head { grid-template-columns: 1fr; text-align: center; }
  .start-mascote { justify-self: center; margin-top: 8px; display: flex; flex-direction: column; align-items: center; }
  .start-mascote img { height: 220px; }
  .start-mascote .mascote-balloon { position: static; transform: none; max-width: 280px; margin: 0 auto 10px; border-radius: 16px; }
  .start-mascote .mascote-balloon::after { display: none; }
}

/* janelinha de joguinhos — destaque amarelo com mascote */
.janelinha.jl-jogos {
  background: linear-gradient(135deg, var(--pt-yellow-soft) 0%, #fff3d1 100%);
  border-color: var(--pt-yellow);
}
.janelinha.jl-jogos .jl-eyebrow { color: var(--pt-coral); }
.janelinha.jl-jogos .jl-mascote {
  height: 92px;
  width: auto;
  float: right;
  margin: -6px -6px 4px 12px;
  filter: drop-shadow(0 4px 8px rgba(17,23,63,0.14));
}
.janelinha.jl-jogos .jl-arrow { clear: both; }
.janelinha.jl-jogos .jl-arrow { color: var(--pt-coral); }
/* O texto tem que contornar o Jaguá, sem buraco branco ao lado dele.
   Como `inline-block` não quebra ao redor de float — ele é empurrado inteiro
   pra baixo do mascote —, aqui o eyebrow vira bloco e volta pro topo. */
.janelinha.jl-jogos .jl-eyebrow { display: block; margin-bottom: 6px; }

/* ============ HOME SHORTCUTS (janelinhas) ============ */
.home-shortcuts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.janelinha {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--pt-border, #e6e3da);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 2px 10px rgba(17,23,63,0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.janelinha:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(17,23,63,0.12);
  border-color: var(--pt-teal, #38BCA7);
}
.janelinha .jl-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pt-coral);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.janelinha h3 {
  font-size: 21px;
  color: var(--pt-navy);
  margin: 0 0 8px;
}
.janelinha p {
  font-size: 14.5px;
  color: var(--pt-text);
  line-height: 1.6;
  margin: 0 0 14px;
}
.janelinha .jl-arrow {
  font-weight: 700;
  color: var(--pt-navy);
  font-size: 15px;
}
.janelinha.jl-login {
  background: var(--pt-navy);
  border-color: var(--pt-navy);
}
.janelinha.jl-login h3 { color: #fff; }
.janelinha.jl-login p { color: rgba(255,255,255,0.8); }
.janelinha.jl-login .jl-eyebrow { color: var(--pt-yellow); }
.janelinha.jl-login .jl-arrow { color: var(--pt-yellow); }
.janelinha.jl-livro { padding-top: 20px; }
.janelinha.jl-livro .jl-livro-cover {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

/* ============ ENTRY GRID (4 audiências) ============ */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  padding: 0 32px 0 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.entry-card {
  background: var(--pt-white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 0 var(--pt-navy);
  border: 2px solid var(--pt-navy);
  text-decoration: none;
  color: var(--pt-text);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.entry-card:nth-child(1) { background: var(--pt-yellow-soft); }
.entry-card:nth-child(2) { background: var(--pt-bg-coral); }
.entry-card:nth-child(3) { background: var(--pt-bg-teal); }
.entry-card:nth-child(4) { background: var(--pt-yellow-soft); }
.entry-card:hover { transform: translateY(3px); box-shadow: 0 3px 0 var(--pt-navy); }
.entry-card .label {
  color: var(--pt-coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}
.entry-card .title {
  font-size: 19px;
  font-weight: 700;
  color: var(--pt-navy);
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}
.entry-card .desc {
  font-size: 14.5px;
  color: var(--pt-text);
  line-height: 1.5;
}

/* ============ ABOUT (Sobre) ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.about-grid img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--pt-yellow), 16px 16px 0 var(--pt-coral);
  border: 3px solid var(--pt-navy);
}
.about-grid h3 {
  color: var(--pt-navy);
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 700;
}
.about-grid p {
  font-size: 16px;
  color: var(--pt-text);
  margin-bottom: 14px;
  line-height: 1.65;
}
/* Direção do projeto */
.director-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--pt-bg-teal);
  border: 2px solid var(--pt-navy);
  border-radius: 22px;
  padding: 36px 40px;
  margin-bottom: 64px;
  box-shadow: 0 6px 0 var(--pt-navy);
}
.director-block img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pt-navy);
  box-shadow: 6px 6px 0 var(--pt-yellow);
  justify-self: center;
}
.director-block h3 { color: var(--pt-navy); font-size: 24px; margin-bottom: 4px; font-weight: 700; }
.director-block .director-role { color: var(--pt-coral); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.director-block p { font-size: 15.5px; color: var(--pt-text); line-height: 1.65; margin-bottom: 0; }
@media (max-width: 720px) {
  .director-block { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .director-block p { text-align: center; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.pillar {
  background: var(--pt-white);
  border-radius: 16px;
  padding: 26px;
  border: 2px solid var(--pt-navy);
  box-shadow: 0 5px 0 var(--pt-teal);
}
.pillar:nth-child(2) { box-shadow: 0 5px 0 var(--pt-coral); }
.pillar:nth-child(3) { box-shadow: 0 5px 0 var(--pt-yellow); }
.pillar h4 {
  font-size: 19px;
  color: var(--pt-navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.pillar p { font-size: 14.5px; color: var(--pt-text); line-height: 1.55; }
.pillar p a {
  color: var(--pt-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--pt-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.pillar p a:hover { color: var(--pt-coral); text-decoration-color: var(--pt-coral); }

/* ============ LINHA DO TEMPO ============ */
.timeline {
  position: relative;
  margin: 40px 0 24px;
  padding-left: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--pt-teal);
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding: 0 0 34px 76px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot {
  position: absolute;
  left: 18px;
  top: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--pt-yellow);
  border: 3px solid var(--pt-navy);
  z-index: 2;
}
.tl-item .tl-year {
  display: inline-block;
  background: var(--pt-navy);
  color: var(--pt-white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 16px;
  margin-bottom: 8px;
}
.tl-item h4 { font-size: 19px; color: var(--pt-navy); margin-bottom: 6px; font-weight: 700; }
.tl-item p { font-size: 15px; color: var(--pt-text); line-height: 1.6; max-width: 760px; }
.tl-impact {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--pt-bg-teal);
  border: 2px solid var(--pt-navy);
  border-radius: 16px;
  padding: 14px 24px;
  margin-top: 8px;
  box-shadow: 0 4px 0 var(--pt-navy);
}
.tl-impact strong { font-size: 30px; color: var(--pt-coral); font-weight: 800; }
.tl-impact span { font-size: 15px; color: var(--pt-navy); font-weight: 600; }
@media (max-width: 720px) {
  .timeline::before { left: 26px; }
  .tl-item { padding-left: 56px; }
  .tl-item .tl-dot { left: 6px; }
}

/* ============ OFICINAS ROW ============ */
.oficinas-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.oficina {
  background: var(--pt-white);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  border: 2px solid var(--pt-navy);
  box-shadow: 0 4px 0 var(--pt-yellow);
}
.oficina:nth-child(odd) { box-shadow: 0 4px 0 var(--pt-coral); }
.oficina:nth-child(even) { box-shadow: 0 4px 0 var(--pt-teal); }
.oficina .num {
  width: 38px;
  height: 38px;
  background: var(--pt-yellow);
  color: var(--pt-navy);
  border-radius: 50%;
  font-weight: 700;
  line-height: 38px;
  margin: 0 auto 12px auto;
  font-size: 16px;
  border: 2px solid var(--pt-navy);
  font-family: "Montserrat", sans-serif;
}
.oficina .nome {
  font-size: 14px;
  font-weight: 700;
  color: var(--pt-navy);
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
}

/* ============ MAPA UNIDADES ============ */
.map-block {
  background: var(--pt-navy);
  color: var(--pt-white);
  border-radius: 22px;
  padding: 42px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  align-items: center;
  border: 3px solid var(--pt-coral);
  position: relative;
  overflow: hidden;
}
.map-block::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--pt-yellow);
  border-radius: 50%;
  opacity: 0.15;
}
.map-block h3 { color: var(--pt-yellow); font-size: 26px; margin-bottom: 14px; }
.map-block p { font-size: 15.5px; opacity: 0.92; line-height: 1.6; }
.map-block .map-placeholder {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(244,167,58,0.4);
  border-radius: 14px;
  padding: 60px 20px;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* ============ EQUIPE ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.team-card {
  background: var(--pt-white);
  border-radius: 16px;
  padding: 14px 14px 18px;
  border: 2px solid var(--pt-navy);
  text-align: center;
  box-shadow: 0 4px 0 var(--pt-yellow);
}
.team-card:nth-child(4n+2) { box-shadow: 0 4px 0 var(--pt-coral); }
.team-card:nth-child(4n+3) { box-shadow: 0 4px 0 var(--pt-teal); }
.team-card:nth-child(4n+4) { box-shadow: 0 4px 0 var(--pt-teal); }
.team-card .avatar {
  position: relative;
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1;
  background: var(--pt-yellow-soft);
  border-radius: 50%;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pt-navy);
  font-weight: 700;
  font-size: 34px;
  border: 3px solid var(--pt-coral);
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}
.team-card .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card .nome {
  font-size: 15px;
  font-weight: 700;
  color: var(--pt-navy);
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
}
.team-card .papel {
  font-size: 12.5px;
  color: var(--pt-muted);
  line-height: 1.4;
}
.team-subhead {
  font-size: 15px;
  font-weight: 700;
  color: var(--pt-coral);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 36px 0 4px;
}
.team-subhead:first-of-type { margin-top: 24px; }

/* ============ FAMÍLIAS ============ */
.familias-bg { background: var(--pt-bg-teal); position: relative; }
.familias-bg::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'><path d='M0,20 Q150,0 300,20 T600,20 T900,20 T1200,20 V0 H0 Z' fill='%23ffffff'/></svg>") top center / cover no-repeat;
}
.familias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.familias-grid img { width: 100%; border-radius: 22px; box-shadow: 8px 8px 0 var(--pt-coral); border: 3px solid var(--pt-navy); }
.familias-video { margin: 0; width: 80%; }
.familias-video video {
  width: 100%; display: block; background: #000;
  aspect-ratio: 720 / 1280;
  border-radius: 22px; box-shadow: 8px 8px 0 var(--pt-coral); border: 3px solid var(--pt-navy);
}
.familias-video-credito {
  margin-top: 20px; font-size: 15px; line-height: 1.5;
  color: var(--pt-navy); font-weight: 500;
}
/* O span do crédito é a cidade: vai sempre na linha de baixo, separada do cargo. */
.familias-video-credito span { font-weight: 400; color: var(--pt-muted); font-style: italic; display: block; }
/* Vídeo à direita do texto: como o bloco ocupa 80% da coluna, sem isto ele
   fica encostado no texto e abre um vão na borda direita da página. */
.familias-video-dir { margin-left: auto; }
/* Replicar: a abertura ocupa a largura toda do container, e só o depoimento
   é que abre em duas colunas — texto à esquerda, vídeo à direita. */
.replicar-lead { max-width: none; }
.replicar-depo-titulo { font-size: 30px; margin-top: 56px; }
.replicar-depo-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.replicar-depoimento p { margin-bottom: 14px; line-height: 1.65; }
.replicar-depo-grid .familias-video { width: auto; max-width: 250px; }
/* O formulário sobe para a mesma coluna do texto: o vídeo é vertical e alto,
   e deixava uma faixa vazia larga entre o depoimento e o formulário. */
.replicar-depoimento { grid-column: 1; grid-row: 1; }
.replicar-form-wrap { grid-column: 1; grid-row: 2; }
.replicar-depo-grid .familias-video { grid-column: 2; grid-row: 1 / span 2; }
.replicar-form-titulo { font-size: 22px; color: var(--pt-navy); margin: 32px 0 12px; }
.replicar-form-lead { color: var(--pt-muted); margin-bottom: 18px; }
.familias-grid h3 { font-size: 28px; margin-bottom: 14px; color: var(--pt-navy); }
.familias-grid p { margin-bottom: 14px; line-height: 1.65; }
.familias-grid ul { padding-left: 20px; margin-bottom: 16px; }
.familias-grid li { margin-bottom: 7px; font-size: 15px; }

/* ============ ALUNOS — destaque amarelo ============ */
.alunos-block {
  background: linear-gradient(135deg, var(--pt-yellow) 0%, #ffc23d 100%);
  padding: 80px 32px;
  text-align: center;
  color: var(--pt-navy);
  position: relative;
  overflow: hidden;
}
.alunos-block::before {
  content: "";
  position: absolute;
  top: 20px; left: 30px;
  width: 70px; height: 70px;
  background: var(--pt-white);
  border-radius: 50%;
  opacity: 0.5;
}
.alunos-block::after {
  content: "";
  position: absolute;
  bottom: 30px; right: 50px;
  width: 50px; height: 50px;
  background: var(--pt-coral);
  border-radius: 50%;
  opacity: 0.55;
}
.alunos-block .container { position: relative; z-index: 2; }
.alunos-eyebrow { color: var(--pt-coral); font-weight: 700; letter-spacing: 2px; font-size: 13px; text-transform: uppercase; font-family: "Montserrat", sans-serif; }
.alunos-block h1, .alunos-block h2 {
  font-size: 52px;
  font-weight: 700;
  margin: 14px 0 18px 0;
  letter-spacing: -1.2px;
  color: var(--pt-navy);
}
.alunos-block p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
  font-weight: 500;
}

/* ============ APOIE ============ */
.apoie-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.apoie-side,
.apoie-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apoie-side .apoie-card { flex: 1; }
.apoie-main .apoie-card-featured { flex: 0 0 auto; }
.apoie-main .apoie-card-empresa { flex: 1; box-shadow: 0 6px 0 var(--pt-navy); }
.apoie-card {
  background: var(--pt-white);
  border-radius: 20px;
  padding: 36px;
  border: 2px solid var(--pt-navy);
  box-shadow: 0 6px 0 var(--pt-coral);
  display: flex;
  flex-direction: column;
}
/* card destaque (apadrinhamento) — ocupa a coluna inteira à esquerda */
.apoie-card-featured {
  background: linear-gradient(180deg, var(--pt-yellow-paper) 0%, var(--pt-white) 32%);
  box-shadow: 0 8px 0 var(--pt-yellow);
  justify-content: flex-start;
}
.apoie-side .apoie-card:nth-child(1) { box-shadow: 0 6px 0 var(--pt-teal); }
.apoie-side .apoie-card:nth-child(2) { box-shadow: 0 6px 0 var(--pt-coral); }
.apoie-side .apoie-card:nth-child(3) { box-shadow: 0 6px 0 var(--pt-yellow); }
.apoie-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--pt-coral);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}
.apoie-card h3 {
  color: var(--pt-navy);
  font-size: 26px;
  margin-bottom: 12px;
}
.apoie-card p {
  color: var(--pt-text);
  margin-bottom: 18px;
  line-height: 1.65;
}
.apoie-card .btn { font-size: 14px; padding: 11px 24px; align-self: flex-start; margin-top: auto; }
.apoie-card-featured .btn { margin-top: 0; }

/* ============ DOAR (checkout único/mensal) ============ */
.doar-box {
  background: var(--pt-white);
  border: 2px solid var(--pt-navy);
  border-radius: 20px;
  box-shadow: 0 6px 0 var(--pt-yellow);
  padding: 36px;
  max-width: 620px;
  margin-top: 36px;
}
.doar-toggle {
  display: flex;
  gap: 8px;
  background: var(--pt-bg-soft);
  border: 2px solid var(--pt-border);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 16px;
}
.doar-toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--pt-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.doar-toggle-btn.active { background: var(--pt-navy); color: var(--pt-white); }
.doar-toggle-desc { color: var(--pt-muted); font-size: 15px; margin-bottom: 24px; line-height: 1.55; }
.doar-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.doar-valor {
  border: 2px solid var(--pt-navy);
  background: var(--pt-white);
  color: var(--pt-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
}
.doar-valor:hover { transform: translateY(-1px); }
.doar-valor.active { background: var(--pt-yellow); }
.doar-valor-outro { grid-column: span 3; }
.doar-valor-outro-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--pt-navy);
  border-radius: 12px;
  padding: 13px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--pt-navy);
  margin-bottom: 24px;
}
.doar-metodos-select {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.doar-metodo-btn {
  flex: 1;
  border: 2px solid var(--pt-navy);
  background: var(--pt-white);
  color: var(--pt-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.doar-metodo-btn.active { background: var(--pt-teal); border-color: var(--pt-teal); color: var(--pt-white); }
.doar-form { display: block; }
.doar-campo { margin-bottom: 14px; }
.doar-campo-linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.doar-campo label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--pt-navy);
  margin-bottom: 6px;
}
.doar-campo input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--pt-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--pt-navy);
}
.doar-campo input:focus { border-color: var(--pt-navy); outline: none; }
.btn-doar-grande {
  display: block;
  width: 100%;
  text-align: center;
  background: #e0584e;
  color: var(--pt-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  border: 2px solid var(--pt-navy);
  border-radius: 14px;
  box-shadow: 0 5px 0 var(--pt-navy);
  padding: 16px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  margin-top: 6px;
}
.btn-doar-grande:hover { background: #c8453c; transform: translateY(2px); box-shadow: 0 3px 0 var(--pt-navy); }
.btn-doar-grande:disabled,
.btn-doar-grande.is-loading { opacity: .65; cursor: wait; transform: none; box-shadow: 0 5px 0 var(--pt-navy); }
.doar-status, .form-status { margin-top: 14px; font-size: 14px; line-height: 1.5; }
.doar-status-erro, .form-status-erro { color: var(--pt-red); font-weight: 600; }
.doar-status-sucesso, .form-status-sucesso { color: var(--pt-navy); font-weight: 700; font-size: 16px; }
.doar-pix { text-align: center; }
.doar-pix-aguardando { font-weight: 700; color: var(--pt-navy); margin-bottom: 10px; }
.doar-pix-qr { width: 200px; height: 200px; border: 2px solid var(--pt-navy); border-radius: 12px; margin-bottom: 12px; }
.doar-pix-copiar {
  display: block;
  width: fit-content;
  margin: 0 auto;
  border: 2px solid var(--pt-navy);
  background: var(--pt-white);
  color: var(--pt-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}
.doar-pix-rotulo {
  margin: 14px 0 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--pt-text);
}
.doar-pix-codigo {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 2px solid var(--pt-navy);
  border-radius: 10px;
  background: var(--pt-white);
  color: var(--pt-text);
  font-family: monospace;
  font-size: 12.5px;
  line-height: 1.45;
  word-break: break-all;
  resize: vertical;
}
.doar-metodos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--pt-muted);
}
.doar-metodo-tag {
  border: 1px solid var(--pt-border);
  background: var(--pt-bg-soft);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
  color: var(--pt-navy);
}
@media (max-width: 560px) {
  .doar-box { padding: 24px; }
  .doar-valores { grid-template-columns: 1fr; }
  .doar-valor-outro { grid-column: span 1; }
  .doar-campo-linha { grid-template-columns: 1fr; }
  .doar-metodos-select { flex-direction: column; }
}

/* ============ COMUNICAÇÃO ============ */
.com-bg { background: var(--pt-bg-coral); position: relative; }
.com-bg::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'><path d='M0,20 Q150,0 300,20 T600,20 T900,20 T1200,20 V0 H0 Z' fill='%23eaf6f6'/></svg>") top center / cover no-repeat;
}
.com-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.com-card {
  background: var(--pt-white);
  border-radius: 18px;
  padding: 30px;
  border: 2px solid var(--pt-navy);
  box-shadow: 0 5px 0 var(--pt-teal);
}
.com-card:nth-child(2) { box-shadow: 0 5px 0 var(--pt-yellow); }
.com-card h3 { color: var(--pt-navy); font-size: 24px; margin-bottom: 10px; }
.com-card p { color: var(--pt-text); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.com-card ul { font-size: 14px; padding-left: 20px; color: var(--pt-text); }
.com-card li { margin-bottom: 6px; }
.com-card .imprensa-contato { margin-top: 18px; margin-bottom: 0; font-size: 14.5px; line-height: 1.75; }
.com-card .imprensa-contato strong { color: var(--pt-navy); }

/* ============ RESTRITO (login mockup) ============ */
.restrito-block {
  background: var(--pt-navy);
  color: var(--pt-white);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.restrito-block::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'><path d='M0,20 Q150,0 300,20 T600,20 T900,20 T1200,20 V0 H0 Z' fill='%23ffeae3'/></svg>") top center / cover no-repeat;
}
.restrito-block h2 { color: var(--pt-yellow); font-size: 34px; margin-bottom: 12px; }
.restrito-block .section-lead { color: rgba(255,255,255,0.8); }
.restrito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.restrito-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--pt-yellow);
  border-radius: 18px;
  padding: 30px;
}
.restrito-card .lock {
  display: inline-block;
  background: var(--pt-yellow);
  color: var(--pt-navy);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.restrito-card h3 { color: var(--pt-white); font-size: 23px; margin-bottom: 10px; }
.restrito-card p { color: rgba(255,255,255,0.8); margin-bottom: 14px; line-height: 1.55; font-size: 14.5px; }
.restrito-card ul { font-size: 14px; padding-left: 20px; color: rgba(255,255,255,0.9); }
.restrito-card li { margin-bottom: 4px; }

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--pt-navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 32px 32px 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--pt-yellow);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
}
.footer-grid a:hover { color: var(--pt-yellow); }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
}
/* .crosslink só tinha cor dentro do rodapé; usado no meio do texto, saía no azul padrão. */
.crosslink { color: var(--pt-navy); }
.footer-bottom .crosslink {
  background: rgba(244,167,58,0.15);
  border: 2px solid var(--pt-yellow);
  color: var(--pt-yellow);
  padding: 7px 16px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
}

/* ============ HELPERS ============ */
.mini-banner {
  background: var(--pt-yellow-soft);
  border-left: 5px solid var(--pt-coral);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--pt-navy);
  border-radius: 10px;
  box-shadow: 0 3px 0 var(--pt-yellow);
}
.mini-banner strong { color: var(--pt-coral); }

/* ============ ÁREA RESTRITA / OFICINAS ============ */
.restrito-bar {
  background: var(--pt-navy);
  color: #ffffff;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .3px;
}
.restrito-bar strong { color: var(--pt-yellow); }

/* Header da área restrita — título central + botões com relevo */
.restrito-header { position: relative; }
.restrito-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--pt-navy);
  letter-spacing: -0.3px;
  white-space: nowrap;
  pointer-events: none;
}
.restrito-nav { gap: 14px; }
.restrito-nav a {
  border: 2px solid var(--pt-navy);
  border-radius: 12px;
  padding: 9px 22px;
  min-width: 104px;
  text-align: center;
  background: var(--pt-yellow);
  color: var(--pt-navy);
  font-weight: 700;
  box-shadow: 0 3px 0 var(--pt-navy);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.restrito-nav a:hover {
  border-bottom: 2px solid var(--pt-navy);
  background: #ffc24d;
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--pt-navy);
}
.restrito-nav a.active { box-shadow: 0 3px 0 var(--pt-navy), inset 0 0 0 2px var(--pt-white); }
.restrito-nav a.active:hover { box-shadow: 0 1px 0 var(--pt-navy), inset 0 0 0 2px var(--pt-white); }
@media (max-width: 860px) {
  /* Título do conto/contexto visível na barra (em fluxo, centralizado) */
  .restrito-header .restrito-title {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 6px;
    font-size: 19px;
  }
  /* o menu (Oficinas/Treinamento/Sair) abre pelo hamburguer, full-width */
  .restrito-header nav.restrito-nav {
    order: 4;
    gap: 0;
  }
  .restrito-nav a {
    border-radius: 12px;
    margin-top: 8px;
    min-width: 0;
  }
}

.oficinas-hero {
  background: var(--pt-navy);
  color: var(--pt-white);
  padding: 64px 32px 56px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* faixa de triângulos (motif do manual) */
.tri-band { display: none; }
.oficinas-hero .eyebrow { color: var(--pt-yellow); }
.oficinas-hero h1 { color: var(--pt-white); font-size: 42px; margin: 6px 0 12px; }
.oficinas-hero p { color: #ffffff; max-width: 760px; margin: 0 auto; font-size: 18px; opacity: .96; }
/* mascote da oficina (canto do banner navy).
   Reserva espaço simétrico nas DUAS laterais (180px) pra que o título fique
   genuinamente centrado no banner inteiro, não empurrado por baixo do mascote.
   Mascote é constrangido por ALTURA (max-height) pra caber dentro do banner e
   nunca cortar — os bichos têm proporções bem diferentes (Tainá é alta e fina,
   Kapi é largo), então limitar por largura clipava os de braço levantado. */
.oficinas-hero:not(.oficinas-hero-conto):has(.ofi-mascote) {
  padding-left: 180px;
  padding-right: 180px;
}
.ofi-mascote {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: auto;
  height: auto;
  max-height: 86%;
  max-width: 150px;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28));
  pointer-events: none;
}
/* conto-hero (banner de texto, sem h1): mascote menor e texto com folga à direita */
.oficinas-hero-conto .ofi-mascote { max-height: 78%; max-width: 124px; right: 20px; }
.oficinas-hero-conto .hero-resumo { padding-right: 150px; }
@media (max-width: 720px) {
  .oficinas-hero:not(.oficinas-hero-conto):has(.ofi-mascote) { padding-left: 20px; padding-right: 20px; }
  .ofi-mascote {
    position: static;
    display: block;
    margin: 16px auto 0;
    right: auto;
    bottom: auto;
    transform: none;
    max-height: none;
    max-width: none;
    width: 116px;
  }
  .oficinas-hero-conto .hero-resumo { padding-right: 0; }
}

.conto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 8px;
}
.conto-card {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--pt-white);
  border: 2px solid var(--pt-border);
  box-shadow: 0 6px 0 rgba(25,19,72,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.conto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 rgba(25,19,72,.18); }
.conto-card img { width: 100%; display: block; height: auto; }
.conto-card .cc-label { padding: 14px 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--pt-navy); font-size: 18px; }
.conto-card.locked { opacity: .55; cursor: default; }
.conto-card.locked:hover { transform: none; box-shadow: 0 6px 0 rgba(25,19,72,.12); }
.conto-card .cc-soon {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 361/547; background: var(--pt-bg-soft);
  color: var(--pt-muted); font-family: 'Montserrat', sans-serif; font-size: 17px;
}

.breadcrumb { font-size: 13.5px; color: var(--pt-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--pt-teal); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.conto-resumo {
  background: var(--pt-bg-teal);
  border-left: 5px solid var(--pt-teal);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 4px 0 30px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--pt-navy);
}

/* dropdown Informações gerais */
.info-gerais { margin: 0 0 34px; }
.info-toggle {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--pt-white); border: 2px solid var(--pt-navy);
  color: var(--pt-navy); font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 17px; padding: 14px 20px; border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 4px 0 var(--pt-navy);
}
.info-toggle .chev { transition: transform .2s ease; }
.info-gerais[open] .info-toggle .chev { transform: rotate(180deg); }
.info-panel { padding: 14px 4px 4px; }

/* dropdowns aninhados dentro de Informações gerais */
.info-sub { border: 2px solid var(--pt-border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: var(--pt-white); }
.info-sub > summary {
  cursor: pointer; list-style: none; padding: 12px 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15.5px; color: var(--pt-navy);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--pt-bg-soft);
}
.info-sub > summary::-webkit-details-marker { display: none; }
.info-sub > summary .chev { transition: transform .2s ease; color: var(--pt-red); }
.info-sub[open] > summary .chev { transform: rotate(180deg); }
.info-sub[open] > summary { border-bottom: 2px solid var(--pt-border); }
.info-sub-body { padding: 14px 16px; }
.info-sub-body ul { margin: 0 0 0 18px; }
.info-sub-body li { font-size: 14.5px; color: var(--pt-text); line-height: 1.6; margin-bottom: 5px; }
.info-sub-body p { font-size: 14.5px; color: var(--pt-text); line-height: 1.6; margin-bottom: 14px; }
/* 2º nível (ex: Parte I/II, 1º/2º mês) indentado */
.info-sub-body .info-sub { margin-left: 10px; border-left: 3px solid var(--pt-teal); }
.info-sub-body .info-sub > summary { background: var(--pt-bg-teal); font-size: 14.5px; }
/* hover de relevo nos blocos-botão */
.info-sub > summary:hover { filter: brightness(.97); }
.info-sub[open] { box-shadow: 0 4px 0 rgba(56,188,167,.20); }

/* rotina diária: cada item vira botão com relevo */
.rotina-btn { border: 2px solid var(--pt-navy) !important; border-radius: 12px !important; box-shadow: 0 3px 0 var(--pt-navy); }
.rotina-btn > summary { background: var(--pt-white); }
.rotina-btn[open] > summary { background: var(--pt-bg-teal); }
.rotina-todo { color: var(--pt-muted); font-style: italic; }

/* recreativas/atenção: layout conteúdo + post-it lateral.
   Colunas conforme post-its presentes (sem coluna vazia, sem overflow). */
.info-2col { display: grid; gap: 18px; align-items: start; }
.info-cols-main { grid-template-columns: 1fr; }
.info-cols-l    { grid-template-columns: 200px minmax(0, 1fr); }
.info-cols-r    { grid-template-columns: minmax(0, 1fr) 200px; }
.info-cols-lr   { grid-template-columns: 200px minmax(0, 1fr) 200px; }
.info-2col-main { min-width: 0; }
.rec-sub { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--pt-navy); margin-bottom: 12px; }
.rec-sub-sm { font-size: 13.5px; margin: 4px 0 10px; }
.info-postit { position: sticky; top: 90px; background: #fff7e6; border: 2px solid var(--pt-yellow); border-radius: 14px; padding: 16px 16px 18px; box-shadow: 0 6px 0 rgba(249,165,13,.22); overflow: hidden; }
.info-postit.postit-left { order: -1; }
.info-postit .postit-mark { position: absolute; right: -16px; bottom: -16px; width: 100px; height: 100px; background: url('logo-pequena-tribo.png') no-repeat center / contain; opacity: .07; pointer-events: none; }
.info-postit p { font-size: 13px; color: var(--pt-navy); line-height: 1.55; position: relative; }
@media (max-width: 1024px) {
  .info-2col { grid-template-columns: 1fr !important; }
  .info-postit { position: static; }
}

/* hero do conto: só o resumo, centralizado (conto já está na barra fixa) */
.oficinas-hero-conto { padding: 44px 32px 40px; }
.oficinas-hero-conto .hero-resumo { margin: 0 auto; font-size: 18px; max-width: 880px; }

/* grid das 5 oficinas em destaque */
.ofi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.ofi-card {
  display: block; text-decoration: none;
  border-radius: 14px; padding: 22px 20px;
  background: var(--pt-white); border: 2px solid var(--pt-border);
  border-top: 6px solid var(--pt-yellow);
  box-shadow: 0 5px 0 rgba(25,19,72,.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ofi-card:hover { transform: translateY(-3px); box-shadow: 0 10px 0 rgba(25,19,72,.16); }
.ofi-card .ofi-num { font-size: 12.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--pt-teal); }
.ofi-card .ofi-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 20px; color: var(--pt-navy); margin: 4px 0 6px; }
.ofi-card .ofi-count { font-size: 13.5px; color: var(--pt-muted); }
.ofi-card:nth-child(5n+1) { border-top-color: var(--pt-yellow); }
.ofi-card:nth-child(5n+2) { border-top-color: var(--pt-teal); }
.ofi-card:nth-child(5n+3) { border-top-color: var(--pt-red); }
.ofi-card:nth-child(5n+4) { border-top-color: var(--pt-navy); }
.ofi-card:nth-child(5n+5) { border-top-color: var(--pt-yellow); }

/* card da peça teatral — Jaguá ao lado do texto */
.ofi-card-peca { display: flex; align-items: flex-start; gap: 12px; border-top-color: var(--pt-teal); }
.ofi-card-peca .ofi-card-mascote {
  flex: 0 0 auto; width: 58px; height: auto; margin-top: 22px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.22));
}
.ofi-card-peca .ofi-card-peca-text { flex: 1 1 auto; min-width: 0; }
.ofi-card-peca .ofi-name { font-size: 18px; }

/* cartaz da peça teatral (capa, ilustração IA) */
.peca-cartaz {
  display: block; width: 100%; max-width: 360px; height: auto;
  margin: 6px 0 24px; border-radius: 14px;
  box-shadow: 0 8px 22px rgba(25,19,72,.18);
}

/* página de categoria — lista de oficinas (cada uma leva a sua página dedicada) */
.ofi-rows { display: flex; flex-direction: column; gap: 12px; }
.ofi-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 2px solid var(--pt-border); border-radius: 14px;
  background: var(--pt-white); text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ofi-row:hover, .ofi-row:focus-visible {
  border-color: var(--pt-teal); transform: translateX(3px);
  box-shadow: 0 6px 0 rgba(25,19,72,.10);
}
.ofi-row .so-num {
  background: var(--pt-yellow); color: var(--pt-navy); font-weight: 700;
  border-radius: 50%; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; font-size: 14px;
}
.ofi-row-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 17px; color: var(--pt-navy); flex: 1 1 auto; }
.ofi-row-meta { font-size: 13px; color: var(--pt-muted); font-weight: 600; flex: 0 0 auto; white-space: nowrap; }

/* página dedicada de uma oficina */
.container-narrow { max-width: 760px; }
.so-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.meta-chip { display: flex; flex-direction: column; gap: 2px; background: var(--pt-bg-soft); border: 2px solid var(--pt-border); border-radius: 12px; padding: 8px 14px; }
.meta-k { font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--pt-teal); }
.meta-v { font-size: 14.5px; font-weight: 600; color: var(--pt-navy); }
.so-section { font-family: 'Montserrat', sans-serif; font-size: 17px; color: var(--pt-navy); margin: 26px 0 14px; padding-bottom: 6px; border-bottom: 2px solid var(--pt-border); }
.so-obs { font-size: 14.5px; color: var(--pt-navy); background: #fff7e6; border-left: 4px solid var(--pt-yellow); border-radius: 8px; padding: 12px 16px; margin: 22px 0; line-height: 1.6; }
.so-obs strong { color: var(--pt-red); }
.so-list { margin: 0 0 4px 20px; }
.so-list li { font-size: 14.5px; color: var(--pt-text); line-height: 1.7; margin-bottom: 4px; }
.so-list a { color: var(--pt-teal); font-weight: 600; }
.so-obj { font-size: 16px; font-weight: 600; color: var(--pt-navy); background: var(--pt-bg-teal); border: 2px solid var(--pt-teal); border-left: 6px solid var(--pt-teal); border-radius: 12px; padding: 16px 20px; margin-bottom: 24px; line-height: 1.6; }
.so-obj strong { display: inline-block; color: var(--pt-white); background: var(--pt-teal); border-radius: 6px; padding: 1px 10px; margin-right: 6px; font-weight: 700; letter-spacing: .3px; }

/* E-book Módulo 1: capa, capítulos e caixas-guia dos mascotes */
.ebook-cover { text-align: center; padding: 10px 20px 26px; }
.ebook-cover img.ebook-cover-jagua { max-width: 170px; height: auto; margin: 0 auto 14px; display: block; }
.ebook-cover h1, .ebook-cover h2 { font-size: 26px; color: var(--pt-navy); margin: 0 0 8px; }
.ebook-cover p.ebook-tagline { color: var(--pt-teal); font-weight: 700; font-style: italic; margin: 0; font-size: 15px; }
.ebook-chapter { margin: 8px 0 18px; padding-top: 26px; border-top: 3px dashed var(--pt-border); }
.ebook-chapter:first-of-type { border-top: none; padding-top: 0; }
.ebook-chapter h2 { font-family: 'Montserrat', sans-serif; font-size: 21px; color: var(--pt-navy); margin: 0 0 4px; }
.ebook-chapter .ebook-chapter-sub { color: var(--pt-muted); font-size: 14px; margin-bottom: 16px; }
.ebook-guide { display: flex; align-items: flex-start; gap: 14px; background: var(--pt-bg-teal); border: 2px solid var(--pt-teal); border-radius: 14px; padding: 14px 16px; margin: 14px 0 20px; }
.ebook-guide img { width: 84px; height: 84px; object-fit: contain; flex-shrink: 0; }
.ebook-guide .ebook-guide-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--pt-navy); font-size: 12.5px; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.ebook-guide p { margin: 0; color: var(--pt-text); font-size: 14.5px; line-height: 1.55; font-style: italic; }
.ebook-guide.guide-coral { background: var(--pt-bg-coral); border-color: var(--pt-coral); }
.ebook-guide.guide-yellow { background: var(--pt-yellow-paper); border-color: var(--pt-yellow); }
.ebook-guide.guide-jagua img { width: 104px; height: auto; align-self: center; }
.ebook-guide p + p { margin-top: 10px; }
.ebook-guide-dicas { margin: 10px 0 0; padding-left: 22px; }
.ebook-guide-dicas li { color: var(--pt-text); font-size: 14.5px; line-height: 1.55; font-style: italic; margin-bottom: 8px; }
.ebook-guide-dicas li:last-child { margin-bottom: 0; }
.ebook-doc .etapa-fig-row,
.ebook-doc .etapa-fig-full { max-width: 85%; margin-left: auto; margin-right: auto; }
details.etapa .etapa-body a.btn-yellow { color: var(--pt-navy); }
html.is-embed .restrito-bar,
html.is-embed .site-header,
html.is-embed .site-footer,
html.is-embed .oficinas-hero,
html.is-embed .tri-band { display: none; }
html.is-embed .block { padding-top: 0; }
.roteiro-ebook-frame { border: 2px solid var(--pt-border); border-radius: 14px; overflow: hidden; background: #fff; }
.roteiro-ebook-frame iframe { display: block; width: 100%; height: 78vh; min-height: 520px; border: 0; }
@media (max-width: 560px) {
  .ebook-guide { flex-direction: column; align-items: center; text-align: center; }
  .ebook-guide p { text-align: center; }
  .ebook-guide-dicas li { text-align: left; }
}
.etapa { margin-bottom: 18px; padding-left: 16px; border-left: 3px solid var(--pt-yellow); }
.etapa h5 { font-family: 'Montserrat', sans-serif; font-size: 15.5px; color: var(--pt-red); margin-bottom: 5px; }
.etapa p { font-size: 14.5px; color: var(--pt-text); line-height: 1.65; }
.etapa a, .info-sub-body a, .conto-resumo a { color: var(--pt-teal); font-weight: 600; }

/* paginação prev/next entre oficinas */
.ofi-pager-bar { display: flex; justify-content: space-between; gap: 16px; margin-top: 34px; padding-top: 20px; border-top: 2px solid var(--pt-border); }
.ofi-pager {
  display: flex; flex-direction: column; gap: 3px; max-width: 48%;
  padding: 12px 18px; border-radius: 12px; background: var(--pt-white);
  color: var(--pt-navy); text-decoration: none;
  border: 2px solid var(--pt-navy); box-shadow: 0 3px 0 var(--pt-navy);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.ofi-pager:hover, .ofi-pager:focus-visible { background: var(--pt-bg-teal); transform: translateY(-2px); box-shadow: 0 5px 0 var(--pt-navy); }
.ofi-pager .pager-dir { font-size: 12px; font-weight: 600; color: var(--pt-teal); text-transform: uppercase; letter-spacing: .6px; }
.ofi-pager .pager-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--pt-navy); }
.ofi-pager.next { margin-left: auto; text-align: right; }

/* etapas como blocos clicáveis (abrem/fecham o conteúdo) */
details.etapa { margin-bottom: 12px; padding: 0; border-left: 0; border: 2px solid var(--pt-border); border-radius: 12px; overflow: hidden; background: var(--pt-white); transition: border-color .12s ease, box-shadow .12s ease; }
details.etapa[open] { border-color: var(--pt-teal); box-shadow: 0 4px 0 rgba(56,188,167,.25); }
details.etapa > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--pt-navy); }
details.etapa > summary::-webkit-details-marker { display: none; }
details.etapa > summary:hover { background: var(--pt-bg-teal); }
details.etapa > summary .chev { transition: transform .2s ease; color: var(--pt-teal); }
details.etapa[open] > summary .chev { transform: rotate(180deg); }
details.etapa .etapa-body { padding: 4px 18px 16px; }
details.etapa .etapa-body p { font-size: 14.5px; color: var(--pt-text); line-height: 1.65; margin-bottom: 14px; }
details.etapa .etapa-body a { color: var(--pt-teal); font-weight: 600; }

/* Foto de inspiração dentro de uma etapa: enquadrada, largura contida, cantos suaves. */
.etapa-fig { margin: 10px 0 4px; }
.etapa-fig img {
  display: block; width: 100%; max-width: 340px; height: auto;
  border-radius: 12px; border: 2px solid var(--pt-border);
  box-shadow: 0 6px 0 rgba(25,19,72,.12);
}
.etapa-fig-full { margin: 10px 0 4px; }
.etapa-fig-full img {
  display: block; width: 100%; max-width: 100%; height: auto;
  border-radius: 12px; border: 2px solid var(--pt-border);
  box-shadow: 0 6px 0 rgba(25,19,72,.12);
}
.etapa-fig-row { display: flex; gap: 14px; margin: 10px 0 4px; justify-content: center; }
.etapa-fig-row .etapa-fig { flex: 1 1 0; margin: 0; }
.etapa-fig-row .etapa-fig img { max-width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.etapa-fig-row .etapa-fig:only-child { flex: 0 1 50%; }
.etapa-fig-row video {
  flex: 1 1 0; max-width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 12px; border: 2px solid var(--pt-border);
  box-shadow: 0 6px 0 rgba(25,19,72,.12); background: #000;
}
.etapa-fig-row video:only-child { flex: 0 1 50%; }
@media (max-width: 560px) {
  .etapa-fig-row { flex-direction: column; }
  .etapa-fig-row .etapa-fig:only-child,
  .etapa-fig-row video:only-child { flex: 0 1 100%; }
}
.etapa-video-row { display: flex; gap: 14px; margin: 14px 0 4px; flex-wrap: wrap; justify-content: center; }
.etapa-video-row video {
  flex: 1 1 240px; max-width: 100%; max-height: 480px;
  border-radius: 12px; border: 2px solid var(--pt-border);
  box-shadow: 0 6px 0 rgba(25,19,72,.12); background: #000;
}
.etapa-video-row video.video-portrait {
  flex: 0 1 auto; width: auto; height: 480px; max-height: 70vh;
  aspect-ratio: 464 / 848;
}
.etapa-video-row .video-placeholder {
  flex: 0 1 auto; width: auto; height: 480px; max-height: 70vh;
  aspect-ratio: 464 / 848; max-width: 100%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px dashed var(--pt-border); border-radius: 12px; background: var(--pt-bg-teal);
  color: var(--pt-muted); font-style: italic; font-size: 13.5px; padding: 16px; box-sizing: border-box;
}

/* ===== Vídeo institucional em destaque (midia.html) ===== */
.video-featured {
  background: var(--pt-navy);
  border-radius: 18px;
  padding: 40px 32px;
  margin-bottom: 28px;
  text-align: center;
}
.video-featured-mascote {
  display: none;
}
@media (min-width: 861px) {
  .video-featured-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
  }
  .video-featured {
    width: 360px;
    margin: 0 auto;
  }
  .video-featured-mascote {
    display: block;
    justify-self: center;
    height: 420px;
    width: auto;
    transform: translate(-20%, 20%);
    filter: drop-shadow(0 4px 8px rgba(17,23,63,0.25));
  }
}
.video-featured .jl-eyebrow { color: var(--pt-yellow); }
.video-featured h3 { color: #ffffff; font-size: 24px; margin: 8px 0 10px; }
.video-featured p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 20px; }
.video-featured-media {
  max-width: 100%; margin: 0 auto;
}
.video-featured-media video {
  width: auto; height: 480px; max-height: 70vh; max-width: 100%;
  aspect-ratio: 720 / 1280; border-radius: 12px; display: block; margin: 0 auto; background: #000;
}
.video-featured-placeholder {
  aspect-ratio: 16 / 9; max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px dashed rgba(255,255,255,0.35); border-radius: 12px;
  color: rgba(255,255,255,0.75); font-style: italic; font-size: 14px; padding: 20px; box-sizing: border-box;
}

.etapa-bg-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center top;
}
.etapa-bg-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,23,63,.1) 0%, rgba(17,23,63,.22) 100%);
}
.etapa-bg-hero-content {
  position: relative; z-index: 1;
  padding: 22px 26px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
details.etapa .etapa-body .etapa-bg-hero-content p { color: #ffffff; text-shadow: 0 1px 10px rgba(0,0,0,.65), 0 1px 3px rgba(0,0,0,.8); font-weight: 500; margin: 0; }
details.etapa .etapa-body .etapa-bg-hero-content p strong { color: var(--pt-yellow); }
@media (max-width: 560px) {
  .etapa-bg-hero { min-height: 220px; }
  .etapa-bg-hero-content { padding: 16px 18px; }
}
.treinamento-boas-vindas-foto { position: relative; }
.treinamento-boas-vindas-foto .treinamento-brasao-boas-vindas { position: absolute; top: 2%; left: 3%; width: 18%; height: auto; }
.treinamento-titulo-boas-vindas { color: var(--pt-yellow); font-weight: 800; text-align: center; font-size: clamp(28px, 5.4vw, 44px); margin: 0 0 14px; }

/* ===== Quiz "Testando sua força" (Roteiro módulo 1) ===== */
.quiz-intro { margin-bottom: 18px; }
.quiz-q { background: var(--pt-white); border: 2px solid var(--pt-border); border-radius: 12px; padding: 16px 18px; margin-bottom: 14px; }
.quiz-q-text { font-weight: 700; color: var(--pt-navy); margin-bottom: 10px; font-size: 15px; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--pt-text); cursor: pointer; padding: 6px 8px; border-radius: 8px; }
.quiz-opt:hover { background: var(--pt-bg-teal); }
.quiz-opt input { margin-top: 3px; accent-color: var(--pt-teal); flex-shrink: 0; }
.quiz-q.is-correct { border-color: var(--pt-teal); background: var(--pt-bg-teal); }
.quiz-q.is-wrong { border-color: var(--pt-coral); background: var(--pt-bg-coral); }
.quiz-q.is-correct .quiz-opt.is-answer-correct,
.quiz-q.is-wrong .quiz-opt.is-answer-correct { font-weight: 700; color: var(--pt-teal); }
.quiz-q.is-wrong .quiz-opt.is-answer-selected { font-weight: 700; color: var(--pt-coral); text-decoration: line-through; }
.quiz-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.quiz-result { display: none; text-align: center; background: var(--pt-navy); color: #fff; border-radius: 14px; padding: 22px 20px; margin-bottom: 18px; }
.quiz-result.is-visible { display: block; }
.quiz-result-score { font-size: 30px; font-weight: 800; color: var(--pt-yellow); margin-bottom: 6px; }
.quiz-result-msg { font-size: 15px; }
fieldset.quiz-q { border: 2px solid var(--pt-border); }
fieldset.quiz-q legend.quiz-q-text { padding: 0; float: none; width: 100%; }

/* ===== Slide-quiz (apresentação por slides — Módulo 1) ===== */
.slide-quiz-wrap { max-width: 720px; margin: 0 auto; }
.slide-quiz-tabs { display: flex; gap: 10px; margin-bottom: 18px; }
.slide-quiz-tab { flex: 1; background: var(--pt-white); border: 2px solid var(--pt-border); border-radius: 10px; padding: 12px 14px; font-weight: 700; font-size: 14.5px; color: var(--pt-navy); cursor: pointer; transition: .15s; }
.slide-quiz-tab.is-active { border-color: var(--pt-navy); background: var(--pt-navy); color: #fff; }
.slide-quiz-tab.is-locked { color: var(--pt-muted); cursor: not-allowed; }
.slide-quiz-lock-icon { margin-left: 4px; font-size: 12px; }
.slide-quiz-tab-kicker { display: block; font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--pt-coral); margin-bottom: 3px; }
.slide-quiz-tab.is-active .slide-quiz-tab-kicker { color: var(--pt-yellow); }
.slide-quiz-tab.is-locked .slide-quiz-tab-kicker { color: var(--pt-muted); }

.slide-quiz-part { display: none; }
.slide-quiz-part.is-active { display: block; }

.sq-locked-msg { display: none; text-align: center; background: var(--pt-bg-soft); border: 2px dashed var(--pt-yellow); border-radius: 14px; padding: 32px 20px; color: var(--pt-muted); font-style: italic; }
.slide-quiz-part.is-locked .sq-deck { display: none; }
.slide-quiz-part.is-locked .sq-locked-msg { display: block; }

.ebk-book { border: 2px solid var(--pt-border); border-radius: 18px; background: var(--pt-white); box-shadow: 0 10px 0 rgba(17,23,63,.06); overflow: hidden; }
.ebk-bar { padding: 16px 22px 12px; border-bottom: 2px solid var(--pt-border); background: var(--pt-bg-soft); }
.ebk-progress { width: 100%; height: 8px; border-radius: 6px; background: var(--pt-white); overflow: hidden; margin-bottom: 10px; }
.ebk-progress-fill { height: 100%; width: 0%; background: var(--pt-yellow); border-radius: 6px; transition: width .3s ease; }
.ebk-bar-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ebk-counter { font-weight: 600; color: var(--pt-navy); font-size: 14px; }
.ebk-index-toggle { border: 2px solid var(--pt-border); background: var(--pt-white); color: var(--pt-navy); border-radius: 999px; padding: 6px 16px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; }
.ebk-index-toggle:hover { border-color: var(--pt-yellow); }
.ebk-index { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 22px; border-bottom: 2px solid var(--pt-border); background: var(--pt-bg-soft); }
.ebk-index[hidden] { display: none; }
.ebk-chip { border: 2px solid var(--pt-border); background: var(--pt-white); color: var(--pt-navy); border-radius: 999px; padding: 6px 14px; font: inherit; font-size: 13px; cursor: pointer; }
.ebk-chip:hover { border-color: var(--pt-yellow); }
.ebk-chip.is-active { background: var(--pt-navy); border-color: var(--pt-navy); color: var(--pt-white); }
.ebk-page { display: none; padding: 34px 30px; }
.ebk-page.is-active { display: block; }
.ebk-page > .ebook-chapter:first-child { margin-top: 0; }
.ebk-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; border-top: 2px solid var(--pt-border); background: var(--pt-bg-soft); }
.ebk-nav-title { flex: 1; text-align: center; color: var(--pt-muted); font-size: 14px; font-weight: 500; }
.ebk-nav .btn[disabled] { opacity: .4; pointer-events: none; }
@media (max-width: 640px) {
  .ebk-page { padding: 24px 18px; }
  .ebk-nav { flex-wrap: wrap; }
  .ebk-nav-title { order: 3; flex-basis: 100%; text-align: center; }
  .ebk-nav .btn { flex: 1; }
}

.sq-card { background: var(--pt-white); border: 2px solid var(--pt-border); border-radius: 18px; padding: 30px 28px; box-shadow: 0 10px 0 rgba(17,23,63,.06); }

.sq-deck { background: var(--pt-white); border: 2px solid var(--pt-border); border-radius: 18px; padding: 30px 28px; box-shadow: 0 10px 0 rgba(17,23,63,.06); min-height: 380px; display: flex; flex-direction: column; }

.sq-progress { margin-bottom: 22px; }
.sq-progress-bar { width: 100%; height: 8px; border-radius: 6px; background: var(--pt-bg-soft); overflow: hidden; margin-bottom: 8px; }
.sq-progress-fill { height: 100%; width: 0%; background: var(--pt-yellow); border-radius: 6px; transition: width .3s ease; }
.sq-progress-text { font-size: 13px; font-weight: 700; color: var(--pt-muted); text-align: right; }

.sq-slide { display: none; flex: 1; flex-direction: column; animation: sq-fade-in .35s ease; }
.sq-slide.is-active { display: flex; }
@keyframes sq-fade-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }

.sq-q-text { font-weight: 800; color: var(--pt-navy); font-size: 19px; line-height: 1.35; margin-bottom: 20px; }
.sq-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.sq-opt { display: block; width: 100%; text-align: left; background: var(--pt-bg); border: 2px solid var(--pt-border); border-radius: 10px; padding: 12px 16px; font-size: 15px; font-family: inherit; color: var(--pt-text); cursor: pointer; transition: .15s; }
.sq-opt:hover:not(.is-disabled) { border-color: var(--pt-teal); background: var(--pt-bg-teal); }
.sq-opt.is-disabled { cursor: default; }
.sq-opt.is-correct { border-color: var(--pt-teal); background: var(--pt-bg-teal); color: var(--pt-navy); font-weight: 700; }
.sq-opt.is-wrong { border-color: var(--pt-coral); background: var(--pt-bg-coral); color: var(--pt-coral); font-weight: 700; text-decoration: line-through; }

.sq-nav { margin-top: auto; display: flex; justify-content: flex-end; }
.sq-next { background: var(--pt-yellow); color: var(--pt-navy); border: none; border-radius: 10px; padding: 12px 22px; font-weight: 700; font-size: 14.5px; cursor: pointer; transition: .15s; }
.sq-next:disabled { background: var(--pt-border); color: var(--pt-muted); cursor: not-allowed; }
.sq-next:not(:disabled):hover { filter: brightness(1.05); }

.sq-final { text-align: center; align-items: center; justify-content: center; }
.sq-final-score { font-size: 34px; font-weight: 800; color: var(--pt-navy); margin-bottom: 10px; }
.sq-final-msg { font-size: 15.5px; color: var(--pt-text); margin-bottom: 22px; max-width: 440px; }
.sq-retry { }

@media (max-width: 640px) {
  .slide-quiz-tabs { flex-direction: column; }
  .sq-deck { padding: 22px 18px; min-height: 320px; }
  .sq-q-text { font-size: 17px; }
}

/* layout 2 colunas: conteúdo + post-it lateral fixo */
.ofi-layout { display: grid; grid-template-columns: 1fr 220px; gap: 32px; align-items: start; }
.ofi-main { min-width: 0; }
.ofi-postit { position: sticky; top: 90px; background: #fff7e6; border: 2px solid var(--pt-yellow); border-radius: 14px; padding: 18px 18px 20px; box-shadow: 0 6px 0 rgba(249,165,13,.25); overflow: hidden; }
.ofi-postit .postit-mark { position: absolute; right: -18px; bottom: -18px; width: 120px; height: 120px; background: url('logo-pequena-tribo.png') no-repeat center / contain; opacity: .07; pointer-events: none; }
.ofi-postit .postit-k { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--pt-navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.ofi-postit .postit-dur { display: flex; flex-direction: column; gap: 2px; position: relative; }
.ofi-postit .postit-dur span { font-size: 12.5px; color: var(--pt-muted); font-weight: 600; }
.ofi-postit .postit-dur strong { font-family: 'Montserrat', sans-serif; font-size: 20px; color: var(--pt-navy); }

.breadcrumb-lg { font-size: 16px; font-weight: 600; margin-bottom: 22px; }
.breadcrumb-lg a { color: var(--pt-teal); }
.hero-resumo { max-width: 820px; margin: 0 auto; font-size: 16px; line-height: 1.65; }

@media (max-width: 860px) {
  .ofi-layout { grid-template-columns: 1fr; }
  .ofi-postit { position: static; }
  /* marca decorativa não pode estourar a largura da tela no mobile */
  .ofi-postit .postit-mark,
  .info-postit .postit-mark { right: 0; bottom: 0; }
}
@media (max-width: 600px) {
  .oficinas-hero h1 { font-size: 30px; }
  .ofi-row { flex-wrap: wrap; }
  .ofi-row-meta { width: 100%; padding-left: 48px; }
  .ofi-pager { max-width: 100%; }
}

/* Entre 861px e 1120px o menu completo ainda aparece (o hamburguer só entra em 860px)
   e não cabe na largura: sem isto a barra estoura até 132px pra fora da tela.
   O teto subiu de 1010 pra 1120 quando as bandeiras de idioma entraram no topo:
   em tamanho natural o cabeçalho passou a precisar de 1107px. */
@media (min-width: 861px) and (max-width: 1120px) {
  /* Precisa do seletor com a tag: `header.site-header` do bloco base tem
     especificidade maior que `.site-header`, e media query não acrescenta nenhuma. */
  header.site-header { padding-left: 12px; padding-right: 12px; gap: 6px; }
  nav.site-nav { gap: 7px; }
  nav.site-nav a { font-size: 12.5px; }
  nav.site-nav .nav-doe { padding: 7px 11px; }
  nav.site-nav .nav-login { padding: 6px 9px; }
  .header-search { font-size: 12px; padding: 7px 12px 7px 30px; }
  .nav-flags { gap: 6px; }
  .nav-flags img { height: 16px; }
}

/* ============ MENU HAMBURGUER (mobile) ============ */
/* checkbox de controle e botão ficam escondidos no desktop */
.nav-toggle { display: none; }
.nav-burger { display: none; }
.nav-login-top { display: none; }
.nav-overlay { display: none; }

@media (max-width: 860px) {
  /* Header em linha: logo à esquerda, Login + hamburguer à direita */
  header.site-header {
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 18px;
  }
  .brand .brand-logo { height: 56px; }

  /* Login fixo no topo (entre logo e hamburguer) — alto contraste, sempre visível */
  .nav-login-top {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 9px 18px;
    background: var(--pt-navy);
    color: var(--pt-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 18px;
    border: 2px solid var(--pt-navy);
  }
  .nav-login-top:hover { background: var(--pt-white); color: var(--pt-navy); }

  /* Login sai do menu dropdown (já está fixo no topo) */
  nav.site-nav .nav-login { display: none; }

  /* Botão hamburguer */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    margin-left: 12px;
    cursor: pointer;
    border: 2px solid var(--pt-navy);
    border-radius: 12px;
    background: var(--pt-white);
  }
  .nav-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--pt-navy);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }

  /* Menu escondido por padrão; vira coluna full-width quando aberto */
  nav.site-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-toggle:checked ~ nav.site-nav { max-height: 520px; }

  /* Overlay invisível: ao tocar fora das opções (inclusive a barra em branco
     do topo), o menu recolhe. Fica abaixo do logo/Login/hamburguer, que sobem
     de z-index pra continuar clicáveis. */
  .nav-toggle:checked ~ .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: transparent;
  }
  /* header já é position:sticky/z-index:100 (regra base) — NÃO sobrescrever a
     posição aqui, senão a barra do topo perde o comportamento fixo. */
  .brand, .nav-login-top, .header-search, .nav-burger { position: relative; z-index: 110; }
  .nav-toggle:checked ~ nav.site-nav { position: relative; z-index: 110; }

  nav.site-nav a,
  nav.site-nav .nav-dropdown-toggle {
    width: 100%;
    padding: 14px 6px;
    border-bottom: 1px solid var(--pt-border);
    font-size: 16px;
    border-radius: 0;
  }
  nav.site-nav a:hover { border-bottom-color: var(--pt-border); background: var(--pt-yellow-soft); }
  nav.site-nav .nav-doe {
    margin-top: 10px;
    text-align: center;
    border-radius: 24px;
    border: 2px solid var(--pt-navy);
  }
  nav.site-nav .nav-login {
    margin-top: 10px;
    text-align: center;
    border-radius: 18px;
  }

  /* hamburguer vira X quando o menu está aberto */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Grids de duas/múltiplas colunas viram uma coluna */
  .about-grid,
  .familias-grid,
  .apoie-grid,
  .com-grid,
  .map-block { grid-template-columns: 1fr !important; }
  .familias-video { width: 100%; }
  /* Empilhado, o vídeo volta para logo depois do depoimento — antes do formulário. */
  .replicar-depo-grid { grid-template-columns: 1fr; gap: 0; }
  .replicar-depoimento { grid-column: 1; grid-row: 1; }
  .replicar-depo-grid .familias-video { grid-column: 1; grid-row: 2; width: 100%; max-width: none; margin-top: 24px; }
  .replicar-form-wrap { grid-column: 1; grid-row: 3; }
  .pillars { grid-template-columns: 1fr; }
  .oficinas-row { grid-template-columns: repeat(2, 1fr); }
  .entry-grid { grid-template-columns: 1fr; margin-top: 0; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 640px) {
  .block { padding: 48px 20px; }
  /* No celular a foto não fica atrás do texto. Sobreposta, o grito caía justamente na
     linha dos adultos em pé e escondia os rostos. Aqui a foto ocupa a largura toda no
     topo, inteira, e o texto desce para a faixa azul logo abaixo dela. */
  .hero { min-height: 0; display: block; }
  .hero-bg {
    position: static;
    inset: auto;
    width: 100%;
    aspect-ratio: 1280 / 853;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-overlay { display: none; }
  .hero-content { padding: 34px 22px 40px; }
  .hero-tagline { font-size: 44px; letter-spacing: -1px; }
  .hero-band { padding: 40px 22px 56px; }
  .hero-sub { font-size: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .section-title { font-size: 30px; }

  .oficinas-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom > div { display: flex; flex-direction: column; align-items: center; }
  .footer-bottom .crosslink { display: inline-block; margin-top: 12px; }
}

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

/* ============ BUSCAR (no menu — só aparece no mobile; no desktop usa .header-search) ============ */
nav.site-nav .nav-busca { display: none; }

/* ============ TROCA DE IDIOMA (bandeiras no topo) ============ */
.nav-flags { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-flags a {
  display: block;
  line-height: 0;
  padding: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  opacity: .55;
  transition: opacity .15s, border-color .15s, transform .15s;
}
.nav-flags a:hover { opacity: 1; transform: translateY(-1px); }
/* Idioma em que a página já está: fica destacado e não parece clicável à toa. */
.nav-flags a[aria-current="page"] { opacity: 1; border-color: var(--pt-navy); }
.nav-flags a:focus-visible { outline: 3px solid var(--pt-navy); outline-offset: 2px; }
.nav-flags img { height: 20px; width: auto; display: block; border-radius: 2px; }

@media (min-width: 861px) {
  /* Nas páginas sem a lupa "Buscar" (por ora só a home em inglês) não existe o
     `margin-right:auto` da busca pra empurrar o conteúdo, e as bandeiras ficavam
     soltas no meio da barra. Aqui elas voltam a encostar no menu, como no site em português. */
  .nav-flags-solo { margin-left: auto; }
}

@media (max-width: 860px) {
  /* No celular o topo já tem logo + Login + hamburguer; as bandeiras encolhem pra caber.
     O `margin-left:auto` divide a sobra com o `margin-left:auto` do Login — metade antes
     das bandeiras, metade depois. Sem ele as bandeiras ficam coladas no logo. */
  .nav-flags { gap: 6px; margin-left: auto; }
  .nav-flags img { height: 16px; }
  /* A bandeira encolhida deixava o alvo de toque com 22px, abaixo do mínimo de 24px.
     A folga é só de toque — o desenho da bandeira continua do mesmo tamanho. */
  .nav-flags a { padding: 5px 3px; }
}

/* ============ PÁGINA DE LOGIN ============ */
.login-wrap {
  display: flex;
  justify-content: center;
  padding: 64px 20px 72px;
  background:
    radial-gradient(circle at 20% 10%, var(--pt-bg-soft), transparent 60%),
    var(--pt-bg);
}
.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--pt-white);
  border: 2px solid var(--pt-navy);
  border-radius: 18px;
  box-shadow: 0 6px 0 var(--pt-navy);
  padding: 38px 32px 32px;
}
.login-eyebrow {
  display: inline-block;
  color: var(--pt-coral);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
.login-card h1, .login-card h2 { font-size: 30px; color: var(--pt-navy); margin: 0 0 8px; font-family: "Montserrat", sans-serif; }
.login-sub { color: var(--pt-muted); font-size: 15px; line-height: 1.5; margin: 0 0 24px; }
.login-form label { display: block; font-weight: 700; font-size: 13.5px; color: var(--pt-navy); margin: 14px 0 6px; font-family: "Montserrat", sans-serif; }
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 2px solid var(--pt-border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--pt-bg);
  color: var(--pt-text);
}
.login-form input:focus { outline: none; border-color: var(--pt-navy); background: var(--pt-white); }
.login-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 16px 0 22px; flex-wrap: wrap; }
.login-remember { font-size: 13.5px; color: var(--pt-muted); font-weight: 500 !important; margin: 0 !important; display: inline-flex; align-items: center; gap: 6px; }
.login-remember input { width: auto; }
.login-forgot { font-size: 13.5px; color: var(--pt-coral); text-decoration: none; font-weight: 600; }
.login-forgot:hover { text-decoration: underline; }
.login-btn { width: 100%; text-align: center; cursor: pointer; }
.login-erro { color: var(--pt-coral); font-size: 13.5px; font-weight: 600; text-align: center; margin: 12px 0 0; }
.login-note { font-size: 13px; color: var(--pt-muted); text-align: center; margin: 22px 0 0; line-height: 1.5; }

/* ============ PÁGINA DE BUSCA ============ */
.busca-form { display: flex; gap: 12px; max-width: 620px; margin: 0 0 28px; flex-wrap: wrap; }
.busca-form input[type="search"] {
  flex: 1 1 260px;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 16px;
  border: 2px solid var(--pt-navy);
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  background: var(--pt-white);
  color: var(--pt-text);
}
.busca-form input[type="search"]:focus { outline: none; box-shadow: 0 3px 0 var(--pt-navy); }
.busca-form .btn { cursor: pointer; }
.busca-results { display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.busca-hit {
  display: block;
  padding: 16px 18px;
  border: 2px solid var(--pt-border);
  border-radius: 14px;
  background: var(--pt-white);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.busca-hit:hover { border-color: var(--pt-navy); transform: translateY(-1px); }
.busca-hit-title { display: block; font-weight: 800; color: var(--pt-navy); font-size: 17px; font-family: "Montserrat", sans-serif; margin-bottom: 3px; }
.busca-hit-desc { display: block; color: var(--pt-muted); font-size: 14px; line-height: 1.45; }
.busca-empty { color: var(--pt-muted); font-style: italic; }

@media (max-width: 860px) {
  /* o link Buscar no menu mobile usa o estilo de item de lista; tira o ícone
     pra não competir com o padding full-width do dropdown */
  nav.site-nav .nav-busca {
    display: block;
    background-image: none;
    padding: 14px 6px;
    border: none;
    border-bottom: 1px solid var(--pt-border);
    border-radius: 0;
    color: var(--pt-navy);
    font-weight: 600;
  }
  /* no mobile a busca à esquerda some (já tem o link Buscar no menu hamburguer) */
  .header-search { display: none; }
}

/* ============ FAIXA AMARELA — CABEÇALHO (joguinhos: alunos, desenhar, imprimir) ============ */
.draw-hero { background: linear-gradient(90deg, #FFF4D9 0%, var(--pt-yellow) 32%, #ffc23d 100%); }
.draw-hero-row { display: flex; align-items: center; justify-content: flex-start; gap: 110px; flex-wrap: wrap; text-align: left; }
.jagua-standalone { display: flex; flex-direction: row; align-items: flex-start; gap: 4px; flex-shrink: 0; }
.jagua-standalone img { display: block; height: 190px; width: auto; filter: drop-shadow(0 10px 14px rgba(17,23,63,0.2)); }
.draw-hero .jagua-caption { margin: 10px 0 0 0; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 14.4px; color: var(--pt-navy); line-height: 1.35; max-width: 120px; }
.draw-hero-text { text-align: left; flex: 1; min-width: 300px; }
.draw-hero-text .alunos-eyebrow { display: block; }
.draw-hero-text h1, .draw-hero-text h2 { margin: 8px 0 12px 0; font-size: 50px; white-space: nowrap; }
.draw-hero-text p { margin: 0; max-width: none; font-size: 20px; font-weight: 600; }
@media (max-width: 900px) {
  .draw-hero-text h1, .draw-hero-text h2 { font-size: 38px; white-space: normal; }
}
@media (max-width: 700px) {
  .draw-hero-row { flex-direction: column; text-align: center; }
  .jagua-standalone { flex-direction: column; align-items: center; margin: 0 auto; }
  .jagua-standalone p { text-align: center; }
  .draw-hero .jagua-caption { margin: 6px 0 0 0; max-width: 220px; font-size: 18px; }
  .draw-hero-text { text-align: center; max-width: 100%; min-width: 0; }
  .draw-hero-text > p { text-align: center; }
  .draw-hero-text h1, .draw-hero-text h2 { white-space: normal; font-size: 32px; }
}

/* ============ MASCOTE NO RODAPÉ DA PÁGINA (joguinhos) ============ */
.mascote-canto {
  position: relative;
  max-width: 1100px;
  margin: 8px auto 40px;
  padding: 0 32px;
  min-height: 150px;
}
.mascote-canto .mascote-fala {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--pt-bg-teal);
  border: 2px solid var(--pt-teal);
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 5px 0 rgba(56,188,167,0.25);
}
.mascote-canto .mascote-fala img {
  height: 120px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 10px rgba(17,23,63,0.12));
}
.mascote-canto .mascote-fala p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--pt-navy);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .mascote-canto .mascote-fala { flex-direction: column; text-align: center; gap: 10px; padding: 16px 18px; }
  .mascote-canto .mascote-fala p { text-align: center; }
  .mascote-canto .mascote-fala img { height: 100px; }
}

/* ============ FORMULÁRIOS (contato / currículo / parceria) ============ */
.form-card {
  max-width: 640px;
  background: var(--pt-white);
  border: 2px solid var(--pt-navy);
  border-radius: 18px;
  box-shadow: 0 6px 0 var(--pt-navy);
  padding: 34px 32px 30px;
  margin-top: 8px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--pt-navy);
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 2px solid var(--pt-border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--pt-bg);
  color: var(--pt-text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--pt-navy); background: var(--pt-white); }
.form-field textarea { min-height: 110px; resize: vertical; }
.file-upload { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.form-card .form-field .file-upload-btn { display: inline-block; width: auto; margin-top: 0; padding: 10px 20px; font-size: 14px; }
.file-upload-name { font-size: 14px; color: var(--pt-muted); }

/* Precisa de mais especificidade que `.form-field input { width:100% }`, senão o input
   fica com a largura toda e, absoluto, joga a página 65px pra fora da tela. */
.form-field .file-upload-input,
.file-upload .file-upload-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.form-hint { font-size: 12.5px; color: var(--pt-muted); margin-top: 5px; }
.form-card .btn { width: 100%; text-align: center; cursor: pointer; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--pt-muted); margin-top: 18px; line-height: 1.5; }

/* link/botão "parceria empresarial" chamativo com mascote */
/* A caixa de doação tem largura fixa de 620px e deixava meia tela vazia à direita.
   O Jaguá ocupa essa faixa apontando para o formulário. */
.doacao-grid {
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 44px;
  align-items: start;
}
.section-lead-full { max-width: none; }
.doacao-jagua {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
.doacao-jagua img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(17,23,63,0.16));
}
/* O Jaguá que aponta só faz sentido ao lado do formulário. Quando o grid vira uma
   coluna ele fica embaixo, apontando pra fora da tela — aí entra o que acena. */
.doacao-jagua .jagua-acena { display: none; }
@media (max-width: 1080px) {
  .doacao-grid { grid-template-columns: 1fr; gap: 24px; }
  .doacao-jagua { padding-top: 0; }
  .doacao-jagua img { max-width: 230px; }
  .doacao-jagua .jagua-aponta { display: none; }
  .doacao-jagua .jagua-acena { display: block; }
}
/* O Jaguá acompanha a rolagem do formulário. Só no desktop: abaixo de 1080px o grid
   vira uma coluna e ele deixa de ficar ao lado. O top desvia do cabeçalho fixo, e o
   max-height evita que ele seja cortado em janela baixa. */
@media (min-width: 1081px) {
  .doacao-jagua { position: sticky; top: 120px; align-self: start; }
  .doacao-jagua img { width: auto; max-height: calc(100vh - 170px); }
}

/* link clicável "deixe seu currículo" estilizado */
.cv-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pt-yellow);
  color: var(--pt-navy);
  border: 2px solid var(--pt-navy);
  border-radius: 24px;
  padding: 13px 28px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--pt-navy);
  font-family: "Montserrat", sans-serif;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.cv-link:hover { background: #d99700; transform: translateY(2px); box-shadow: 0 2px 0 var(--pt-navy); }

/* logo do programa de apadrinhamento */
.apad-logo {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 8px;
}

/* ---- Roteiro: abas Parte 1 / Parte 2 ---- */
.roteiro-abas { display: flex; gap: 10px; margin: 0 0 22px; }
.roteiro-aba {
  flex: 1;
  background: var(--pt-white);
  border: 2px solid var(--pt-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--pt-navy);
  text-align: left;
  cursor: pointer;
  transition: .15s;
}
.roteiro-aba.is-active { border-color: var(--pt-navy); background: var(--pt-navy); color: #fff; }
.roteiro-aba-kicker {
  display: block;
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pt-coral);
  margin-bottom: 3px;
}
.roteiro-aba.is-active .roteiro-aba-kicker { color: var(--pt-yellow); }
.roteiro-parte { display: none; }
.roteiro-parte.is-active { display: block; }

@media (max-width: 640px) {
  .roteiro-abas { flex-direction: column; }
}

/* Link solto no meio de um texto não tinha cor definida e caía no azul (ou roxo, depois
   de visitado) padrão do navegador. Fica igual ao que o resto do site já usa: azul-marinho
   sublinhado. Só pega o <a> sem classe própria, então nada que já tem estilo muda. */
p a:not([class]), li a:not([class]), td a:not([class]) {
  color: var(--pt-navy);
  text-decoration: underline;
}

/* No celular os links do rodapé ficavam com 22px de altura — abaixo do mínimo de
   24px para alvo de toque, e vizinhos demais para o dedo acertar o certo. */
@media (max-width: 860px) {
  .footer-grid a { padding: 5px 0; margin-bottom: 2px; }
}

/* Impressão do roteiro: sai só a parte aberta, e os sanfonados vão abertos —
   senão o papel sai com os títulos e nenhum conteúdo. */
@media print {
  .pagina-roteiro .restrito-bar,
  .pagina-roteiro .site-header,
  .pagina-roteiro .site-footer,
  .pagina-roteiro .oficinas-hero,
  .pagina-roteiro .tri-band,
  .pagina-roteiro #roteiro-gate,
  .pagina-roteiro .roteiro-abas,
  .pagina-roteiro #roteiro-imprimir,
  .pagina-roteiro .chev { display: none !important; }

  .pagina-roteiro #roteiro-conteudo { display: block !important; }
  .pagina-roteiro .etapa > .etapa-body { display: block !important; }
  .pagina-roteiro .etapa > summary {
    font-weight: 700;
    list-style: none;
    page-break-after: avoid;
  }
  .pagina-roteiro .etapa { page-break-inside: avoid; }
  .pagina-roteiro { background: #fff; }
}

/* Texto justificado em todo o site (pedido da Sandra, 2026-07-28). O seletor
   é de elemento de propósito: qualquer centralização feita por classe tem
   especificidade maior e continua valendo, então nada que hoje é centralizado
   vira justificado. Justificar também não mexe na última linha de um bloco —
   parágrafo de uma linha só fica idêntico, que era a ressalva dela. */
/* Sem hyphens: a Sandra não quer palavra partida no fim da linha em lugar
   nenhum do site — palavra que não cabe desce inteira. */
p, li { text-align: justify; hyphens: none; }
/* Como a regra acima alcança o parágrafo direto, ele deixa de herdar o centro
   do bloco que o contém. Estes são os blocos centralizados do site, reafirmados
   para que continuem centralizados. Os seletores são estreitos de propósito:
   ">" evita pegar parágrafo aninhado que nunca foi centralizado. */
.hero-content p, .hero-content li,
.oficinas-hero p, .oficinas-hero li,
.ebook-cover p,
.jagua-standalone > p,
.draw-hero-text > p,
.mascote-fala > p,
.alunos-block > .container > p,
.video-featured p, .video-featured-placeholder p,
.team-card p,
.oficina p,
.map-placeholder p,
.etapa-video-row .video-placeholder p,
.etapa-bg-hero-content p,
.restrito-bar p,
.quiz-result p, .sq-final p, .sq-locked-msg p,
.doar-pix p,
.login-note, .login-erro,
.mascote-canto .mascote-fala,
.color-empty p, .print-empty p,
[style*="text-align: center"] > p, [style*="text-align:center"] > p { text-align: center; }
