/* =========================================================
   Gustavo Coelho — Página institucional
   Paleta: preto, grafite, marrom profundo, areia, dourado envelhecido, branco quente
   ========================================================= */

:root {
  --black: #0b0b0c;
  --graphite: #1b1a19;
  --graphite-soft: #26241f;
  --brown: #3a2a1e;
  --sand: #cdb99a;
  --sand-soft: #e7dcc7;
  --gold: #b08d4f;
  --gold-soft: #cba86a;
  --warm-white: #f6f1e7;
  --ink: #efe9dd;
  --muted: #a99d89;

  --font-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 2px;

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

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; color: var(--warm-white); margin: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Focus & acessibilidade ---------- */
:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.85em 1.4em;
  z-index: 999;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: var(--gutter);
  top: 0.75rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Tipografia editorial ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: "";
  width: 2.2em;
  height: 1px;
  background: var(--gold-soft);
}

h2.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  max-width: 20ch;
}

.section-lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--sand-soft);
  max-width: 62ch;
  margin-top: 1.1em;
}

/* ---------- Header / navegação ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(11,11,12,0.85), transparent);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176,141,79,0.18);
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--warm-white);
}
.site-header__brand strong { color: var(--gold-soft); font-weight: 600; }
.site-header__brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(207,185,138,0.35);
  border-radius: 50%;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin-inline: auto;
  background: var(--sand-soft);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(11,11,12,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease);
  z-index: 105;
}
.site-nav.is-open { opacity: 1; visibility: visible; }
.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
.site-nav__list a {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  text-decoration: none;
  color: var(--warm-white);
}
.site-nav__list a:hover,
.site-nav__list a:focus-visible { color: var(--gold-soft); }
.site-nav__whatsapp {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem !important;
  color: var(--gold-soft) !important;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    background: none;
    opacity: 1;
    visibility: visible;
    inset: auto;
  }
  .site-nav__list {
    flex-direction: row;
    gap: 2.1rem;
  }
  .site-nav__list a { font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.03em; }
  .site-nav__whatsapp {
    border: 1px solid var(--gold-soft);
    padding: 0.55em 1.2em;
    border-radius: 999px;
  }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost {
  border-color: rgba(246,241,231,0.4);
  color: var(--warm-white);
}
.btn--ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--graphite) 0%, var(--black) 100%);
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -3%;
  background: url("../../WhatsApp Image 2026-09-03 at 21.20.04 (1).jpeg") center 28% / cover no-repeat;
  filter: blur(10px);
  opacity: 0.38;
  transform: scale(1.04);
}
/* Vídeo-fonte da hero é um compilado de palco (16:9) com vários cortes de
   câmera: Gustavo caminha de um lado a outro do quadro e há um trecho que
   corta para a plateia. Em telas estreitas e altas (celular/tablet em pé),
   "cover" mostraria só uma fatia vertical estreita do vídeo, e em algum
   momento do loop essa fatia ficaria sem ele; por isso o vídeo inteiro é
   mostrado (object-fit: contain) até 899px, com fundo escuro preenchendo as
   sobras. A partir de 900px a tela já é larga o bastante para o "cover"
   manter a maior parte dele em quadro na maior parte do tempo. */
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 42%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,11,12,0.96) 0%, rgba(11,11,12,0.55) 45%, rgba(11,11,12,0.35) 100%),
    linear-gradient(to right, rgba(11,11,12,0.55), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(6rem, 18vh, 9rem) clamp(3rem, 8vh, 5rem);
  width: 100%;
}
.hero__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.98;
  color: var(--warm-white);
}
.hero__role {
  margin-top: 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--sand-soft);
  max-width: 34ch;
}
.hero__lede {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--sand-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

/* ---------- Seções genéricas ---------- */
section { position: relative; }
.section {
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
}
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--graphite { background: var(--graphite); }
.section--brown {
  background: linear-gradient(160deg, var(--brown) 0%, #241a13 100%);
}
.section-head { max-width: 46rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin-block: 2.4rem;
}

/* ---------- Manifesto ---------- */
.manifesto {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.2;
  color: var(--warm-white);
  font-style: italic;
}
.manifesto__figure img {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}
.manifesto__figure { display: flex; justify-content: center; }
@media (min-width: 860px) {
  .manifesto { grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); }
  .manifesto__figure { order: 2; }
}

/* ---------- Minibiografia ---------- */
.bio {
  display: grid;
  gap: 3rem;
}
.bio__figure img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}
.bio__figure { display: flex; justify-content: center; }
.bio__text p { color: var(--sand-soft); }
.bio__text p:first-of-type {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--warm-white);
  line-height: 1.5;
}
@media (min-width: 860px) {
  .bio { grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); align-items: center; }
}

/* ---------- Timeline / trajetória ---------- */
.timeline {
  margin-top: 2.2rem;
  display: grid;
  gap: 2.6rem;
}
.timeline__item {
  display: grid;
  gap: 1.4rem;
  border-top: 1px solid rgba(207,185,138,0.2);
  padding-top: 1.5rem;
}
.timeline__num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--warm-white);
  margin-top: 0.3rem;
}
.timeline__text { color: var(--sand-soft); margin-top: 0.6rem; }
.timeline__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: clamp(220px, 24vw, 320px);
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(207,185,138,0.16);
}
@media (min-width: 760px) {
  .timeline__item {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.2rem);
  }
  .timeline__item:nth-child(even) .timeline__figure { order: -1; }
}

/* ---------- Governança 4D ---------- */
.dims {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.dim-card {
  background: rgba(246,241,231,0.03);
  border: 1px solid rgba(207,185,138,0.22);
  padding: 2.2rem 1.8rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.dim-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.dim-card__icon { width: 34px; height: 34px; color: var(--gold-soft); margin-bottom: 1.3rem; }
.dim-card__icon svg { width: 100%; height: 100%; }
.dim-card__num { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted); }
.dim-card h3 { font-size: 1.3rem; margin-top: 0.4rem; }
.dim-card p { color: var(--sand-soft); margin-top: 0.8rem; font-size: 0.95rem; }

/* ---------- Método ---------- */
.method-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.2rem;
}
@media (min-width: 760px) {
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(3.5rem, 7vw, 6rem); }
}
.method-col h3 {
  font-size: 1.15rem;
  color: var(--gold-soft);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.method-col ul { margin-top: 1rem; display: grid; gap: 0.9rem; }
.method-col li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--sand-soft);
}
.method-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.method-col li strong { color: var(--warm-white); display: block; font-weight: 600; }

.method-figures {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
  max-width: 900px;
}
.method-figures figure {
  background: var(--graphite-soft);
  border: 1px solid rgba(207,185,138,0.16);
  padding: 0.6rem 0.6rem 0.9rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.method-figures img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: clamp(220px, 28vw, 330px);
  object-fit: cover;
  background: var(--black);
  display: block;
}
.method-figures figcaption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
}
@media (hover: hover) {
  .method-figures figure:hover { transform: translateY(-4px); border-color: var(--gold); }
}

/* ---------- Pergunta central ---------- */
.central-question {
  position: relative;
  min-height: clamp(360px, 52vh, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.central-question img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(18%) saturate(0.88);
}
.central-question::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.62), rgba(11,11,12,0.18) 50%, rgba(11,11,12,0.62)),
    linear-gradient(180deg, rgba(11,11,12,0.6), rgba(11,11,12,0.28) 48%, rgba(11,11,12,0.72));
}
.central-question__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.4rem, 5vw, 4rem);
  width: min(calc(100% - 2rem), 54rem);
  max-width: 54rem;
  background: rgba(11,11,12,0.56);
  border: 1px solid rgba(203,168,106,0.34);
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  backdrop-filter: blur(7px);
}
.central-question__inner::before,
.central-question__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(22px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.central-question__inner::before { right: 100%; }
.central-question__inner::after { left: 100%; transform: rotate(180deg); }
.central-question__mark {
  display: block;
  height: 2.4rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.8;
}
.central-question blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.7rem, 4.6vw, 3.1rem);
  line-height: 1.25;
  color: var(--warm-white);
  text-shadow: 0 3px 20px rgba(0,0,0,0.72);
}
.central-question cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}

/* ---------- Atuação ---------- */
.actuation-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.actuation-item {
  border-left: 2px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1.3rem;
}
.actuation-item h3 { font-size: 1.15rem; color: var(--warm-white); }
.actuation-item p { color: var(--sand-soft); margin-top: 0.5rem; font-size: 0.94rem; }

.actuation-figures {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  max-width: 1000px;
}
.actuation-figures figure {
  background: var(--graphite-soft);
  border: 1px solid rgba(207,185,138,0.16);
  padding: 0.6rem 0.6rem 0.9rem;
  margin: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.actuation-figures img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: clamp(210px, 22vw, 255px);
  object-fit: cover;
  display: block;
}
.actuation-figures figcaption { margin-top: 0.6rem; font-size: 0.82rem; color: var(--muted); }
@media (hover: hover) {
  .actuation-figures figure:hover { transform: translateY(-4px); border-color: var(--gold); }
}

/* ---------- Convergência ---------- */
.convergence {
  display: grid;
  gap: 3rem;
}
.convergence__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.convergence__group img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-top: 1.2rem;
}
@media (min-width: 900px) {
  .convergence { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

/* ---------- Galeria ---------- */
.gallery {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}
.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.gallery__item {
  flex: 0 0 clamp(155px, 18vw, 215px);
  margin: 0;
  background: var(--graphite-soft);
  border: 1px solid rgba(207,185,138,0.14);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) {
  .gallery__item:hover { transform: translateY(-4px); border-color: var(--gold); }
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  background: var(--black);
}
.gallery__item figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Vídeos ---------- */
.video-block { margin-top: 3rem; }
.video-block + .video-block { margin-top: 3.5rem; }
.video-block h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.video-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold) transparent;
}
.video-track::-webkit-scrollbar { height: 6px; }
.video-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Shorts: carrossel no celular, grade com vários cards lado a lado a
   partir do tablet — sempre em 9:16, sem esticar nem cortar a pessoa. */
.shorts-grid {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold) transparent;
}
.shorts-grid::-webkit-scrollbar { height: 6px; }
.shorts-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.shorts-grid .video-card--v { width: min(58vw, 240px); }

@media (min-width: 620px) {
  .shorts-grid .video-card--v { width: clamp(190px, 20vw, 235px); }
}

.auto-rail [data-loop-clone="true"] {
  pointer-events: none;
}
.auto-rail { scroll-snap-type: none; }
.auto-rail > * { scroll-snap-align: none; }

.video-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--black);
  border: 1px solid rgba(207,185,138,0.2);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) {
  .video-card:hover { transform: translateY(-4px); border-color: var(--gold); }
}
.video-card--h { width: min(78vw, 420px); }
.video-card--v { width: min(52vw, 230px); }
.video-card video {
  width: 100%;
  display: block;
  background: #000;
}
.video-card--h video { aspect-ratio: 16 / 9; object-fit: contain; }
.video-card--v video { aspect-ratio: 9 / 16; object-fit: cover; }

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,12,0.28);
  border: none;
  cursor: pointer;
  color: var(--warm-white);
}
.video-card__play svg { width: 46px; height: 46px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.video-card__play[data-playing="true"] { background: transparent; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.video-card__play:not([data-playing="true"]):hover { background: rgba(11,11,12,0.45); }

/* ---------- Citações ---------- */
.quotes {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}
.quote-card {
  border-top: 1px solid rgba(207,185,138,0.25);
  padding-top: 1.6rem;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--warm-white);
  font-style: italic;
}
.quote-card cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA final ---------- */
.cta-final {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
.cta-final__figure img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}
.cta-final__figure { display: flex; justify-content: center; }
@media (min-width: 900px) {
  .cta-final { grid-template-columns: 1.1fr 0.9fr; }
  .cta-final__figure { order: 2; }
}

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(207,185,138,0.18);
  padding-block: 3.5rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--warm-white);
}
.footer-brand img { width: 58px; height: 58px; object-fit: contain; }

@media (max-width: 520px) {
  .site-header__brand img { width: 40px; height: 40px; }
  .site-header__brand span { font-size: 1rem; }
  .central-question__inner::before,
  .central-question__inner::after { display: none; }
}
.footer-tagline { color: var(--muted); margin-top: 0.6rem; font-size: 0.9rem; max-width: 40ch; }
.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { text-decoration: none; color: var(--sand-soft); font-size: 0.92rem; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(207,185,138,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom a { text-decoration: underline; color: var(--muted); }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
