/* ============================================================
   TEIA DOCUMENTA — estilos compartilhados (index.html + portfolio.html)
   Vermelho: #ED1C24   |   Escuro: #121212
   ============================================================ */

:root{
  --red:      #ED1C24;
  --red-dark: #c8151c;
  --black:    #121212;
  --ink:      #0a0a0a;
  --paper:    #f3f0eb;
  --paper-2:  #ffffff;
  --line:     rgba(255,255,255,.12);
  --txt:      #ededeb;
  --txt-mute: #a5a19b;
  --max:      1180px;
  --ease:     cubic-bezier(.2,.7,.2,1);
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:88px;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--black);
  color:var(--txt);
  font-family:'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }

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

/* ---------- rótulos / títulos ---------- */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--red);
  margin:0 0 22px;
}
.kicker::before{
  content:"";
  width:26px;
  height:2px;
  background:var(--red);
  display:inline-block;
}

.section-title{
  font-weight:800;
  font-size:clamp(1.9rem, 4.4vw, 3.1rem);
  line-height:1.05;
  letter-spacing:-.01em;
  margin:0 0 28px;
  text-transform:uppercase;
}

section{ position:relative; }

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:60;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 28px;
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav__brand{ display:flex; align-items:center; }
.nav__brand img{ height:30px; width:auto; }

.nav__links{
  display:flex;
  align-items:center;
  gap:6px;
  list-style:none;
  margin:0; padding:0;
}
.nav__links a{
  display:inline-block;
  padding:9px 14px;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  color:var(--txt);
  border-radius:2px;
  transition:color .25s var(--ease), background .25s var(--ease);
}
.nav__links a:hover,
.nav__links a:focus-visible{ color:#fff; background:rgba(237,28,36,.14); }
.nav__links .is-cta{
  color:#fff;
  background:var(--red);
  border-radius:999px;
  padding-left:18px;
  padding-right:18px;
}
.nav__links .is-cta:hover,
.nav__links .is-cta:focus-visible{ color:#fff; background:var(--red-dark); }

/* Link "Ver portfólio" no topo — apenas texto vermelho */
.hero__cta{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--red);
  font-size:.86rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  text-decoration:none;
  opacity:0;
  animation:fadeUp .9s var(--ease) 1.45s forwards;
  transition:color .2s var(--ease);
}
.hero__cta::after{
  content:"";
  width:0; height:0;
  border-style:solid;
  border-width:4px 0 4px 7px;
  border-color:transparent transparent transparent currentColor;
}
.hero__cta:hover,
.hero__cta:focus-visible{ color:#fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:100vh;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:130px 28px 90px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #202020 0%, var(--black) 62%);
}

.hero__logo{
  position:relative;
  width:min(600px, 82vw);
  margin:0 auto;
  opacity:0;
  clip-path:inset(0 100% 0 0);
  animation:logoReveal 1.35s var(--ease) .25s forwards;
}
.hero__logo img{ width:100%; height:auto; }

@keyframes logoReveal{
  0%   { opacity:0; clip-path:inset(0 100% 0 0); transform:translateY(14px); }
  55%  { opacity:1; }
  100% { opacity:1; clip-path:inset(0 0 0 0);   transform:translateY(0); }
}

.hero__tagline{
  position:relative;
  margin:34px auto 0;
  max-width:none;
  white-space:nowrap;
  font-size:clamp(.78rem,2.4vw,.92rem);
  font-weight:600;
  letter-spacing:.16em;
  text-indent:.16em;            /* compensa o espaço extra da última letra e centraliza */
  text-transform:uppercase;
  color:var(--txt-mute);
  opacity:0;
  animation:fadeUp .9s var(--ease) 1.25s forwards;
}
.hero__tagline b{ color:var(--red); font-weight:700; }

.hero__scroll{
  position:absolute;
  bottom:64px;
  left:50%;
  transform:translateX(-50%);
  text-decoration:none;
  opacity:0;
  animation:fadeUp .9s var(--ease) 1.6s forwards;
}
.hero__symbol{
  display:block;
  width:60px; height:auto;
  opacity:.95;
  animation:bob 2.6s ease-in-out infinite;
}

@keyframes fadeUp{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
@keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(7px);} }

/* ============================================================
   APRESENTAÇÃO
   ============================================================ */
.intro{
  padding:100px 0 90px;
  border-top:1px solid var(--line);
}
.intro__lead{
  font-size:clamp(1.35rem, 3.2vw, 2.15rem);
  line-height:1.4;
  font-weight:500;
  letter-spacing:-.005em;
  max-width:22ch;
  margin:0;
}
.intro__grid{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:48px;
  align-items:start;
}
.intro__body p{
  margin:0;
  color:#d6d3ce;
  font-size:1.12rem;
  line-height:1.7;
  max-width:56ch;
}
.intro__lead .hl{ color:var(--red); }

/* ============================================================
   DESTAQUE — full-bleed
   ============================================================ */
.feature{
  position:relative;
  display:block;
  width:100%;
  min-height:min(78vh, 720px);
  text-decoration:none;
  color:#fff;
  overflow:hidden;
  background:#0c0c0c;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.feature__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.feature::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,8,8,.42) 0%, rgba(8,8,8,.72) 68%, rgba(8,8,8,.93) 100%);
  transition:background .4s var(--ease);
}
.feature:hover::after{ background:linear-gradient(180deg, rgba(8,8,8,.32) 0%, rgba(8,8,8,.66) 68%, rgba(8,8,8,.9) 100%); }

.feature__inner{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:2;
  padding:46px 28px;
}
.feature__row{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.feature__eyebrow{
  font-size:.72rem; font-weight:700; letter-spacing:.22em;
  text-transform:uppercase; color:var(--red); margin:0 0 12px;
}
.feature__title{
  margin:0;
  font-size:clamp(1.6rem, 4.5vw, 2.9rem);
  font-weight:800;
  line-height:1.02;
  text-transform:uppercase;
  letter-spacing:-.01em;
  text-shadow:0 2px 30px rgba(0,0,0,.55);
}
.feature__title span{ display:block; }
.feature__title .l2{
  font-size:.5em;
  font-weight:600;
  text-transform:none;
  letter-spacing:.005em;
  margin-top:8px;
  color:#ececea;
}
.feature__credit{ margin:10px 0 0; color:#efece8; font-weight:600; font-size:1.02rem; }
.feature__meta{ margin:14px 0 0; color:#e7e5e2; max-width:46ch; }
.feature__play{
  display:inline-flex; align-items:center; gap:14px;
  font-size:.82rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; white-space:nowrap;
}
.play-dot{
  width:64px; height:64px; border-radius:50%;
  background:var(--red);
  display:inline-flex; align-items:center; justify-content:center;
  flex:none;
  box-shadow:0 8px 30px rgba(237,28,36,.35);
  transition:transform .3s var(--ease), background .3s var(--ease);
}
.play-dot::before{
  content:""; display:block;
  width:0; height:0; margin-left:4px;
  border-style:solid;
  border-width:11px 0 11px 18px;
  border-color:transparent transparent transparent #fff;
}
.feature:hover .play-dot{ transform:scale(1.08); background:var(--red-dark); }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about{ padding:110px 0 100px; }
.about__title{
  font-weight:800;
  font-size:clamp(1.7rem, 4.6vw, 3rem);
  line-height:1.06;
  letter-spacing:-.01em;
  text-transform:uppercase;
  max-width:16ch;
  margin:14px 0 46px;
}
.about__cols{
  columns:2;
  column-gap:56px;
}
.about__cols p{
  margin:0 0 20px;
  break-inside:avoid;
  color:#cfccc7;
  font-size:1.03rem;
  line-height:1.72;
}
.about__cols p:first-child{ color:#efece7; }

.about__clients{
  margin-top:44px;
  padding-top:34px;
  border-top:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.about__clients .tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
}
.about__clients .lbl{
  width:100%;
  font-size:.72rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--txt-mute);
  margin-bottom:6px;
}
.tag{
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.02em;
  color:#d8d5d0;
  padding:7px 14px;
  border:1px solid var(--line);
  border-radius:999px;
}

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.works{
  padding:100px 0 110px;
  border-top:1px solid var(--line);
  background:#161616;
}
.works__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:46px;
}
.works__head p{ margin:0; color:var(--txt-mute); max-width:44ch; }

.works__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap:26px;
}

/* card = link (tem ação), portanto o hover é permitido */
.work{
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
}
.work__poster{
  position:relative;
  aspect-ratio:16 / 9;
  border-radius:6px;
  overflow:hidden;
  background:#0d0d0d;
}
.work__poster::before{
  content:"";
  position:absolute; inset:0;
  background:url("Fotos/SIMBOLOTEIA_PRINCIPAL_NEGATIVO.png") center / 120px no-repeat;
  opacity:.08;
}
.work__poster--photo::before{ opacity:0; }
.work__poster img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.work__poster .play-dot{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%) scale(.9);
  width:58px; height:58px;
  z-index:2;
}
.work__poster::after{
  content:"";
  position:absolute; inset:0;
  background:rgba(10,10,10,.28);
  transition:background .35s var(--ease);
}
.work:hover .work__poster::after{ background:rgba(10,10,10,.1); }
.work:hover .work__poster img{ transform:scale(1.05); }
.work:hover .work__poster .play-dot{ transform:translate(-50%,-50%) scale(1.02); background:var(--red-dark); }

.work__meta{ padding:18px 2px 0; }
.work__client{
  margin:0 0 6px;
  font-size:.72rem; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--red);
}
.work__title{
  margin:0;
  font-size:1.12rem;
  font-weight:700;
  line-height:1.3;
}
.work__type{ display:none; }

/* ============================================================
   LIGHTBOX DE VÍDEO (100% CSS via :target)
   ============================================================ */
.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;            /* oculto: cada vídeo só é carregado quando aberto */
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox:target{
  display:flex;
  animation:lbIn .28s var(--ease);
}
@keyframes lbIn{ from{ opacity:0; } to{ opacity:1; } }
.lightbox__backdrop{
  position:absolute; inset:0;
  background:rgba(6,6,6,.86);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.lightbox__body{
  position:relative;
  width:min(1040px, 94vw);
  z-index:2;
}
.lightbox:target .lightbox__body{ animation:lbBody .4s var(--ease); }
@keyframes lbBody{ from{ opacity:0; transform:translateY(16px) scale(.98); } to{ opacity:1; transform:none; } }
.lightbox__frame{
  position:relative;
  aspect-ratio:16 / 9;
  background:#000;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.14);
}
.lightbox__frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.lightbox__cap{
  display:flex; align-items:baseline; gap:14px;
  margin-top:14px; color:#e9e7e3;
  flex-wrap:wrap;
}
.lightbox__cap strong{ font-weight:700; }
.lightbox__cap span{ color:var(--red); font-size:.74rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.lightbox__close{
  position:absolute;
  top:-52px; right:0;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:1.5rem; line-height:1;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  transition:background .25s var(--ease), border-color .25s var(--ease);
}
.lightbox__close:hover{ background:var(--red); border-color:var(--red); }

/* ============================================================
   COLABORADORES
   ============================================================ */
.team{ padding:100px 0 100px; border-top:1px solid var(--line); }

.team__lead{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:48px;
  align-items:center;
  margin-bottom:56px;
}
.team__photo{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  border:1px solid var(--line);
}
.team__photo img{ width:100%; height:auto; display:block; }
.team__photo::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:5px;
  background:var(--red);
}
.team__intro h3{
  margin:0 0 18px;
  font-size:clamp(0.9rem, 3vw, 2rem);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.01em;
  text-transform:uppercase;
  white-space:nowrap;
}
.team__role{
  margin:0 0 18px !important;
  font-size:.74rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--red) !important;
}
.team__intro p{ margin:0; color:#cfccc7; font-size:1.05rem; line-height:1.7; max-width:46ch; }

.team__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 260px));
  gap:26px;
  justify-content:center;
}
/* cartão SEM ação → sem hover */
.member__photo{
  aspect-ratio:3 / 4;
  border-radius:6px;
  overflow:hidden;
  background:#141414 url("Fotos/SIMBOLOTEIA_PRINCIPAL_NEGATIVO.png") center / 84px no-repeat;
  border:1px solid var(--line);
  position:relative;
}
.member__photo img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.member__photo::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:4px;
  background:var(--red);
}
.member h3{ margin:16px 0 2px; font-size:1.05rem; font-weight:700; }
.member p{ margin:0; font-size:.86rem; color:var(--txt-mute); letter-spacing:.02em; }

/* ============================================================
   PARCEIROS (imagem em fundo claro)
   ============================================================ */
.partners{
  background:var(--paper-2);
  color:var(--black);
  padding:80px 0 84px;
  text-align:center;
}
.partners .kicker{ color:var(--red); }
.partners h2{
  font-size:clamp(1.5rem,3.6vw,2.2rem);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-.01em;
  margin:0 0 8px;
  color:var(--black);
}
.partners p{ margin:0 auto 38px; max-width:52ch; color:#514f4c; }
.partners .wrap{ max-width:1320px; }
.partners picture{ display:block; }
.partners__img{
  max-width:1240px;
  width:100%;
  margin:0 auto;
  height:auto;
}

/* ============================================================
   SOBRE O DOCUMENTÁRIO (Escute) + PRÊMIOS
   ============================================================ */
.doc{ padding:90px 0 96px; border-top:1px solid var(--line); }
.doc__grid{
  display:grid;
  grid-template-columns:1.55fr 1fr;
  gap:56px;
  align-items:start;
  margin-top:8px;
}
.doc__body p{
  margin:0 0 18px;
  font-size:1.15rem;
  line-height:1.72;
  color:#d9d6d1;
  text-align:justify;
  text-justify:inter-word;
}
.doc__body .doc__credit{
  color:var(--txt-mute);
  font-size:1rem;
  font-style:italic;
  text-align:left;
}
.doc__press h4{
  margin:0 0 18px;
  font-size:.72rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--red);
}
.doc__press ul{ list-style:none; margin:0; padding:0; }
.doc__press li{
  margin:0 0 14px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.doc__press li:last-child{ border-bottom:0; margin-bottom:0; padding-bottom:0; }
.doc__press a{
  display:block;
  text-decoration:none;
  color:#e3e0db;
  font-weight:600;
  line-height:1.42;
  transition:color .2s var(--ease);
}
.doc__press a:hover{ color:var(--red); }

.awards{
  background:var(--paper-2);
  color:var(--black);
  padding:70px 0 78px;
  text-align:center;
}
.awards .kicker{ color:var(--red); }
.awards h2{
  font-size:clamp(1.5rem,3.6vw,2.2rem);
  font-weight:800; text-transform:uppercase; letter-spacing:-.01em;
  margin:0 0 6px; color:var(--black);
}
.awards__sub{ margin:0 auto 42px; max-width:52ch; color:#514f4c; }
.awards__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
  gap:34px 26px;
  align-items:center;
  justify-items:center;
}
.award{ width:100%; display:flex; align-items:center; justify-content:center; }
.award img{ max-height:105px; width:auto; max-width:100%; object-fit:contain; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer{
  background:var(--ink);
  padding:70px 0 40px;
  border-top:2px solid var(--red);
}
.footer__grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  align-items:start;
}
.footer__brand img{ height:32px; width:auto; margin-bottom:18px; }
.footer__brand p{ margin:0; color:var(--txt-mute); max-width:34ch; font-size:.96rem; }
.footer h4{
  margin:0 0 16px;
  font-size:.72rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--txt-mute);
}
.footer ul{ list-style:none; margin:0; padding:0; }
.footer li{ margin-bottom:10px; }
.footer a{
  text-decoration:none; color:#d6d3ce;
  transition:color .2s var(--ease);
  font-size:.98rem;
}
.footer a:hover{ color:var(--red); }
.footer__bottom{
  margin-top:54px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex; justify-content:space-between; gap:16px;
  flex-wrap:wrap;
  color:var(--txt-mute);
  font-size:.82rem;
  letter-spacing:.04em;
}
.footer__symbol{ text-align:center; margin-top:40px; }
.footer__symbol img{ width:54px; height:auto; margin:0 auto; opacity:.9; display:block; }

/* Textos corridos em modo justificado */
.intro__body p,
.about__cols p,
.team__intro p,
.partners p,
.footer__brand p{
  text-align:justify;
  text-justify:inter-word;
}

/* ============================================================
   PÁGINA DE PORTFÓLIO (cabeçalho próprio)
   ============================================================ */
.pf-head{
  padding:150px 0 10px;
}
.pf-head .section-title{ margin-bottom:14px; }
.pf-head .kicker{ display:flex; }
.pf-head p{ margin:0; color:var(--txt-mute); max-width:52ch; }
.pf-back{
  display:inline-flex; align-items:center; gap:8px;
  margin-top:26px;
  font-size:.78rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--red);
  text-decoration:none;
}
.pf-back:hover{ color:#fff; }
.works--page{ background:transparent; border-top:0; padding-top:40px; }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablets / telas médias */
@media (max-width:980px){
  .intro{ padding:80px 0 72px; }
  .about{ padding:84px 0 78px; }
  .works{ padding:80px 0 88px; }
  .team{ padding:80px 0; }
  .footer{ padding:60px 0 36px; }
  .pf-head{ padding:128px 0 6px; }
}

@media (max-width:880px){
  .intro__grid{ grid-template-columns:1fr; gap:26px; }
  .team__lead{ grid-template-columns:1fr; gap:28px; }
  .doc__grid{ grid-template-columns:1fr; gap:32px; }
  .about__cols{ columns:1; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:34px 30px; }
  .footer__brand{ grid-column:1 / -1; }

  /* Banner reflui: miniatura inteira (16:9) em cima, texto abaixo */
  .feature{ min-height:0; }
  .feature__img{ position:static; width:100%; height:auto; aspect-ratio:16/9; }
  .feature::after{ display:none; }
  .feature__inner{ position:static; padding:26px 24px 30px; background:#171717; }
  .feature__title{ text-shadow:none; }
  .feature__row{ flex-direction:column; align-items:flex-start; gap:16px; }
}

/* Celulares */
@media (max-width:680px){
  body{ font-size:16px; }
  .wrap{ padding:0 20px; }

  .nav{ padding:12px 16px; gap:12px; }
  .nav__brand img{ height:24px; }
  .nav__links{ gap:0; }
  .nav__links a{ padding:8px 8px; font-size:.72rem; letter-spacing:.02em; }

  .hero__tagline{ white-space:normal; letter-spacing:.1em; max-width:38ch; text-indent:0; }

  .intro{ padding:60px 0 54px; }
  .about{ padding:66px 0 62px; }
  .works{ padding:64px 0 72px; }
  .team{ padding:62px 0; }
  .partners{ padding:56px 0 60px; }
  .doc{ padding:60px 0 62px; }
  .awards{ padding:54px 0 60px; }
  .awards__grid{ grid-template-columns:repeat(auto-fill, minmax(116px, 1fr)); gap:26px 20px; }
  .award img{ max-height:78px; }
  .pf-head{ padding:112px 0 4px; }

  .works__head{ margin-bottom:34px; }
  .about__title{ margin:12px 0 32px; }

  .feature__inner{ padding:22px 20px 26px; }
  .feature__play{ font-size:.74rem; }
  .play-dot{ width:52px; height:52px; }

  /* Zoom nas logos de parceiros: recorta o espaço em branco das laterais */
  .partners__img{ aspect-ratio:4 / 3; object-fit:cover; object-position:center; }

  .lightbox{ padding:16px; }
  .lightbox__close{ top:-46px; }
}

/* Telas pequenas: o menu passa a empilhar e centralizar */
@media (max-width:520px){
  html{ scroll-padding-top:120px; }
  .nav{ flex-direction:column; gap:8px; padding:10px 12px; }
  .nav__links{ flex-wrap:wrap; justify-content:center; gap:0 2px; }
  .nav__links a{ padding:7px 9px; }
  .hero{ padding:120px 20px 84px; }
  .partners .wrap{ padding:0 16px; }
}

@media (max-width:380px){
  .wrap{ padding:0 16px; }
  .nav__links a{ padding:7px 7px; font-size:.68rem; }
}

/* Acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .hero__logo{ opacity:1; clip-path:inset(0 0 0 0); }
  .hero__tagline, .hero__scroll{ opacity:1; }
}
