/* ==========================================================================
   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) ---------- */
.brand {
  display: inline-flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--wine);
  flex-shrink: 0;               /* o logo nunca encolhe nem é espremido pelo menu */
}
.brand__symbol { width: 2.6rem; height: 2.6rem; flex: none; }
.brand__word { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-body); font-weight: 300;
  font-size: 1.05rem; letter-spacing: 0.38em; text-transform: uppercase;
}
.brand__surname {
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.62em; text-transform: uppercase;
  margin-top: 0.18rem;
}

/* ---------- 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 */
.destaque__figure--retrato { justify-self: center; width: min(100%, 23rem); }
.destaque__figure--retrato img { aspect-ratio: 4 / 5; object-position: 50% 22%; }
.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%); } }

/* ---------- Grade completa de clientes ---------- */
.clients-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid; grid-template-columns: repeat(4, 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__legal {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  font-size: 0.8rem; color: color-mix(in srgb, var(--paper) 55%, var(--petrol));
}

/* ==========================================================================
   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; gap: 1.5rem; }
.intro__symbol { width: clamp(4.5rem, 12vw, 6.5rem); height: auto; }
.intro-armed .intro__ring {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: intro-draw 0.7s var(--ease) forwards;
}
.intro-armed .intro__ring:nth-child(1) { animation-delay: 0.04s; }
.intro-armed .intro__ring:nth-child(2) { animation-delay: 0.14s; }
.intro-armed .intro__ring:nth-child(3) { animation-delay: 0.24s; }
.intro-armed .intro__ring:nth-child(4) { animation-delay: 0.34s; }
.intro-armed .intro__ring:nth-child(5) { animation-delay: 0.44s; }
.intro__word { display: grid; justify-items: center; text-align: center; }
.intro__name {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem); letter-spacing: 0.5em; text-transform: uppercase;
  padding-left: 0.5em;
}
.intro__surname {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(0.78rem, 1.6vw, 1rem); letter-spacing: 0.68em; text-transform: uppercase;
  padding-left: 0.68em; margin-top: 0.5rem;
}
.intro-armed .intro__name { opacity: 0; animation: intro-word 0.6s var(--ease) 0.55s forwards; }
.intro-armed .intro__surname { opacity: 0; animation: intro-word 0.6s var(--ease) 0.72s forwards; }
.intro-done .intro { display: none; }

@keyframes intro-draw { to { stroke-dashoffset: 0; } }
@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; }
}

/* ---------- 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%, 21rem); }
.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; }
.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)); }

/* ---------- 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 { 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); }
}

@media (max-width: 44rem) {
  .card-grid--2, .card-grid--3, .channel-grid, .event-grid,
  .collection-grid { grid-template-columns: 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; }
  .timeline__item, .steps__item, .numbered-list__item { grid-template-columns: 1fr; 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;
  }
  .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; }
}
