/* ============================================================
   pages.css — componentes das seções e páginas novas
   (nota de pacotes no "como ele entrega" + páginas /esxence e /why-brazil)
   Usa só os tokens semânticos já remapeados por .theme-light.
   ============================================================ */

/* ---------- BOTÃO DE IDIOMA (nav) ---------- */
.nav__lang {
  flex: none; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2); border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 7px 13px; margin-left: 4px; line-height: 1; transition: color .2s ease, border-color .2s ease;
}
.nav__lang:hover { color: var(--ink); border-color: var(--gold); }

/* ---------- NOTA DE PACOTES (deliver) ---------- */
.deliver__note { margin-top: 20px; max-width: 52ch; color: var(--ink-2); font-size: var(--fs-body-lg); }

/* ---------- HERO DE PÁGINA (subpáginas) ---------- */
.subhead { position: relative; padding: clamp(116px, 15vh, 172px) 0 clamp(38px, 6vw, 68px); background: var(--bg-3); overflow: hidden; }
.subhead__title { font-family: var(--font-display); font-weight: var(--w-display-medium); font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.03; color: var(--ink); margin: 14px 0 18px; }
.subhead__title em { color: var(--gold); font-style: italic; }
.subhead__lead { max-width: 62ch; color: var(--ink-2); font-size: var(--fs-body-lg); }
.subhead__back { margin-top: 28px; }

/* ---------- BLOCO DE SEÇÃO GENÉRICO ---------- */
.block { padding-block: clamp(46px, 7vw, 86px); }
.block:nth-of-type(even) { background: var(--bg-2); }
.block .section-title { margin: 10px 0 12px; }
.block__lead { max-width: 62ch; color: var(--ink-2); margin-bottom: 32px; font-size: var(--fs-body-lg); }

/* ---------- PLACEHOLDER DE MÍDIA ---------- */
.ph {
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  border-radius: var(--radius); border: 1px dashed var(--line-strong); color: var(--ink-3); overflow: hidden;
  background: repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 12px, var(--surface) 12px, var(--surface) 24px);
  aspect-ratio: 4 / 5;
}
.ph span { font-size: var(--fs-label); text-transform: uppercase; letter-spacing: .18em; padding: 0 14px; }
.ph--land { aspect-ratio: 16 / 9; }
.ph--video { aspect-ratio: 9 / 16; }
.ph--square { aspect-ratio: 1 / 1; }

/* ---------- GALERIA DE FOTOS/VÍDEOS ---------- */
.gallery { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.vidgrid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .vidgrid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- PESSOAS (CEOs / perfumistas) ---------- */
.people { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .people { grid-template-columns: repeat(4, 1fr); } }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; text-align: center; }
.person .ph { aspect-ratio: 1; border-radius: 999px; margin-bottom: 14px; }
.person b { display: block; color: var(--ink); font-size: 1rem; }
.person span { font-size: var(--fs-label); color: var(--ink-3); text-transform: uppercase; letter-spacing: .14em; }

/* ---------- DADOS (Why Brazil) ---------- */
.facts { display: grid; gap: 18px; }
@media (min-width: 760px) { .facts { grid-template-columns: repeat(2, 1fr); } }
.fact {
  background: linear-gradient(165deg, var(--surface-raised), var(--surface-card));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.fact__n { font-family: var(--font-display); font-weight: var(--w-display-medium); font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1; color: var(--gold); }
.fact__t { color: var(--ink-2); }
.fact__t strong { color: var(--ink); font-weight: var(--w-body-semibold); }
.source { margin-top: auto; font-size: var(--fs-label); color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.source a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- NOTA DE PLACEHOLDER ---------- */
.pending-note { margin-top: 26px; font-size: var(--fs-label); color: var(--ink-3); letter-spacing: .04em; }
