/* ============================================================
   PRATTES DESIGN — CSS compartilhado de Portfólio e Páginas de Case
   Reaproveita a identidade visual do site principal (index.html).
   Usado por: trabalhos.html + case-*.html
   ============================================================ */

:root {
  --pd-yellow: #FFDA00;
  --pd-yellow-soft: #FFE45A;
  --pd-black: #111111;
  --pd-black-deep: #0a0a0a;
  --pd-graphite: #1a1a1a;
  --pd-graphite-2: #242424;
  --pd-line: #2a2a2a;
  --pd-text: #ffffff;
  --pd-text-dim: #b8b8b8;
  --pd-text-mute: #7a7a7a;

  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Comfortaa', 'Quicksand', system-ui, sans-serif;

  --container: 1280px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pesos da fonte de display (Sora) — aplicados em todas as larguras.
   A Sora precisa do peso explícito para ter a mesma presença da antiga LEMON MILK/Bebas. */
.display, .h-xl, .h-lg, .h-md, .h-sm, h1, h2, h3 { font-weight: 800 !important; }
.btn, .badge, .eyebrow { font-weight: 700 !important; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--pd-black);
  color: var(--pd-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; -webkit-user-drag: none; user-select: none; -webkit-touch-callout: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
p, li { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Tipografia ---------- */
.display { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: 0.005em; text-transform: uppercase; }
.h-xl { font-size: clamp(40px, 6.5vw, 92px); line-height: 1.02; }
.h-lg { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.12; }
.h-md { font-size: clamp(26px, 3vw, 42px); line-height: 1.16; }
.h-sm { font-size: clamp(20px, 1.6vw, 28px); line-height: 1.25; }
.lead { font-size: clamp(15px, 1.1vw, 18px); color: var(--pd-text-dim); max-width: 60ch; line-height: 1.65; }
.hl { color: var(--pd-yellow); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.28em;
  color: var(--pd-yellow); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--pd-yellow); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 999px; transition: all 280ms var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--pd-yellow); color: var(--pd-black); }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 218, 0, 0.35); }
.btn-ghost { background: transparent; color: var(--pd-text); border: 1px solid rgba(255, 255, 255, 0.18); }
.btn-ghost:hover { border-color: var(--pd-yellow); color: var(--pd-yellow); }
.btn-arrow::after { content: "→"; transition: transform 280ms var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pd-line); transition: padding 240ms var(--ease);
}
.header.scrolled { padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: block; height: 52px; width: auto; flex-shrink: 0; }
.nav-logo img, .nav-logo svg { display: block; height: 100%; width: auto; }
.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-menu a { padding: 10px 16px; font-size: 14px; font-weight: 400; color: var(--pd-text); transition: color 200ms var(--ease), font-weight 200ms var(--ease); position: relative; }
.nav-menu a::after { content: ""; position: absolute; bottom: 4px; left: 16px; right: 16px; height: 2px; background: var(--pd-yellow); transform: scaleX(0); transform-origin: center; transition: transform 240ms var(--ease); }
.nav-menu a:hover { font-weight: 700; }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--pd-yellow); }

.pd-nav-toggle-input { display: none; }
.pd-nav-overlay { display: none; }
.pd-hamburger { display: none; width: 36px; height: 30px; flex-direction: column; justify-content: space-between; cursor: pointer; z-index: 100; padding: 4px; box-sizing: border-box; }
.pd-hamburger span { display: block; width: 100%; height: 3px; background: var(--pd-yellow); border-radius: 2px; transition: transform 280ms ease, opacity 280ms ease; transform-origin: center; }
.pd-nav-toggle-input:checked ~ header .pd-hamburger span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.pd-nav-toggle-input:checked ~ header .pd-hamburger span:nth-child(2) { opacity: 0; }
.pd-nav-toggle-input:checked ~ header .pd-hamburger span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

@media (max-width: 960px) {
  .pd-hamburger { display: flex; }
  .pd-nav-overlay { display: block; }
  .nav-menu {
    display: flex !important; flex-direction: column; position: fixed; top: 0; right: 0;
    width: min(82vw, 340px); height: 100vh; background: var(--pd-black-deep);
    border-left: 1px solid var(--pd-line); padding: 104px 0 32px; gap: 0; align-items: stretch;
    transform: translateX(100%); transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90; overflow-y: auto; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  }
  .nav-menu a { font-size: 23px; font-weight: 600; width: 100%; padding: 24px 34px; color: var(--pd-text); border-bottom: 1px solid rgba(255, 255, 255, 0.07); display: flex; align-items: center; gap: 12px; }
  .nav-menu a:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .nav-menu a.active { color: var(--pd-yellow); }
  .nav-menu a::after { display: none; }
  .nav-cta { display: none !important; }
  .pd-nav-toggle-input:checked ~ header .nav-menu, .pd-nav-toggle-input:checked ~ .nav-menu { transform: translateX(0); }
  .pd-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 80; opacity: 0; pointer-events: none; transition: opacity 320ms ease; }
  .pd-nav-toggle-input:checked ~ .pd-nav-overlay { opacity: 1; pointer-events: auto; }
}
@media (max-width: 700px) { .nav-logo { height: 42px !important; } }

/* ---------- Grid pattern de fundo ---------- */
.pd-grid-bg { position: relative; isolation: isolate; }
.pd-grid-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 110px 110px; background-position: -1px -1px; pointer-events: none; z-index: 0;
}
.pd-grid-bg > * { position: relative; z-index: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 750ms var(--ease), transform 750ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   PORTFÓLIO — índice (trabalhos.html)
   ============================================================ */
.pf-hero {
  padding: 180px 0 60px; background: var(--pd-black); text-align: center;
}
.pf-hero .eyebrow { justify-content: center; margin-bottom: 20px; }
.pf-hero .eyebrow::before { display: none; }
.pf-hero h1 { margin-bottom: 22px; }
.pf-hero p { max-width: 620px; margin: 0 auto; color: var(--pd-text-dim); }

/* Filtros */
.pf-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 40px 0 0; }
.pf-filter {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--pd-line);
  background: transparent; color: var(--pd-text-dim); font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; transition: all 220ms var(--ease);
}
.pf-filter:hover { border-color: var(--pd-yellow); color: var(--pd-text); }
.pf-filter.active { background: var(--pd-yellow); color: var(--pd-black); border-color: var(--pd-yellow); }

/* Grid de projetos */
.pf-section { padding: 60px 0 120px; background: var(--pd-black); }
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 800px) { .pf-grid { grid-template-columns: 1fr; gap: 20px; } }

.pf-card {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--pd-graphite); border: 1px solid var(--pd-line);
  aspect-ratio: 16 / 11; transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  isolation: isolate;
}
.pf-card.is-hidden { display: none; }
.pf-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 218, 0, 0.25); }
.pf-card-cover { position: absolute; inset: 0; overflow: hidden; }
.pf-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.pf-card:hover .pf-card-cover img { transform: scale(1.06); }
.pf-card-overlay {
  position: absolute; inset: 0; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 32%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.pf-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pf-card-tag { padding: 5px 12px; background: rgba(255,218,0,0.12); border: 1px solid rgba(255,218,0,0.4); border-radius: 999px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pd-yellow); }
.pf-card-client { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pd-text-mute); margin-bottom: 6px; }
.pf-card h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; margin-bottom: 8px; }
.pf-card-arrow { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pd-yellow); }
.pf-card-arrow::after { content: "→"; transition: transform 280ms var(--ease); }
.pf-card:hover .pf-card-arrow::after { transform: translateX(5px); }
@media (max-width: 700px) { .pf-card-overlay { padding: 22px; } }
@media (max-width: 600px) { .pf-card h3 { font-size: 19px; line-height: 1.18; } }

/* ============================================================
   PÁGINA DE CASE (case-*.html)
   ============================================================ */
.case-hero { padding: 160px 0 50px; background: var(--pd-black); }
.case-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pd-text-mute); margin-bottom: 36px; transition: color 200ms var(--ease); }
.case-back::before { content: "←"; transition: transform 240ms var(--ease); }
.case-back:hover { color: var(--pd-yellow); }
.case-back:hover::before { transform: translateX(-4px); }
.case-hero-client { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pd-yellow); margin-bottom: 16px; }
.case-hero h1 { margin-bottom: 28px; max-width: 16ch; }
.case-meta { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--pd-line); }
.case-meta-item { display: flex; flex-direction: column; gap: 6px; }
.case-meta-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pd-text-mute); }
.case-meta-value { font-size: 15px; color: var(--pd-text); }

/* Imagem destaque full-width */
.case-feature { padding: 0; }
.case-feature-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 700px) { .case-feature-img { border-radius: 14px; aspect-ratio: 4 / 3; } }
/* Destaque em proporção natural (sem corte) */
.case-feature-img.is-natural { aspect-ratio: auto; height: auto; object-fit: contain; }
@media (max-width: 700px) { .case-feature-img.is-natural { aspect-ratio: auto; } }
/* Destaque em retrato — centralizado e com altura limitada */
.case-feature-img.is-portrait { aspect-ratio: auto; width: auto; height: auto; max-height: 80vh; max-width: 100%; margin: 0 auto; display: block; object-fit: contain; }
@media (max-width: 700px) { .case-feature-img.is-portrait { max-height: none; width: 100%; } }

/* Vídeos verticais — Shorts/Reels (case MYNE) */
.case-videos { padding: 10px 0 70px; background: var(--pd-black); }
.case-videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.case-video { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--pd-line); background: var(--pd-graphite); }
.case-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.case-video video, .case-video-player { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.lite-yt { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #000; cursor: pointer; display: block; text-decoration: none; }
.lite-yt img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.82; transition: opacity 300ms var(--ease); }
.lite-yt:hover img { opacity: 1; }
.lite-yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 62px; height: 62px; border-radius: 50%; background: rgba(0,0,0,0.55); border: 2px solid rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; transition: background 250ms var(--ease), transform 250ms var(--ease); }
.lite-yt:hover .lite-yt-play { background: var(--pd-yellow); transform: translate(-50%, -50%) scale(1.08); }
.lite-yt-play::after { content: ""; margin-left: 4px; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; }
.lite-yt:hover .lite-yt-play::after { border-left-color: #000; }
@media (max-width: 900px) { .case-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .case-videos-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* Blocos de texto */
.case-block { padding: 90px 0; background: var(--pd-black); }
.case-block.alt { background: var(--pd-black-deep); }
.case-block-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
@media (max-width: 860px) { .case-block-grid { grid-template-columns: 1fr; gap: 24px; } }
.case-block h2 { margin-bottom: 8px; }
.case-block-body p { color: var(--pd-text-dim); font-size: clamp(15px, 1.15vw, 18px); line-height: 1.7; margin-bottom: 18px; }
.case-block-body p strong { color: var(--pd-text); font-weight: 700; }

/* Galeria de imagens do case */
.case-gallery { padding: 30px 0 90px; background: var(--pd-black); }
.case-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case-gallery-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .case-gallery-grid { grid-template-columns: 1fr; gap: 14px; } }
.case-shot { border-radius: var(--radius-md); overflow: hidden; background: var(--pd-graphite); border: 1px solid var(--pd-line); cursor: zoom-in; }
.case-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.case-shot:hover img { transform: scale(1.04); }

/* Galeria de FOTOS de evento — grid quadrado denso (case de fotografia) */
.case-photos { padding: 30px 0 90px; background: var(--pd-black); }
.case-photos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.case-photos-grid .case-shot { aspect-ratio: 1 / 1; }
@media (max-width: 900px) { .case-photos-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 560px) { .case-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Grade de POSTS sociais — quadrados (case de social/tráfego) */
.case-feed { padding: 30px 0 60px; background: var(--pd-black); }
.case-feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.case-feed-grid .case-shot { aspect-ratio: 1 / 1; }
@media (max-width: 900px) { .case-feed-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 560px) { .case-feed-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Vitrine de STORIES — verticais 9:16 (case de social/tráfego) */
.case-stories { padding: 30px 0 60px; background: var(--pd-black-deep); }
.case-stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.case-stories-grid .case-shot { aspect-ratio: 9 / 16; }
@media (max-width: 900px) { .case-stories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .case-stories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Par de social — post quadrado + story vertical (case Ahau) */
.case-social { padding: 10px 0 60px; background: var(--pd-black-deep); }
.case-social-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: flex-start; }
.case-social-grid .case-shot { border-radius: var(--radius-md); overflow: hidden; background: var(--pd-graphite); border: 1px solid var(--pd-line); cursor: zoom-in; }
.case-social-grid .case-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.case-social-grid .case-shot:hover img { transform: scale(1.04); }
.case-social-grid .post { width: 460px; max-width: 100%; aspect-ratio: 1 / 1; }
.case-social-grid .story { width: 300px; max-width: 100%; aspect-ratio: 9 / 16; }
@media (max-width: 560px) { .case-social-grid .post, .case-social-grid .story { width: 100%; } }
.case-gallery-grid + .case-social-grid { margin-top: 22px; }

/* Personas / públicos — grid 3-up (case CYEX) */
.case-personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.case-persona { padding: 28px; background: var(--pd-graphite); border: 1px solid var(--pd-line); border-radius: var(--radius-md); }
.case-persona-label { display: block; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pd-yellow); margin-bottom: 12px; }
.case-persona p { color: var(--pd-text-dim); font-size: 15px; line-height: 1.65; }
@media (max-width: 860px) { .case-personas { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; } }

/* Faixa de destaque do método (case GAP) */
.case-highlight { padding: 70px 0; background: var(--pd-yellow); color: var(--pd-black); text-align: center; }
.case-highlight h2 { font-size: clamp(24px, 3.2vw, 44px); line-height: 1.15; max-width: 20ch; margin: 0 auto 18px; }
.case-highlight p { max-width: 60ch; margin: 0 auto; font-size: clamp(15px, 1.2vw, 19px); color: rgba(0,0,0,0.78); font-weight: 500; }

/* Serviços / créditos */
.case-credits { padding: 80px 0; background: var(--pd-black-deep); border-top: 1px solid var(--pd-line); }
.case-credits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.case-credit-item { display: flex; flex-direction: column; gap: 6px; }
.case-credit-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pd-yellow); }
.case-credit-value { font-size: 15px; color: var(--pd-text-dim); line-height: 1.6; }
.case-services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.case-service-tag { padding: 8px 16px; border: 1px solid var(--pd-line); border-radius: 999px; font-size: 13px; color: var(--pd-text); }

/* Próximo case */
.case-next { padding: 0; }
.case-next a { display: block; position: relative; padding: 90px 0; text-align: center; background: var(--pd-graphite); overflow: hidden; transition: background 300ms var(--ease); }
.case-next a:hover { background: var(--pd-graphite-2); }
.case-next-label { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pd-text-mute); margin-bottom: 14px; }
.case-next h2 { font-size: clamp(28px, 4vw, 52px); transition: color 300ms var(--ease); }
.case-next a:hover h2 { color: var(--pd-yellow); }

/* ---------- Footer ---------- */
.footer { background: var(--pd-black-deep); padding: 80px 0 30px; border-top: 1px solid var(--pd-line); text-align: center; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(600px, 92vw); height: 1px; background: linear-gradient(to right, transparent, var(--pd-yellow), transparent); opacity: 0.5; }
.footer-highlight { display: inline-flex; flex-direction: column; align-items: center; gap: 12px; padding: 0 60px 28px; margin: 0 auto 50px; border-bottom: 1px solid var(--pd-line); }
.footer-highlight-title { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); color: var(--pd-yellow); letter-spacing: 0.02em; }
.footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 50px; }
.footer-socials a { width: 46px; height: 46px; border-radius: 50%; background: var(--pd-graphite); border: 1px solid var(--pd-line); display: flex; align-items: center; justify-content: center; color: var(--pd-text-dim); transition: all 240ms var(--ease); }
.footer-socials a:hover { background: var(--pd-yellow); color: var(--pd-black); border-color: var(--pd-yellow); transform: translateY(-3px); }
.footer-socials svg { width: 20px; height: 20px; }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--pd-line); display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; color: var(--pd-text-mute); font-size: 12px; }
.footer-bottom a { color: var(--pd-text-mute); transition: color 200ms var(--ease); }
.footer-bottom a:hover { color: var(--pd-yellow); }
.footer-bottom .sep { width: 4px; height: 4px; background: var(--pd-line); border-radius: 50%; }
@media (max-width: 700px) {
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-highlight { padding: 0 20px 22px; }
  .footer::before { opacity: 0.75; }
}

/* ---------- Lightbox (compartilhado) ---------- */
.pd-lightbox { border: none; background: transparent; padding: 0; margin: auto; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; color: var(--pd-text); overflow: visible; }
.pd-lightbox::backdrop { background: rgba(0,0,0,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.pd-lightbox-figure { width: 100%; height: 100%; margin: 0; display: flex; align-items: center; justify-content: center; padding: 6vh 6vw; box-sizing: border-box; }
.pd-lightbox-img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.pd-lightbox-btn { position: fixed; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--pd-text); width: 52px; height: 52px; border-radius: 50%; font-size: 28px; font-weight: 300; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; backdrop-filter: blur(8px); transition: all 220ms var(--ease); }
.pd-lightbox-btn:hover { background: var(--pd-yellow); color: var(--pd-black); border-color: var(--pd-yellow); transform: scale(1.08); }
.pd-lightbox-close { top: 24px; right: 24px; }
.pd-lightbox-prev, .pd-lightbox-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 34px; }
.pd-lightbox-prev:hover, .pd-lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.pd-lightbox-prev { left: 24px; }
.pd-lightbox-next { right: 24px; }
@media (max-width: 700px) {
  .pd-lightbox-btn { width: 44px; height: 44px; font-size: 22px; }
  .pd-lightbox-close { top: 16px; right: 16px; }
  .pd-lightbox-prev { left: 12px; }
  .pd-lightbox-next { right: 12px; }
}

/* ===================== PÁGINA SOBRE NÓS ===================== */
.about-kv { padding: 40px 0 0; background: var(--pd-black); }
.about-kv img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); border: 1px solid var(--pd-line); }
@media (max-width: 700px) { .about-kv img { border-radius: 14px; } }

.about-intro { padding: 64px 0 84px; background: var(--pd-black); }
.about-intro .eyebrow { display: inline-block; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pd-yellow); margin-bottom: 14px; }
.about-intro h1 { margin: 0 0 36px; max-width: 26ch; }
.about-intro-text { max-width: none; column-count: 2; column-gap: 60px; }
.about-intro-text p { color: var(--pd-text-dim); font-size: clamp(16px, 1.2vw, 19px); line-height: 1.8; margin: 0 0 20px; break-inside: avoid; }
.about-intro-text p:last-child { margin-bottom: 0; }
.about-intro-text strong { color: var(--pd-text); font-weight: 600; }
@media (max-width: 820px) { .about-intro-text { column-count: 1; } }

.about-person { padding: 72px 0; background: var(--pd-black); border-top: 1px solid var(--pd-line); }
.about-person.alt { background: var(--pd-black-deep); }
.about-person-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: start; }
@media (max-width: 860px) { .about-person-grid { grid-template-columns: 1fr; gap: 28px; } }
.about-person-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--pd-line); position: sticky; top: 96px; }
.about-person-img img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .about-person-img { position: static; max-width: 460px; } }
.about-person-tag { display: inline-block; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pd-yellow); margin-bottom: 14px; }
.about-person-body h2 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.18; margin-bottom: 18px; }
.about-person-sub { color: var(--pd-text); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; font-weight: 500; margin-bottom: 24px; }
.about-person-body p { color: var(--pd-text-dim); font-size: clamp(15px, 1.1vw, 17px); line-height: 1.8; margin-bottom: 16px; }

/* ===================== FILME / VÍDEO LANDSCAPE (case Pixolé) ===================== */
.case-film { padding: 40px 0 0; background: var(--pd-black); }
.case-film-player { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; display: block; background: #000; border: 1px solid var(--pd-line); }
.case-film-player video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .case-film-player { border-radius: 14px; } }

/* Cortes verticais (9:16) lado a lado */
.case-vfilms { padding: 10px 0 70px; background: var(--pd-black-deep); }
.case-vfilms-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.case-vfilm { width: 320px; max-width: 100%; aspect-ratio: 9 / 16; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--pd-line); background: #000; }
.case-vfilm video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- View Transitions (suaviza navegação entre páginas) ---------- */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
