/* ==========================================================================
   LUZIMAR COLLARES — identidade aplicada conforme Manual da Marca v1.0
   Paleta oficial: claras #A60D7D #40863D #F29F05 #F27C38 #A60D0D
                   escuras #592231 #013A40 #02733E #3B593F #593128
   Tipografia oficial: Cinzel (display) + Lato (texto)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* cores do manual */
  --paper: #F4F3F1;          /* off-white dos arquivos oficiais do logo */
  --paper-soft: #ECEAE6;
  --wine: #592231;           /* escura — títulos, marca */
  --petrol: #013A40;         /* escura — seções profundas, texto */
  --magenta: #A60D7D;        /* clara — acento vivo */
  --amber: #F29F05;          /* clara — acento sobre fundos escuros */
  --ink: #2E2226;            /* derivado do vinho p/ corpo longo */

  /* tipografia */
  --font-display: "Cinzel", serif;
  --font-body: "Lato", sans-serif;

  /* escala */
  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.375rem;
  --step-2: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  --step-3: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  --step-4: clamp(1.9rem, 0.85rem + 4.9vw, 5rem);

  --container: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
summary { cursor: pointer; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--wine); color: var(--paper);
  padding: 0.6rem 1rem; border-radius: 0.25rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }

/* ---------- Marca (logo) ---------- */
/* Logo oficial da marca (arquivo do acervo, fundo transparente) */
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;               /* o logo nunca encolhe nem é espremido pelo menu */
}
.brand__logo { width: auto; height: clamp(2.1rem, 3.2vw, 2.6rem); }
.brand--footer .brand__logo { height: clamp(2.2rem, 3.4vw, 2.8rem); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: color-mix(in srgb, var(--wine) 14%, transparent); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem;
}
.site-nav__list {
  display: flex; align-items: center; gap: 1.4rem;
  flex-wrap: nowrap;            /* nunca quebra em duas linhas: ou cabe, ou vira menu (abaixo de 78rem) */
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.01em;
}
.site-nav__list a:not(.button) { white-space: nowrap; }
.site-header__inner { gap: 1.5rem; }
/* botão do WhatsApp no cabeçalho: compacto, para caber os 8 destinos */
.site-nav__cta-item { margin-left: 0.4rem; }
.site-nav__cta-item .button { padding: 0.62rem 1.2rem; font-size: 0.88rem; white-space: nowrap; }
.site-nav__list a:not(.button) {
  text-decoration: none; color: var(--ink);
  position: relative; padding-block: 0.3rem;
}
.site-nav__list a:not(.button)::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0;
  height: 1px; background: var(--magenta);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav__list a:not(.button):hover::after,
.site-nav__list a:not(.button):focus-visible::after { transform: scaleX(1); }
.site-nav__list a[aria-current="page"] { color: var(--wine); font-weight: 700; }
.site-nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__toggle { display: none; }

/* ---------- Botões e links ---------- */
.button {
  display: inline-block; text-decoration: none;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em;
  padding: 0.85rem 1.7rem; border-radius: 999px 999px 999px 0; /* geometria do balão */
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--solid { background: var(--wine); color: var(--paper); border: 1px solid var(--wine); }
.button--solid:hover { background: var(--magenta); border-color: var(--magenta); }
.button--outline { background: transparent; color: var(--wine); border: 1px solid currentColor; }
.button--outline:hover { color: var(--magenta); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  color: var(--wine);
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.link-arrow::after { content: "→"; font-weight: 400; }
.link-arrow:hover { color: var(--magenta); gap: 0.8rem; }
.link-arrow--dark { color: var(--paper); }
.link-arrow--dark:hover { color: var(--amber); }

/* ---------- Utilitários editoriais ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.4rem;
}
.eyebrow--dark { color: var(--amber); }

.section { padding-block: var(--section-y); }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); line-height: 1.22;
  color: var(--wine);
  max-width: 24ch;
}
.section-title--wide { max-width: 30ch; }
.section-title--dark { color: var(--paper); }

.prose { max-width: 58ch; margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.prose p { font-weight: 400; }
.prose--dark { color: color-mix(in srgb, var(--paper) 88%, var(--petrol)); }
.prose em { font-style: italic; }

/* ---------- Máscara "balão de fala" (assinatura da marca) ---------- */
.balao-mask {
  border-radius: 46% 46% 46% 0;
  object-fit: cover;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 7rem) var(--section-y); }
.hero__rings {
  position: absolute; z-index: 0;
  right: -14vw; top: -18vw;
  width: clamp(24rem, 52vw, 46rem); height: auto;
  color: var(--wine); opacity: 0.09;
  transform: rotate(180deg);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-4); line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--wine);
  text-transform: uppercase;
}
.hero__lede {
  margin-top: 1.8rem; max-width: 46ch;
  font-size: var(--step-1); font-weight: 300; line-height: 1.55;
}
.hero__actions { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.hero__figure { justify-self: end; width: min(100%, 26rem); position: relative; }
.hero__figure img { aspect-ratio: 4 / 5; width: 100%; }

/* ---------- Faixa de credibilidade ---------- */
.credentials {
  border-block: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  padding-block: 1.9rem;
  background: var(--paper);
}
.credentials__list {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 1.4rem 2.4rem;
}
.credentials__list li { display: grid; gap: 0.15rem; }
.credentials__list strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.92rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--wine);
}
.credentials__list span {
  font-size: 0.82rem; letter-spacing: 0.04em; color: color-mix(in srgb, var(--ink) 72%, var(--paper));
}

/* ---------- Sobre ---------- */
.sobre__inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 6rem); align-items: start;
}
.sobre__figure { width: min(100%, 24rem); }
.sobre__figure img { aspect-ratio: 4 / 5; width: 100%; }
.sobre__legend { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.sobre__legend-item { font-size: 0.85rem; line-height: 1.5; color: color-mix(in srgb, var(--ink) 80%, var(--paper)); }
.sobre__legend-item strong {
  display: block;
  font-family: var(--font-display); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 0.15rem;
}
.sobre__copy .link-arrow { margin-top: 2rem; }

/* ---------- Treinamentos ---------- */
.treinamentos { background: var(--paper-soft); }
.offer-list {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.offer {
  display: grid; grid-template-columns: minmax(4.5rem, 8rem) 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: clamp(1.8rem, 4vw, 2.8rem);
  border-bottom: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.offer__letter {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1;
  color: var(--magenta);
}
.offer__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-1); color: var(--wine); line-height: 1.3;
}
.offer__meta {
  margin-top: 0.35rem;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 66%, var(--paper-soft));
}
.offer__desc { margin-top: 0.9rem; max-width: 58ch; }
.offer__details { margin-top: 1rem; max-width: 58ch; }
.offer__details summary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.9rem; color: var(--wine);
  list-style: none;
}
.offer__details summary::-webkit-details-marker { display: none; }
.offer__details summary::after {
  content: "+"; font-weight: 400; font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}
.offer__details[open] summary::after { transform: rotate(45deg); }
.offer__details summary:hover { color: var(--magenta); }
.offer__details ul {
  margin-top: 1rem; display: grid; gap: 0.45rem;
  padding-left: 1.1rem; list-style: disc;
  font-size: 0.95rem; color: color-mix(in srgb, var(--ink) 88%, var(--paper-soft));
}
.offer__details li::marker { color: var(--magenta); }
.treinamentos__cta {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap;
}
.treinamentos__cta-note { font-size: 0.88rem; max-width: 42ch; color: color-mix(in srgb, var(--ink) 72%, var(--paper-soft)); }

/* ---------- Destaque escuro (media training) ---------- */
.destaque { background: var(--petrol); color: var(--paper); }
.destaque__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6rem); align-items: center;
}
.destaque__figure img { aspect-ratio: 4 / 3; width: 100%; }
/* fotos verticais não cabem no slot 4:3 — usam proporção de retrato.
   object-position acima do centro para o corte nunca pegar a cabeça. */
.destaque__figure--retrato { justify-self: center; width: min(100%, 23rem); }
.destaque__figure--retrato img { aspect-ratio: 4 / 5; object-position: 50% 18%; }
.destaque .link-arrow { margin-top: 2rem; }

/* ---------- Livros ---------- */
.livros__grid {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}
.book__cover {
  aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 18% 18% 18% 0;
  background: var(--paper-soft);
}
.book__cover img { width: 100%; height: 100%; object-fit: cover; object-position: 71.5% 50%; }
.book__cover--tipografica {
  display: grid; place-content: center; gap: 1rem; text-align: center;
  background: var(--wine); color: var(--paper);
  padding: 1.5rem;
}
.book__cover--alt { background: var(--petrol); }
.book__cover-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.3;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.book__cover-author {
  font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 75%, transparent);
}
.book__title {
  margin-top: 1.4rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.15rem; color: var(--wine); line-height: 1.35;
}
.book__meta {
  margin-top: 0.3rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 62%, var(--paper));
}
.book__desc { margin-top: 0.8rem; font-size: 0.95rem; }

/* ---------- Coluna ---------- */
.coluna__lede { margin-top: 1.4rem; max-width: 52ch; font-weight: 300; font-size: var(--step-1); line-height: 1.55; }
.coluna__grid {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
.coluna-card {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
  text-decoration: none; color: var(--ink);
  background: var(--paper);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.coluna-card:hover {
  border-color: var(--magenta);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -28px color-mix(in srgb, var(--wine) 45%, transparent);
}
.coluna-card__date {
  font-size: 0.75rem; letter-spacing: 0.3em;
  color: color-mix(in srgb, var(--ink) 82%, var(--paper));
}
.coluna-card__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.08rem; line-height: 1.4; color: var(--wine);
}
.coluna-card__excerpt { font-size: 0.92rem; flex-grow: 1; }
.coluna-card__cta {
  font-weight: 700; font-size: 0.88rem; color: var(--wine);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.coluna-card__cta::after { content: "→"; font-weight: 400; transition: transform 0.25s var(--ease); }
.coluna-card:hover .coluna-card__cta { color: var(--magenta); }
.coluna-card:hover .coluna-card__cta::after { transform: translateX(4px); }
.coluna__all { margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.coluna__intro { margin-top: 1.2rem; max-width: 48ch; font-size: var(--step-1); font-weight: 300; color: color-mix(in srgb, var(--ink) 82%, var(--paper)); }

/* ---------- Reconhecimentos / imprensa ---------- */
.imprensa { background: var(--petrol); color: var(--paper); }
.imprensa__quote { margin: 0; }
.imprensa__quote p {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-3); line-height: 1.25; color: var(--paper);
  max-width: 24ch;
}
.imprensa__quote cite {
  display: block; margin-top: 1.2rem; font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--amber);
}
.imprensa__list {
  margin-top: clamp(2.6rem, 6vw, 4rem);
  border-top: 1px solid color-mix(in srgb, var(--paper) 22%, transparent);
}
.imprensa__item {
  display: grid; grid-template-columns: minmax(4.5rem, 8rem) 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: clamp(1.5rem, 3.5vw, 2.2rem);
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 22%, transparent);
}
.imprensa__year {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
}
.imprensa__item h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.15rem; line-height: 1.35; color: var(--paper);
}
.imprensa__item p {
  margin-top: 0.6rem; max-width: 64ch; font-size: 0.95rem;
  color: color-mix(in srgb, var(--paper) 85%, var(--petrol));
}
.imprensa__item a { color: var(--amber); text-underline-offset: 3px; }
.imprensa__item a:hover { color: var(--paper); }
.imprensa__item em { font-style: italic; }

/* ---------- Instituições ---------- */
.clientes { background: var(--paper-soft); }
.clientes__cta { margin-top: clamp(1.6rem, 4vw, 2.4rem); }

/* ---------- Esteira de clientes (marquee estilo SaaS) ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 3rem);
  /* esmaece nas bordas para o efeito de "entrando e saindo" */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee--spaced { margin-top: clamp(1rem, 2.5vw, 1.6rem); }
.marquee__track {
  display: flex; width: max-content;
  animation: marquee-scroll 46s linear infinite;
}
.marquee__track--reverse { animation-direction: reverse; animation-duration: 54s; }
.marquee__group {
  display: flex; align-items: center;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  padding-right: clamp(1rem, 2.2vw, 1.8rem);
}
.client-tile {
  display: grid; place-items: center;
  min-width: 11.5rem; height: 5.2rem; padding: 0 1.6rem;
  border: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  border-radius: 1.1rem 1.1rem 1.1rem 0;
  background: var(--paper);
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.06em; color: var(--wine);
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.client-tile:hover { border-color: var(--magenta); color: var(--magenta); }
/* placa com logo: cartão branco; cada logo com altura uniforme e largura natural */
.client-tile--logo {
  min-width: 0; width: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.9rem;
  background: #fff;
  border-color: color-mix(in srgb, var(--wine) 12%, transparent);
  box-shadow: 0 12px 28px -24px color-mix(in srgb, var(--wine) 60%, transparent);
}
.client-tile--logo img {
  height: 2.9rem; width: auto; max-width: 12rem; object-fit: contain;
}
.client-tile--logo:hover {
  border-color: color-mix(in srgb, var(--magenta) 40%, transparent);
  box-shadow: 0 16px 34px -22px color-mix(in srgb, var(--wine) 55%, transparent);
}

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

/* ---------- Galeria de livros (capas reais) ---------- */
.books-gallery {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(2, minmax(0, 20rem));
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
}
.book-item {
  display: grid; justify-items: center; text-align: center; gap: 0.4rem;
  text-decoration: none;
  /* a linha das capas alinha embaixo, então os títulos ficam na mesma altura */
  grid-template-rows: auto auto 1fr;
  align-content: start;
}
.book-item__cover {
  /* as capas têm proporções diferentes: iguala pela ALTURA, largura livre */
  height: clamp(14rem, 23vw, 18rem); width: auto; max-width: 100%;
  object-fit: contain;
  align-self: end;
  border-radius: 0.35rem;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.book-item:hover .book-item__cover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 34px 64px -24px rgba(0, 0, 0, 0.7);
}
.book-item__title {
  margin-top: 1.1rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.05rem; line-height: 1.3; color: var(--paper);
  max-width: 22ch;
}
.book-item__meta {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber);
}
.book-item:hover .book-item__title { color: var(--amber); }
.books-gallery__cta {
  margin-top: clamp(2.2rem, 5vw, 3rem);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.2rem 2rem;
}
/* capa real nas páginas de detalhe */
.launch-hero__figure img { border-radius: 0.35rem; }

/* ---------- Faixa de conexão (LinkedIn em destaque) ---------- */
.connect { background: var(--wine); color: var(--paper); padding-block: clamp(3rem, 7vw, 4.5rem); }
.connect__inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.connect__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); line-height: 1.2; color: var(--paper);
  max-width: 18ch;
}
.connect__lede {
  margin-top: 1rem; max-width: 42ch; font-weight: 300;
  color: color-mix(in srgb, var(--paper) 84%, var(--wine));
}
.connect__links { display: grid; gap: 1rem; }
.social {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid color-mix(in srgb, var(--paper) 26%, transparent);
  border-radius: 1.1rem 1.1rem 1.1rem 0;
  text-decoration: none; color: var(--paper);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social:hover {
  border-color: var(--amber); transform: translateY(-3px);
  background: color-mix(in srgb, var(--paper) 7%, transparent);
}
.social--featured { padding: 1.5rem 1.6rem; border-color: color-mix(in srgb, var(--amber) 55%, transparent); }
.social__icon { width: 1.6rem; height: 1.6rem; flex: none; color: var(--amber); }
.social--featured .social__icon { width: 2.1rem; height: 2.1rem; }
.social__body { display: grid; gap: 0.1rem; flex-grow: 1; }
.social__label {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 70%, var(--wine));
}
.social__handle {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.02rem; color: var(--paper);
}
.social__note { font-size: 0.85rem; color: color-mix(in srgb, var(--paper) 74%, var(--wine)); }
.social__arrow { font-size: 1.2rem; color: var(--amber); flex: none; }
.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Case em destaque com player 16:9 ---------- */
.case-feature {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.case-player {
  position: relative; display: block;
  aspect-ratio: 16 / 9;            /* respeita a proporção real do vídeo */
  border-radius: 1rem 1rem 1rem 0;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case-player img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* degradê forte embaixo: cobre a legenda queimada no vídeo e dá contraste ao rótulo */
.case-player::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(1, 58, 64, 0.96) 0%,
    rgba(1, 58, 64, 0.86) 14%,
    rgba(1, 58, 64, 0.35) 32%,
    transparent 52%);
}
.case-player__play {
  position: absolute; inset: 0; margin: auto; z-index: 1;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s var(--ease);
}
.case-player__play::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 0; height: 0;
  border-left: 1.15rem solid var(--wine);
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  transform: translateX(0.16rem);
}
.case-player__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1rem 1.4rem 1.1rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.92rem; letter-spacing: 0.06em; color: var(--paper);
}
.case-player__label::before {
  content: "▸ "; color: var(--amber);
}
.case-player:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8); }
.case-player:hover .case-player__play { transform: scale(1.08); }

/* ================================================================
   LANDING ÚNICA — âncoras, blocos de serviço e placeholders de mídia
   ================================================================ */
.anchor { scroll-margin-top: 5rem; }
/* landing única: seções mais próximas para leitura contínua, como a referência */
.anchor.section, .contato-final.section { padding-block: clamp(3rem, 6.5vw, 5rem); }
.stack { margin-top: clamp(1.8rem, 4vw, 2.6rem); display: grid; gap: clamp(1.8rem, 4.5vw, 3rem); }
.svc { scroll-margin-top: 6rem; }
.svc--alt {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--wine) 12%, transparent);
  border-radius: 1.6rem 1.6rem 1.6rem 0;
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

/* sub-blocos da seção Sobre (Palestras e treinamentos · Coluna e livros · Eventos e parcerias) */
.sobre-bloco {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid color-mix(in srgb, var(--wine) 14%, transparent);
}
.sobre-bloco__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.25; color: var(--wine);
  margin-bottom: 1rem;
}
.sobre-bloco .prose a { color: var(--wine); text-underline-offset: 3px; }
.sobre-bloco .prose a:hover { color: var(--magenta); }
.sobre-bloco .page-hero__actions { margin-top: 1.8rem; }

/* box expansível de formação acadêmica */
.formacao-box {
  margin-top: 1.6rem;
  border: 1px solid color-mix(in srgb, var(--wine) 20%, transparent);
  border-radius: 1.1rem 1.1rem 1.1rem 0;
  background: var(--paper);
}
.formacao-box summary {
  display: flex; align-items: center; gap: 0.7rem;
  min-height: 44px; padding: 0.9rem 1.3rem;
  font-weight: 700; font-size: 0.95rem; color: var(--wine);
  list-style: none;
}
.formacao-box summary::-webkit-details-marker { display: none; }
.formacao-box summary::after {
  content: "+"; margin-left: auto; font-weight: 400; font-size: 1.3rem;
  transition: transform 0.3s var(--ease);
}
.formacao-box[open] summary::after { transform: rotate(45deg); }
.formacao-box summary:hover { color: var(--magenta); cursor: pointer; }
.formacao-box__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: 0.4rem 1.3rem 1.4rem;
}
.formacao-box__grid h4 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--magenta);
}
.formacao-box__grid ul { display: grid; gap: 0.5rem; font-size: 0.92rem; }
.formacao-box__grid li { padding-left: 1rem; position: relative; }
.formacao-box__grid li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50% 50% 50% 0;
  background: var(--magenta);
}

/* capas dos livros dentro do texto do Sobre */
.books-inline {
  margin-top: clamp(1.6rem, 3.5vw, 2.2rem);
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2rem);
}
.books-inline__cover {
  height: clamp(15rem, 27vw, 21rem); width: auto;
  border-radius: 0.35rem;
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, 0.5);
}

/* listas de temas dos serviços (texto integral do documento) ----------
   Colunas de texto, não grade: numa grade a linha inteira cresce junto com o
   item mais longo e a coluna curta fica com buracos entre os itens. Aqui cada
   item ocupa só a própria altura e o respiro entre eles é igual dos dois lados. */
.topics {
  margin-top: 0.9rem;
  columns: 2; column-gap: 2.5rem;
  max-width: 56rem;
  font-size: 0.97rem;
}
.topics li {
  padding-left: 1.1rem; position: relative;
  margin-bottom: 0.55rem;
  break-inside: avoid; -webkit-column-break-inside: avoid;
}
.topics li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50% 50% 50% 0;
  background: var(--magenta);
}

/* vídeos incorporados 16:9, lado a lado */
.video-duo {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 56rem;
}
.video-embed { margin: 0; }
.video-embed iframe {
  width: 100%; aspect-ratio: 16 / 9; height: auto;
  border: 0; display: block;
  border-radius: 1rem 1rem 1rem 0;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.45);
}
.video-embed figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 62%, var(--paper));
}

/* fotos de palco + molduras reservadas para as que ainda chegarão */
.media-slots {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 1.2rem);
  max-width: 56rem;
}
.media-shot { margin: 0; }
.media-shot img {
  width: 100%; aspect-ratio: 4 / 3;
  /* enquadramento puxado para cima: o rosto fica no terço superior das fotos de palco.
     Fotos em retrato perdem metade da altura no quadro 4:3 e às vezes precisam de um
     ponto próprio — o build passa --foco quando é o caso. */
  object-fit: cover; object-position: var(--foco, 50% 22%);
  border-radius: 0.9rem 0.9rem 0.9rem 0;
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.55);
}
.media-shot figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-display); font-weight: 400;
  /* piso de 12px: abaixo disso a legenda vira ruído no celular */
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 58%, var(--paper));
}
.media-slot {
  aspect-ratio: 16 / 10;
  display: grid; place-items: end start;
  border: 1.5px dashed color-mix(in srgb, var(--wine) 32%, transparent);
  border-radius: 0.9rem 0.9rem 0.9rem 0;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--wine) 7%, transparent) 0 22%, transparent 23%),
    var(--paper);
}
.media-slot figcaption {
  padding: 0.6rem 0.9rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, var(--paper));
}

/* formação acadêmica — chips com espaço para link */
.edu-list { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.edu-list__item a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 1.05rem;
  border: 1px solid color-mix(in srgb, var(--wine) 22%, transparent);
  border-radius: 999px 999px 999px 0;
  font-size: 0.85rem; text-decoration: none; color: var(--wine);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.edu-list__item a:hover { border-color: var(--magenta); color: var(--magenta); }

/* parede de logomarcas (grid responsivo, pronto para novas logos) */
.logo-wall { margin-top: clamp(2rem, 5vw, 3rem); }
.client-logos--wall {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: clamp(0.8rem, 2vw, 1.2rem);
}
.client-logos--wall .client-tile { width: auto; min-width: 0; height: 5rem; }
.clientes__nota {
  margin-top: 1.6rem; font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 70%, var(--paper-soft));
}

/* faixa compacta da coluna */
.coluna-strip { border-block: 1px solid color-mix(in srgb, var(--wine) 14%, transparent); }
.coluna-strip__inner {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.coluna-strip__cta { justify-self: end; }

/* contato no fim da landing */
.contato-final { background: var(--paper-soft); }
.contato-final .contato-grid { margin-top: clamp(2rem, 5vw, 3rem); }

/* ---------- Cards de parceria institucional (logo real do perfil) ---------- */
.partner-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.partner-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.9rem;
  padding: clamp(1.3rem, 2.8vw, 1.8rem);
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.partner-card:hover {
  border-color: var(--magenta); transform: translateY(-4px);
  box-shadow: 0 18px 40px -28px color-mix(in srgb, var(--wine) 45%, transparent);
}
.partner-card__logo {
  width: min(100%, 8.5rem); height: auto; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.1rem 1.1rem 1.1rem 0;
  border: 1px solid color-mix(in srgb, var(--wine) 10%, transparent);
}
.partner-card__full {
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.98rem; line-height: 1.3; color: var(--wine);
}

/* ---------- Blocos de formato (página de treinamentos unificada) ---------- */
.format { scroll-margin-top: 5rem; }
.format--alt { background: var(--paper-soft); }
.format__head {
  display: flex; align-items: baseline; gap: clamp(1rem, 3vw, 1.8rem);
  border-top: 2px solid var(--wine); padding-top: 1.4rem;
}
.format__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; color: var(--magenta);
  flex: none;
}
.format__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); line-height: 1.2; color: var(--wine);
}
.format__meta {
  margin-top: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 64%, var(--paper));
}
.format__lede {
  margin-top: 1.4rem; max-width: 60ch;
  font-size: var(--step-1); font-weight: 300; line-height: 1.55;
}
.format__cta {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
}

/* ---------- Grupos de clientes (treinamentos · eventos · parcerias) ---------- */
.anchor-nav {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.anchor-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid color-mix(in srgb, var(--wine) 24%, transparent);
  border-radius: 999px 999px 999px 0;
  font-size: 0.88rem; text-decoration: none; color: var(--wine);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.anchor-nav a:hover { border-color: var(--magenta); color: var(--magenta); }

.client-groups { display: grid; gap: clamp(3rem, 7vw, 5rem); padding-block: clamp(2.5rem, 6vw, 4rem); }
.client-group { scroll-margin-top: 6rem; }
.client-group__head { border-top: 2px solid var(--wine); padding-top: 1.2rem; }
.client-group__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); line-height: 1.2; color: var(--wine);
}
.client-group__lede {
  margin-top: 0.6rem; max-width: 56ch; font-size: 0.97rem;
  color: color-mix(in srgb, var(--ink) 80%, var(--paper));
}
.client-logos {
  margin-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: clamp(0.8rem, 2vw, 1.2rem);
}
.client-logos .client-tile { min-width: 10rem; height: 4.8rem; }
.client-logos .client-tile--logo { min-width: 0; }

/* Parede de logomarcas da landing ----------
   Uma única altura para todas as artes achata as marcas quadradas: com 2,9rem de
   altura a Amaggi ocupa 192px de largura e a Silhueta, 46px. As classes abaixo
   (atribuídas no build pela proporção do arquivo) devolvem área às artes mais
   fechadas, para que nenhuma marca suma ao lado das horizontais. */
.client-logos--wall { align-items: stretch; }
.client-logos--wall .client-tile { height: 5.6rem; }
.client-logos--wall .client-tile--mid img { height: 3.3rem; max-width: 13rem; }
.client-logos--wall .client-tile--tall img { height: 3.8rem; max-width: 11rem; }
.client-logos--wall .client-tile--sq img { height: 4.3rem; max-width: 9rem; }

/* ---------- Cases audiovisuais ---------- */
.case-grid {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
.case {
  padding: clamp(1.6rem, 3.5vw, 2.2rem);
  border: 1px solid color-mix(in srgb, var(--paper) 26%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
}
.case__tag {
  font-family: var(--font-display); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--amber);
}
.case__title {
  margin-top: 0.7rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.35rem; line-height: 1.25; color: var(--paper);
}
.case__desc {
  margin-top: 0.8rem; font-size: 0.96rem; max-width: 46ch;
  color: color-mix(in srgb, var(--paper) 84%, var(--petrol));
}

/* ---------- Grade completa de clientes ---------- */
.clients-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  /* auto-fit evita células vazias quando o grupo tem menos itens que colunas */
  display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1px;
  background: color-mix(in srgb, var(--wine) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--wine) 14%, transparent);
  border-radius: 1rem 1rem 1rem 0; overflow: hidden;
}
.client-cell {
  display: grid; gap: 0.3rem; align-content: center;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  background: var(--paper);
}
.client-cell__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.05rem; color: var(--wine); line-height: 1.2;
}
.client-cell__full {
  font-size: 0.82rem; line-height: 1.35;
  color: color-mix(in srgb, var(--ink) 72%, var(--paper));
}

@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee--spaced { display: none; }
  .marquee__track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .marquee__group { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .marquee__group[aria-hidden="true"] { display: none; }
}

/* ---------- Publicidade ---------- */
.publicidade__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 7vw, 6rem); align-items: center;
}
.publicidade__figure { width: min(100%, 24rem); justify-self: end; }
.publicidade__figure img { aspect-ratio: 4 / 5; width: 100%; }
.publicidade__stats {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(2, minmax(0, 14rem));
  gap: 1.4rem 2rem;
}
.publicidade__stats li { display: grid; gap: 0.1rem; }
.publicidade__stats strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); color: var(--magenta); line-height: 1.1;
}
.publicidade__stats span { font-size: 0.85rem; letter-spacing: 0.05em; }
.chip-list { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 34rem; }
.chip-list li {
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.03em;
  padding: 0.42rem 0.95rem;
  border: 1px solid color-mix(in srgb, var(--wine) 30%, transparent);
  border-radius: 999px 999px 999px 0;
  color: color-mix(in srgb, var(--ink) 86%, var(--paper));
}
.publicidade .hero__actions { margin-top: 2.2rem; }

/* ---------- Contato ---------- */
.contato { background: var(--wine); color: var(--paper); }
.contato__inner { text-align: center; display: grid; justify-items: center; }
.contato__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-3); line-height: 1.15; text-transform: uppercase; letter-spacing: 0.04em;
}
.contato__lede { margin-top: 1.2rem; max-width: 44ch; font-weight: 300; color: color-mix(in srgb, var(--paper) 84%, var(--wine)); }
.contato__list {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2.2rem 4rem;
}
.contato__list li { display: grid; gap: 0.3rem; justify-items: center; }
.contato__link {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.35rem); letter-spacing: 0.06em;
  text-decoration: none; color: var(--paper);
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 35%, transparent);
  padding-bottom: 0.25rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contato__link:hover { color: var(--amber); border-color: var(--amber); }
.contato__list span { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 65%, var(--wine)); }

/* ---------- Footer ---------- */
.site-footer { background: var(--petrol); color: var(--paper); padding-block: clamp(3rem, 7vw, 4.5rem) 2.5rem; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
}
.brand--footer { color: var(--paper); }
.site-footer__note {
  margin-top: 1.1rem; max-width: 22ch;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 70%, var(--petrol));
  line-height: 1.9;
}
.site-footer__col h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.site-footer__col ul { display: grid; gap: 0.6rem; }
.site-footer__col a {
  text-decoration: none; font-size: 0.92rem;
  color: color-mix(in srgb, var(--paper) 82%, var(--petrol));
  transition: color 0.2s var(--ease);
}
.site-footer__col a:hover { color: var(--paper); }
.site-footer__mail {
  display: inline-block; margin-top: 1rem;
  font-size: 0.9rem; color: color-mix(in srgb, var(--paper) 84%, var(--petrol));
  border-bottom: 1px solid color-mix(in srgb, var(--amber) 55%, transparent);
  padding-bottom: 0.15rem; text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.site-footer__mail:hover { color: var(--amber); border-color: var(--amber); }
.site-footer__bottom {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.site-footer__legal {
  font-size: 0.8rem; color: color-mix(in srgb, var(--paper) 55%, var(--petrol));
}
.site-footer__top {
  font-size: 0.85rem; text-decoration: none;
  color: color-mix(in srgb, var(--paper) 75%, var(--petrol));
  transition: color 0.2s var(--ease);
}
.site-footer__top:hover { color: var(--amber); }

/* ---------- Assinatura do estúdio ----------
   Herda o tom apagado da barra inferior do rodapé. O monograma respira em
   opacity + scaleY (compostas na GPU, sem custo de layout). Cinzel não tem
   itálico real, então a diferença de voz vem do peso e do espaçamento. */
.upb-sign {
  /* pela linha de base, não pelo centro da caixa: Cinzel e Lato têm métricas
     bem diferentes e centralizar as caixas deixava os dois textos em degrau */
  display: inline-flex; align-items: baseline; gap: 9px;
  text-decoration: none;
  /* mesma família de apagado do © ao lado, um passo mais clara para passar em 4.5:1 */
  color: color-mix(in srgb, var(--paper) 62%, var(--petrol));
  transition: color 0.35s var(--ease);
}
.upb-sign:hover, .upb-sign:focus-visible { color: var(--paper); }

/* o rótulo segue a fórmula dos eyebrows do site: Cinzel, caixa alta, bem espaçado */
.upb-pre {
  font-family: var(--font-display);
  font-size: 0.66rem; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase;
}
/* o nome vai em Lato porque Cinzel não tem itálico real e trata caixa mista como
   versalete — "UPBOOST Studio." saía lido como "UPBOOST STUDIO." */
.upb-name {
  font-family: var(--font-body);
  font-size: 0.97rem; font-weight: 400; font-style: italic; letter-spacing: 0.01em;
  white-space: nowrap;
}

.upb-mark { width: 1.16rem; height: 0.86rem; flex-shrink: 0; fill: currentColor; align-self: baseline; }
.upb-mark path {
  transform-origin: 50% 100%;
  animation: upbBreathe 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.upb-mark path:nth-child(2) { animation-delay: 0.18s; }
.upb-mark path:nth-child(3) { animation-delay: 0.36s; }

@keyframes upbBreathe {
  0%, 100% { opacity: 0.42; transform: scaleY(0.86); }
  45%      { opacity: 1;    transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .upb-mark path { animation: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   COMPONENTES DAS SUBPÁGINAS
   ========================================================================== */

/* ---------- Animação de entrada (uma vez por sessão) ----------
   Só aparece quando o <html> recebe .intro-armed (definido no head da 1ª página
   da sessão). Sem JS, sem movimento aceito → nunca renderiza. */
.intro { display: none; }
.intro-armed .intro {
  display: grid; place-items: center;
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper); color: var(--wine);
  animation: intro-curtain 0.75s var(--ease) 1.45s forwards;
  will-change: transform;
}
.intro__inner { display: grid; justify-items: center; }
.intro__symbol { width: clamp(5rem, 13vw, 7rem); height: auto; }
.intro-armed .intro__symbol {
  opacity: 0; animation: intro-mark 0.9s var(--ease) 0.05s forwards;
}
.intro-done .intro { display: none; }

@keyframes intro-mark {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: none; }
}
@keyframes intro-word {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}
@keyframes intro-curtain { to { transform: translateY(-100%); } }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none !important; }
}

/* ---------- Cards de serviço (home e hub) ---------- */
.services { background: var(--paper-soft); }
.services-grid {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.service-card {
  display: flex; flex-direction: column;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
  text-decoration: none; color: var(--ink);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover {
  border-color: var(--magenta); transform: translateY(-4px);
  box-shadow: 0 20px 44px -30px color-mix(in srgb, var(--wine) 55%, transparent);
}
.service-card__num {
  font-family: var(--font-display); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.3em; color: var(--magenta);
}
.service-card__title {
  margin-top: 0.9rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.25; color: var(--wine);
}
.service-card__lede { margin-top: 0.8rem; font-size: 0.97rem; max-width: 44ch; }
.service-card__items {
  margin-top: 1.2rem; display: grid; gap: 0.45rem;
  font-size: 0.9rem; flex-grow: 1;
  color: color-mix(in srgb, var(--ink) 80%, var(--paper));
}
.service-card__items li { padding-left: 1.1rem; position: relative; }
.service-card__items li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50% 50% 50% 0;
  background: var(--magenta);
}
.service-card__cta {
  margin-top: 1.5rem; font-weight: 700; font-size: 0.9rem; color: var(--wine);
}
.service-card__cta::after { content: " →"; font-weight: 400; }
.service-card:hover .service-card__title, .service-card:hover .service-card__cta { color: var(--magenta); }

/* hero compacto: o nome dela ocupa o lugar do antigo nome do produto */
.hero--compact { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 4rem); }
.hero__title--name { letter-spacing: 0.06em; }

/* ---------- Cards de vídeo ---------- */
.video-grid {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.video-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  border-radius: 1.2rem 1.2rem 1.2rem 0;
  overflow: hidden; background: var(--paper);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.video-card:hover {
  border-color: var(--magenta); transform: translateY(-4px);
  box-shadow: 0 20px 44px -30px color-mix(in srgb, var(--wine) 55%, transparent);
}
.video-card__media {
  position: relative; display: block;
  aspect-ratio: 16 / 9; background: var(--paper-soft);
  overflow: hidden;
}
.video-card__media img { width: 100%; height: 100%; object-fit: cover; }
.video-card__media--plain {
  background: linear-gradient(135deg, var(--petrol), color-mix(in srgb, var(--petrol) 70%, var(--wine)));
}
/* botão de play desenhado em CSS (sem imagem extra) */
.video-card__play {
  position: absolute; inset: 0; margin: auto;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.video-card__play::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 0; height: 0;
  border-left: 0.95rem solid var(--wine);
  border-top: 0.58rem solid transparent;
  border-bottom: 0.58rem solid transparent;
  transform: translateX(0.14rem);
}
.video-card:hover .video-card__play { transform: scale(1.08); background: var(--paper); }
.video-card__body { display: flex; flex-direction: column; gap: 0.45rem; padding: clamp(1.2rem, 2.5vw, 1.6rem); }
.video-card__tag {
  font-family: var(--font-display); font-weight: 400; font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--magenta);
}
.video-card__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.05rem; line-height: 1.35; color: var(--wine);
}
.video-card__desc { font-size: 0.9rem; flex-grow: 1; color: color-mix(in srgb, var(--ink) 82%, var(--paper)); }
.video-card__cta { margin-top: 0.3rem; font-weight: 700; font-size: 0.88rem; color: var(--wine); }
.video-card__cta::after { content: " →"; font-weight: 400; }
.video-card:hover .video-card__title, .video-card:hover .video-card__cta { color: var(--magenta); }

/* case clicável */
.case-grid--single { grid-template-columns: minmax(0, 34rem); }
.case--link { display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; transition: border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.case--link:hover { border-color: var(--amber); transform: translateY(-4px); }
.case__cta { margin-top: 0.6rem; font-weight: 700; font-size: 0.9rem; color: var(--amber); }
.case__cta::after { content: " →"; font-weight: 400; }

/* ---------- Faixa de lançamento ---------- */
.launch-bar { background: var(--wine); color: var(--paper); }
.launch-bar__inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem 1.2rem;
  padding-block: 0.7rem;
  text-decoration: none; color: inherit;
  font-size: 0.88rem;
}
.launch-bar__tag {
  font-family: var(--font-display); font-weight: 400; font-size: 0.68rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--amber);
  border: 1px solid color-mix(in srgb, var(--amber) 60%, transparent);
  border-radius: 999px 999px 999px 0;
  padding: 0.22rem 0.7rem;
  flex: none;
}
.launch-bar__text { flex: 1 1 auto; color: color-mix(in srgb, var(--paper) 88%, var(--wine)); }
.launch-bar__text strong { color: var(--paper); font-weight: 700; }
.launch-bar__cta { font-weight: 700; flex: none; }
.launch-bar__cta::after { content: " →"; font-weight: 400; }
.launch-bar__inner:hover .launch-bar__cta { color: var(--amber); }

/* ---------- Página de lançamento ---------- */
.launch-hero {
  position: relative; overflow: hidden;
  background: var(--petrol); color: var(--paper);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.launch-hero .hero__rings { color: var(--paper); opacity: 0.08; }
.launch-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem); align-items: center;
}
.launch-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-3); line-height: 1.1; color: var(--paper);
}
.launch-hero__subtitle {
  margin-top: 1rem; max-width: 40ch;
  font-size: var(--step-1); font-weight: 300; line-height: 1.45;
  color: color-mix(in srgb, var(--paper) 82%, var(--petrol));
}
.launch-hero__author {
  margin-top: 1.4rem;
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--amber);
}
.launch-hero__invite {
  margin-top: 2rem; max-width: 30ch;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.15rem; line-height: 1.4; color: var(--paper);
}
.launch-hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; }
.launch-hero__figure { justify-self: center; width: min(100%, 17rem); }
.launch-hero__figure img {
  width: 100%; border-radius: 0.4rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.75);
}

.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.event-card {
  display: grid; gap: 0.4rem; align-content: start;
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
  border: 1px solid color-mix(in srgb, var(--wine) 20%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
}
.event-card__label {
  font-family: var(--font-display); font-weight: 400; font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--magenta);
}
.event-card__value {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.25; color: var(--wine);
}
.event-card__note { font-size: 0.9rem; color: color-mix(in srgb, var(--ink) 74%, var(--paper)); }
.event-note {
  margin-top: 1.6rem; font-size: 0.85rem;
  color: color-mix(in srgb, var(--ink) 66%, var(--paper));
}

/* ---------- Coletânea ---------- */
.collection-grid {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.collection-item {
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  border-radius: 1.2rem 1.2rem 1.2rem 0;
  display: grid; gap: 0.5rem; align-content: start;
}
.collection-item h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.02rem; line-height: 1.3; color: var(--wine);
}
.collection-item p { font-size: 0.88rem; color: color-mix(in srgb, var(--ink) 80%, var(--paper)); }
.collection-item--own { background: var(--wine); border-color: var(--wine); }
.collection-item--own h3 { color: var(--paper); }
.collection-item--own p { color: color-mix(in srgb, var(--paper) 82%, var(--wine)); }
.collection-item__tag {
  margin-top: 0.3rem;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber);
}

/* ---------- Trilha de navegação ---------- */
.breadcrumb {
  border-bottom: 1px solid color-mix(in srgb, var(--wine) 12%, transparent);
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--ink) 65%, var(--paper));
}
.breadcrumb .container { padding-block: 0.9rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb [aria-current] { color: var(--wine); }

/* ---------- Cabeçalho de página ---------- */
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 6vw, 4.5rem); }
.page-hero__inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-3); line-height: 1.12; color: var(--wine);
  max-width: 18ch;
}
.page-hero--simple .page-hero__title { max-width: 22ch; }
.page-hero__lede {
  margin-top: 1.5rem; max-width: 46ch;
  font-size: var(--step-1); font-weight: 300; line-height: 1.55;
}
.page-hero__lede--wide { max-width: 58ch; }
.page-hero__figure { justify-self: end; width: min(100%, 22rem); }
.page-hero__figure img { aspect-ratio: 4 / 5; width: 100%; }
.page-hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }

.meta-row {
  margin-top: 2rem; display: flex; flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  font-size: 0.92rem;
}
.meta-row li { max-width: 30ch; }
.meta-row strong {
  display: block;
  font-family: var(--font-display); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 0.2rem;
}

.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* ---------- Faixa de números ---------- */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  padding-block: clamp(1.5rem, 4vw, 2.4rem);
  border-block: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
}
.stat-row li { display: grid; gap: 0.3rem; }
.stat-row strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); line-height: 1; color: var(--magenta);
}
.stat-row span { font-size: 0.88rem; line-height: 1.45; max-width: 24ch; }
.stat-row__note {
  margin-top: 1.2rem; font-size: 0.85rem; max-width: 60ch;
  color: color-mix(in srgb, var(--ink) 70%, var(--paper));
}

/* ---------- Cartões de oferta clicáveis ---------- */
.offer--link { text-decoration: none; color: inherit; }
.offer--link .offer__body { display: block; }
.offer--link .offer__title, .offer--link .offer__meta,
.offer--link .offer__desc, .offer--link .offer__cta { display: block; }
.offer--link .offer__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-1); color: var(--wine); line-height: 1.3;
}
.offer--link .offer__cta {
  margin-top: 1rem; font-weight: 700; font-size: 0.9rem; color: var(--wine);
  transition: color 0.25s var(--ease);
}
.offer--link .offer__cta::after { content: " →"; font-weight: 400; }
.offer--link:hover .offer__title, .offer--link:hover .offer__cta { color: var(--magenta); }
.offer--link:hover .offer__letter { transform: translateX(4px); }
.offer__letter { transition: transform 0.25s var(--ease); }

/* ---------- Tabela comparativa ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-hint { display: none; }
.compare { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 44rem; }
.compare th, .compare td {
  text-align: left; padding: 1rem 1.2rem 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--wine) 16%, transparent);
  vertical-align: top;
}
.compare thead th {
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--magenta);
  border-bottom-color: color-mix(in srgb, var(--wine) 30%, transparent);
}
.compare tbody th { font-weight: 700; }
.compare tbody th a { text-decoration: none; color: var(--wine); }
.compare tbody th a:hover { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Grades de cartões ---------- */
.card-grid { margin-top: clamp(2rem, 5vw, 3rem); display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--spaced { margin-top: clamp(1.2rem, 3vw, 2rem); }

.info-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
  background: var(--paper);
}
.info-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.1rem; color: var(--wine); line-height: 1.3;
  margin-bottom: 0.9rem;
}
.info-card p { font-size: 0.95rem; }
.info-card p + ul, .info-card p + p { margin-top: 0.8rem; }
.info-card ul { display: grid; gap: 0.5rem; font-size: 0.95rem; }
.info-card ul li { padding-left: 1.1rem; position: relative; }
.info-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50% 50% 50% 0;
  background: var(--magenta);
}
.info-card__note { font-size: 0.85rem; color: color-mix(in srgb, var(--ink) 65%, var(--paper)); margin-bottom: 0.9rem; }
.info-card--muted { background: color-mix(in srgb, var(--paper-soft) 70%, var(--paper)); }
.info-card a { color: var(--wine); text-underline-offset: 3px; }
.info-card a:hover { color: var(--magenta); }
.info-card .link-arrow { margin-top: 1rem; text-decoration: none; }

.link-card {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
  background: var(--paper);
  text-decoration: none; color: var(--ink);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.link-card:hover {
  border-color: var(--magenta); transform: translateY(-4px);
  box-shadow: 0 18px 40px -28px color-mix(in srgb, var(--wine) 45%, transparent);
}
.link-card__source {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 82%, var(--paper));
}
.link-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.1rem; color: var(--wine); line-height: 1.35;
}
.link-card p { font-size: 0.94rem; flex-grow: 1; }
.link-card__cta { font-weight: 700; font-size: 0.88rem; color: var(--wine); }
.link-card__cta::after { content: " →"; font-weight: 400; }
.link-card:hover .link-card__cta, .link-card:hover h3 { color: var(--magenta); }

/* ---------- Linha do tempo ---------- */
.timeline-section { background: var(--paper-soft); }
.timeline {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.timeline__item {
  display: grid; grid-template-columns: minmax(6rem, 9rem) 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: clamp(1.6rem, 3.5vw, 2.4rem);
  border-bottom: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.timeline__year {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.1rem; letter-spacing: 0.1em; color: var(--magenta);
}
.timeline__item--highlight { background: color-mix(in srgb, var(--paper) 55%, transparent); }
.timeline__item--highlight .timeline__year { color: var(--wine); font-weight: 500; }
.timeline__body h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.2rem; color: var(--wine); line-height: 1.3;
}
.timeline__body p { margin-top: 0.6rem; max-width: 62ch; font-size: 0.97rem; }
.timeline__body em { font-style: italic; }

/* ---------- Passos numerados ---------- */
.steps, .numbered-list {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.steps__item, .numbered-list__item {
  display: grid; grid-template-columns: minmax(3.5rem, 6rem) 1fr;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding-block: clamp(1.4rem, 3vw, 2.1rem);
  border-bottom: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.steps__num, .numbered-list__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1; color: var(--magenta);
}
.steps__item h3, .numbered-list__item h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.15rem; color: var(--wine); line-height: 1.3;
}
.steps__item p, .numbered-list__item p { margin-top: 0.55rem; max-width: 62ch; font-size: 0.97rem; }

/* ---------- Temas de palestra ---------- */
.theme-grid {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(2rem, 5vw, 4rem);
}
.theme {
  padding-block: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
}
.theme__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.18rem; color: var(--wine); line-height: 1.3;
  margin-bottom: 0.6rem;
}
.theme p { font-size: 0.96rem; max-width: 46ch; }
.theme em { font-style: italic; }

/* ---------- Prática (media training) ---------- */
.practice-grid {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(2rem, 5vw, 4rem);
}
.practice {
  padding-block: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid color-mix(in srgb, var(--paper) 24%, transparent);
}
.practice h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.15rem; color: var(--paper); line-height: 1.3;
  margin-bottom: 0.55rem;
}
.practice p { font-size: 0.96rem; max-width: 46ch; color: color-mix(in srgb, var(--paper) 84%, var(--petrol)); }

/* ---------- Detalhe de livro ---------- */
.book-detail__inner {
  display: grid; grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.book-detail__inner--reverse .book-detail__cover { order: 2; }
.book-detail--dark { background: var(--petrol); color: var(--paper); }
.book-detail__cover {
  aspect-ratio: 3 / 4; border-radius: 18% 18% 18% 0; overflow: hidden;
  width: min(100%, 21rem);
}
.book-detail__cover--tipografica {
  display: grid; place-content: center; gap: 1rem; text-align: center;
  background: var(--wine); color: var(--paper); padding: 2rem;
}
.book-detail__cover--alt { background: color-mix(in srgb, var(--wine) 70%, var(--petrol)); }
.book-detail__cover--photo { aspect-ratio: auto; border-radius: 0; width: 100%; }
.book-detail__cover--photo img { width: 100%; border-radius: 0.6rem; }
/* capa real: precisa vir DEPOIS da regra base para vencer a largura de 21rem */
.book-detail__cover--real {
  aspect-ratio: auto; border-radius: 0; overflow: visible;
  background: none; width: min(100%, 17rem);
}
.book-detail__cover--real img {
  width: 100%; height: auto;
  border-radius: 0.35rem;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.55);
}
.book-detail__subtitle {
  margin-top: 0.9rem; max-width: 44ch;
  font-size: var(--step-1); font-weight: 300; line-height: 1.45;
  color: inherit; opacity: 0.85;
}
.fact-list { margin-top: 1.8rem; display: grid; gap: 0.8rem; max-width: 52ch; }
.fact-list li { font-size: 0.92rem; }
.fact-list strong {
  display: block;
  font-family: var(--font-display); font-weight: 400; font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 0.15rem;
}
.book-detail__copy .link-arrow { margin-top: 1.8rem; }
.book-detail__launch {
  margin-top: 1.6rem; padding: 1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--amber) 45%, transparent);
  border-radius: 1rem 1rem 1rem 0;
  font-size: 0.92rem; max-width: 44ch;
}
.book-detail__launch span {
  display: block;
  font-family: var(--font-display); font-weight: 400; font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.3rem;
}
.book-detail__launch a { display: inline-block; margin-top: 0.5rem; font-weight: 700; color: var(--amber); text-decoration: none; }
.book-detail__launch a:hover { text-decoration: underline; text-underline-offset: 3px; }
.parts { margin-top: 1.8rem; display: grid; gap: 1.1rem; max-width: 62ch; }
.parts li {
  padding-left: 1.2rem; border-left: 2px solid color-mix(in srgb, var(--magenta) 55%, transparent);
  font-size: 0.95rem; line-height: 1.6;
}
.parts span {
  display: block;
  font-family: var(--font-display); font-weight: 400; font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.25rem;
}
.parts em { font-style: italic; }

.livro-destaque__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem); align-items: center;
}
.livro-destaque__figure img { border-radius: 0.6rem; width: 100%; }
.livro-destaque .link-arrow { margin-top: 1.8rem; }

/* ---------- Citação em faixa ---------- */
.quote-band { background: var(--paper-soft); }
.quote-band__quote { max-width: 44ch; margin-inline: auto; text-align: center; }
.quote-band__quote p {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); line-height: 1.3; color: var(--wine);
}
.quote-band__quote cite {
  display: block; margin-top: 1.4rem; font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 80%, var(--paper-soft));
}
.quote-band__quote em { font-style: italic; letter-spacing: normal; }

/* ---------- Canais de contato ---------- */
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.channel {
  display: grid; gap: 0.5rem; align-content: start;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border: 1px solid color-mix(in srgb, var(--wine) 18%, transparent);
  border-radius: 1.4rem 1.4rem 1.4rem 0;
  text-decoration: none; color: var(--ink);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.channel:hover { border-color: var(--magenta); transform: translateY(-4px); }
.channel__label {
  font-family: var(--font-display); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--magenta);
}
.channel__value {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--wine); line-height: 1.3;
  word-break: break-word;
}
.channel__note { font-size: 0.88rem; color: color-mix(in srgb, var(--ink) 72%, var(--paper)); }

/* ---------- Formulário de contato ---------- */
.contato-grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.contact-form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.45rem; }
.field--split { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field--split > div { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--font-display); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine);
}
.field label span { text-transform: none; letter-spacing: 0; color: color-mix(in srgb, var(--ink) 55%, var(--paper)); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid color-mix(in srgb, var(--wine) 22%, transparent);
  border-radius: 0.7rem 0.7rem 0.7rem 0; padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--magenta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--magenta) 16%, transparent);
}
.contact-form .button { justify-self: start; border: none; cursor: pointer; }
.contact-form__note {
  font-size: 0.85rem; line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 72%, var(--paper));
}
.contact-form__note a { color: var(--wine); }
.contato-aside { display: grid; gap: 1rem; align-content: start; }
.contato-aside .channel { min-height: 0; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--wine); color: var(--paper); }
.cta-final__inner { text-align: center; display: grid; justify-items: center; }
.cta-final__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-3); line-height: 1.15; max-width: 20ch;
}
.cta-final__lede {
  margin-top: 1.2rem; max-width: 46ch; font-weight: 300;
  color: color-mix(in srgb, var(--paper) 84%, var(--wine));
}
.cta-final__actions {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 1.2rem 2rem;
}
.button--light { background: var(--paper); color: var(--wine); border: 1px solid var(--paper); }
.button--light:hover { background: var(--amber); border-color: var(--amber); color: var(--wine); }

/* ---------- Ajustes de seções compartilhadas ---------- */
.destaque__inner--reverse .destaque__figure { order: -1; }
.destaque__links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2rem; }
.destaque__caption {
  margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 65%, var(--petrol));
}
.coluna__grid--full { grid-template-columns: repeat(3, 1fr); }

/* ---------- Revelação ao rolar ----------
   O estado oculto só é aplicado quando há JavaScript (classe `js` no <html>),
   para que o conteúdo continue visível se o script não carregar. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
/* Navegação vira menu a partir de 78rem — são 8 destinos + botão */
@media (max-width: 78rem) {
  .site-nav__toggle {
    display: grid; place-items: center;
    width: 2.75rem; height: 2.75rem;
    background: none; border: 1px solid color-mix(in srgb, var(--wine) 30%, transparent);
    border-radius: 999px 999px 999px 0;
    color: var(--wine); cursor: pointer;
  }
  .site-nav__toggle-bar,
  .site-nav__toggle-bar::before,
  .site-nav__toggle-bar::after {
    content: ""; display: block; width: 1.1rem; height: 2px;
    background: currentColor; position: relative;
    transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
  }
  .site-nav__toggle-bar::before { position: absolute; top: -6px; }
  .site-nav__toggle-bar::after { position: absolute; top: 6px; }
  .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar { background: transparent; }
  .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar::before { transform: translateY(6px) rotate(45deg); }
  .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }

  .site-nav__list {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start;
    gap: 0.2rem;
    background: var(--paper);
    border-bottom: 1px solid color-mix(in srgb, var(--wine) 14%, transparent);
    padding: 1rem var(--gutter) 1.4rem;
    max-height: calc(100dvh - 5rem); overflow-y: auto;
  }
  .site-nav__list.is-open { display: flex; }
  .site-nav__list li { width: 100%; }
  .site-nav__list a:not(.button) { display: block; padding-block: 0.65rem; font-size: 1.05rem; }
  .site-nav__cta-item { margin-top: 0.8rem; }
}

@media (max-width: 60rem) {
  .hero__inner, .sobre__inner, .destaque__inner, .publicidade__inner,
  .page-hero__inner, .book-detail__inner, .livro-destaque__inner,
  .case-feature, .connect__inner, .coluna-strip__inner { grid-template-columns: 1fr; }
  .coluna-strip__cta { justify-self: start; }
  .media-slots { grid-template-columns: repeat(2, 1fr); }
  .video-duo { grid-template-columns: 1fr; max-width: 34rem; }
  .topics { columns: 1; }
  .formacao-box__grid { grid-template-columns: 1fr; }
  .hero__figure, .publicidade__figure, .page-hero__figure { justify-self: start; }
  .destaque__inner--reverse .destaque__figure,
  .book-detail__inner--reverse .book-detail__cover { order: 0; }
  .livros__grid { grid-template-columns: 1fr 1fr; }
  .coluna__grid, .coluna__grid--full { grid-template-columns: 1fr; max-width: 34rem; }
  .credentials__list { justify-content: flex-start; }
  .card-grid--3, .channel-grid, .event-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .theme-grid, .practice-grid { grid-template-columns: 1fr; }
  .launch-hero__inner { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; }
  .services-grid, .case-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 44rem) {
  .card-grid--2, .card-grid--3, .channel-grid, .event-grid,
  .collection-grid, .contato-grid, .field--split, .video-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .launch-bar__inner { font-size: 0.82rem; }
  .launch-bar__cta { display: none; }
  .stat-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .social-row { grid-template-columns: 1fr; }
  .books-gallery { grid-template-columns: minmax(0, 15rem); }
  .timeline__item, .steps__item, .numbered-list__item { grid-template-columns: 1fr; gap: 0.5rem; }
  .format__head { flex-direction: column; gap: 0.5rem; }
  .page-hero__figure { width: 100%; }
  .livros__grid { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; gap: 0.8rem; }
  .imprensa__item { grid-template-columns: 1fr; gap: 0.4rem; }
  .publicidade__stats { grid-template-columns: 1fr 1fr; }
  .compare { min-width: 34rem; font-size: 0.88rem; }
  .table-hint {
    display: block; margin-bottom: 0.9rem;
    font-size: 0.78rem; letter-spacing: 0.06em;
    color: var(--magenta);
  }
  .table-scroll {
    /* sombra à direita enquanto houver conteúdo escondido */
    background:
      linear-gradient(to right, var(--paper) 30%, transparent) left / 2rem 100% no-repeat,
      linear-gradient(to left, var(--paper) 30%, transparent) right / 2rem 100% no-repeat,
      radial-gradient(farthest-side at 0 50%, rgba(89, 34, 49, 0.18), transparent) left / 0.7rem 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(89, 34, 49, 0.18), transparent) right / 0.7rem 100% no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
}

/* ==========================================================================
   ERGONOMIA DE TOQUE
   Em telas de toque, todo link isolado precisa de pelo menos 44px de altura
   (WCAG 2.5.5) e nenhum rótulo abaixo de 12px.
   ========================================================================== */
@media (max-width: 60rem), (pointer: coarse) {
  .link-arrow {
    min-height: 44px;
    align-items: center;
  }
  .breadcrumb .container { gap: 0.35rem; }
  .breadcrumb a, .breadcrumb [aria-current] {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .compare tbody th a,
  .book-detail__launch a,
  .info-card p a,
  .imprensa__item p a {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .site-footer__col a {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  /* logo, e-mail e "voltar ao topo" também precisam de área de toque */
  .brand { min-height: 44px; }
  .site-footer__mail, .site-footer__top {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .social__label,
  .service-card__num,
  .video-card__tag,
  .case__tag,
  .case-player__label,
  .client-cell__full,
  .partner-card__desc { font-size: 0.75rem; }
  .site-footer__col ul { gap: 0.1rem; }
  .launch-bar__inner { min-height: 44px; }

  /* piso de 12px para rótulos (o logotipo segue o manual da marca) */
  .launch-bar__tag,
  .event-card__label,
  .link-card__source,
  .collection-item__tag,
  .coluna-card__date,
  .channel__label,
  .fact-list strong,
  .parts span,
  .meta-row strong,
  .sobre__legend-item strong,
  .book-detail__launch span,
  .destaque__caption,
  .site-footer__note,
  .cta-final .eyebrow,
  .eyebrow { font-size: 0.75rem; }
  .eyebrow { letter-spacing: 0.3em; }
}

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

/* ---------- Formulário de contato: isca e retorno ---------- */
/* Fora da tela, mas não display:none — robô ignora campo escondido dessa forma. */
.campo-isca {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.contact-form__status {
  margin-top: 1rem; padding: 0.85rem 1.1rem;
  border-radius: 0.7rem 0.7rem 0.7rem 0;
  font-size: 0.92rem; font-weight: 700;
}
.contact-form__status[data-tipo="ok"] {
  background: color-mix(in srgb, #40863D 14%, var(--paper));
  color: #2c5f2a;
}
.contact-form__status[data-tipo="erro"] {
  background: color-mix(in srgb, var(--wine) 10%, var(--paper));
  color: var(--wine);
}

/* ---------- Reels verticais nas parcerias ----------
   Três em fileira, não dois: um 9:16 ocupando meia largura ficaria mais alto que
   toda a linha 16:9 acima. Em três colunas a altura fecha próxima da fileira de
   fotos ao lado e a linha não sobra pela metade. */
.reels-row {
  margin-top: clamp(1rem, 2.5vw, 1.6rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 56rem;
}
.reel-embed { margin: 0; }
.reel-embed iframe {
  /* chute inicial: o card do Instagram é mais alto que o vídeo por causa do
     cabeçalho e do rodapé. O main.js troca pela altura real assim que ela chega. */
  width: 100%; aspect-ratio: 9 / 20; height: auto;
  border: 0; display: block;
  border-radius: 1rem 1rem 1rem 0;
  background: var(--paper-soft);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.45);
}
.reel-embed figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 62%, var(--paper));
}

/* link solto dentro do texto do Sobre, com respiro próprio */
.prose__aside { margin-top: -0.2rem; }

/* Precisa vir DEPOIS do bloco base acima, senão a regra de 3 colunas ganha por ordem. */
@media (max-width: 60rem) {
  /* um reel por linha: a 1/3 da largura do celular o vídeo fica ilegível */
  .reels-row { grid-template-columns: 1fr; max-width: 22rem; }
}

/* ---------- Vídeo que não aceita embed (Globoplay) ----------
   Mesma caixa dos vídeos da seção Eventos, mas com capa e play: ao clicar abre
   no Globoplay, porque o X-Frame-Options deles proíbe o player em outro site. */
.video-embed--link { max-width: 34rem; }
.video-embed--link a {
  position: relative; display: block;
  border-radius: 1rem 1rem 1rem 0; overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.45);
}
.video-embed--link img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.video-embed--link a:hover img { transform: scale(1.03); }
.video-embed--link .video-card__play {
  position: absolute; inset: 0; margin: auto;
  pointer-events: none;
}
