/* ============================================================
   SINO PEREGRINO — O SOM DA ESPERANÇA | Landing Page v2
   Layout: institucional (creme / desenhado à mão / cinematográfico)
   Strawberry / LikeU Comunicação — 2026
   ============================================================ */
/* .sec-cta — botão centralizado abaixo de grade de episódios */
.sec-cta { display: flex; justify-content: center; margin-top: 44px; }

/* ============ TRÊS PILARES ============ */
.pilares { background: var(--brown); }
.pilares .sec-title { color: var(--paper); }
.pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.pilar-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 36px 28px; display: flex; flex-direction: column; gap: 12px; }
.pilar-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; margin-bottom: 4px; }
.pilar-icon svg { width: 24px; height: 24px; stroke: var(--paper); }
.pilar-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2vw, 26px); color: var(--paper); margin: 0; }
.pilar-sub { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6); font-style: italic; margin: 0; }
.pilar-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }
@media (max-width: 860px) { .pilares-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ============ SOCIAL PROOF / IMPACTO ============ */
.impacto { background: var(--paper); }
.impacto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.impacto-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 28px 16px; border: 1.5px solid var(--line-2); border-radius: 12px; background: var(--cream); }
.impacto-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--brown); display: grid; place-items: center; }
.impacto-icon svg { width: 22px; height: 22px; stroke: var(--paper); }
.impacto-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(18px, 2vw, 26px); color: var(--brown); line-height: 1.1; }
.impacto-label { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; text-wrap: balance; }
@media (max-width: 900px) { .impacto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .impacto-grid { grid-template-columns: 1fr; } }

/* ============ EQUIPE — 3 CARDS ============ */
.equipe { background: var(--cream); }
.team-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
/* carrossel da equipe (marquee, mesmo mecanismo dos bastidores) */
.team-viewport { margin-top: 48px; }
.team-track { gap: 24px; animation-duration: 56s; align-items: stretch; }
.team-track .team-card { flex: 0 0 auto; width: 330px; white-space: normal; }
.team-track .team-photo { height: 360px; }
.team-nav { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 32px; }
.team-arrow { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--brown); background: transparent; color: var(--brown); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .25s, color .25s, transform .2s; padding: 0; }
.team-arrow svg { width: 20px; height: 20px; }
.team-arrow:hover { background: var(--brown); color: var(--paper); }
.team-arrow:active { transform: scale(.92); }
@media (max-width: 620px) { .team-nav { margin-top: 24px; } .team-arrow { width: 44px; height: 44px; } }
.team-card { border: 1.5px solid var(--line-2); border-radius: 16px; overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; background: var(--paper); }
.team-card:hover { border-color: var(--rust); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(74,47,23,0.2); }
.team-photo { width: 100%; height: 400px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .5s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo--logo { background: var(--brown); display: flex; align-items: center; justify-content: center; }
.team-photo--logo img { width: 180px; height: auto; object-fit: contain; }
.team-info { padding: 22px 24px 28px; }
.team-role { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--rust); display: block; margin-bottom: 8px; }
.team-info h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--brown); line-height: 1.3; margin: 0 0 10px; }
.team-info p { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.team-info .team-ig { display: inline-block; margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--rust); letter-spacing: .2px; transition: color .2s; }
.team-info .team-ig:hover { color: var(--rust-dp); text-decoration: underline; }
.team-note { text-align: center; font-size: 15px; color: var(--ink-2); font-style: italic; max-width: 640px; margin: 40px auto 0; line-height: 1.8; border-top: 1px solid var(--line-2); padding-top: 32px; }
@media (max-width: 900px) { .team-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; } }
@media (max-width: 768px) { .team-photo { height: 340px; } }

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; border-radius: 4px; }

/* ---- TYPOGRAFIA BALANCEADA ---- */
h1, h2, h3, h4 { text-wrap: balance; }
h1:has(br), h2:has(br), h3:has(br) { text-wrap: wrap; } /* título com <br> manual: balance redistribui e vira 4-6 linhas; "normal" é inválido em Chrome <130, usar "wrap" */
p, li { text-wrap: pretty; }

/* ---- TOKENS ---- */
:root {
  --paper:   #f4ebd5;
  --paper-2: #efe4c8;
  --paper-3: #e7d9b8;
  --note:    #fbf8f1;
  --ink:     #33261a;
  --ink-2:   #6e5b44;
  --brown:   #4a2f17;
  --rust:    #b35a24;
  --rust-dp: #99491b;
  --gold:    #b58a3e;
  --line:    rgba(74,47,23,0.16);
  --line-2:  rgba(74,47,23,0.28);

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Mulish', system-ui, sans-serif;
  --font-script: 'Caveat', 'Comic Sans MS', cursive;

  --container: 1180px;
  --pad-x: 48px;
  --radius: 6px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1200px 700px at 50% -10%, #f8f1de 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 55%, var(--paper-3) 100%);
  background-attachment: fixed;
}

/* textura de papel sutil */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- HELPERS ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: 104px 0; position: relative; }

.script {
  display: inline-block; font-family: var(--font-script);
  font-size: clamp(30px, 4vw, 44px); font-weight: 700; color: var(--rust);
  line-height: 1; margin-bottom: 10px; transform: rotate(-2deg);
}
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 900px; }
.sec-head.center .sec-sub { max-width: 640px; margin-left: auto; margin-right: auto; }
.sec-head.center .sec-sub--wide { max-width: 900px; } /* sub com <br> manual em 2 linhas (equipe) */
.sec-sub--wide .sub-l2 { display: block; } /* 2ª frase em linha própria (desktop, como o <br> antigo) */
@media (max-width: 768px) {
  .sec-sub--wide .sub-l2 { display: inline; margin-top: 0; } /* mobile: sem quebra, texto corrido */
  .impacto .sec-title { font-size: clamp(15px, 4.6vw, 18px); } /* mobile: cada frase em 1 linha (2 linhas no total) */
}
.sec-title {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1; letter-spacing: -.01em; color: var(--brown);
}
.sec-sub { font-size: clamp(16px, 1.7vw, 18px); color: var(--ink-2); margin-top: 16px; }

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: .2px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--rust); color: #fff; box-shadow: 0 8px 24px rgba(179,90,36,0.28); }
.btn-primary:hover { background: var(--rust-dp); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(179,90,36,0.4); }
.btn-ghost { background: transparent; color: var(--brown); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { background: rgba(74,47,23,0.06); border-color: var(--brown); transform: translateY(-2px); }
.btn-block { width: 100%; }
.hero-trailer-btn .btn-label-mobile { display: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 8px 0;
  background: linear-gradient(180deg, rgba(244,235,213,0.7) 0%, rgba(244,235,213,0) 100%);
  transition: background .3s, padding .3s, box-shadow .3s, backdrop-filter .3s;
}
.navbar.scrolled {
  padding: 8px 0; background: rgba(244,235,213,0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: flex-start; justify-content: space-between; }
/* menu (links + CTA) colado no topo, logo grande desce por baixo */
.nav-links, .nav-cta { margin-top: 22px; }
.nav-cta { margin-top: 12px; }   /* só o "Assistir agora" um pouco mais pra cima */
/* logo "solta" do menu: desce um pouco e cola mais à esquerda (masthead sobre o hero) */
.nav-logo { display: block; margin-top: 26px; margin-left: -22px; transition: margin .3s; }
.navbar.scrolled .nav-logo { margin-top: 4px; margin-left: -10px; }
.nav-logo-img { height: 160px; width: auto; display: block; transition: height .3s; filter: drop-shadow(0 2px 10px rgba(244,235,213,0.6)); }
.navbar.scrolled .nav-logo-img { height: 88px; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 28px; }
.nav-links a { font-size: 14.5px; color: var(--ink); font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--rust); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO — 2 colunas: texto + vídeo
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 210px 0 70px;
}
.hero-inner {
  max-width: var(--container); width: 100%;
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: center;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-sketch { position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; opacity: .65; pointer-events: none; }
.hero-sketch--l { left: clamp(-20px, 1vw, 40px); top: auto; bottom: 48px; transform: none; width: clamp(140px, 15vw, 230px); }
.hero-sketch--r { right: 26px; top: 42%; width: clamp(110px, 13vw, 190px); }
.kicker {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: var(--brown);
  border: 1.5px solid var(--line-2); padding: 8px 18px; border-radius: 2px; margin-bottom: 24px;
}
.hero-logo { height: clamp(90px, 14vh, 160px); width: auto; max-width: 88%; margin-bottom: 18px; }
.hero-headline {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(21px, 2.5vw, 36px); line-height: 1.22; color: var(--brown); margin-bottom: 18px;
}
.hero-headline em { color: var(--rust); font-style: italic; display: block; margin-top: 4px; }
.hero-desc { font-size: clamp(14.5px, 1.35vw, 16px); color: var(--ink-2); max-width: 500px; margin-bottom: 26px; line-height: 1.68; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.hero-cta-note { font-size: 12.5px; color: var(--ink-2); letter-spacing: .3px; margin-bottom: 26px; }
.hero-seal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; font-size: 13.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brown); }
.hero-seal .seal-likeu { height: 34px; width: auto; }
.hero-seal .seal-div { width: 1.5px; height: 26px; background: var(--line-2); }
.hero-seal .seal-piracanjuba { height: 38px; width: auto; mix-blend-mode: multiply; }

/* Coluna do vídeo */
.hero-video-col { display: flex; flex-direction: column; gap: 14px; }
.hero-video-wrap {
  position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(74,47,23,0.35);
  border: 1.5px solid var(--line-2);
}
.hero-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.hero-video-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); }
.ep-badge { background: var(--rust); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }

.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint::after { content: ""; width: 1px; height: 30px; background: linear-gradient(var(--rust), transparent); animation: scrollpulse 2s infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ============================================================
   ASSISTA
   ============================================================ */
.assista { background: linear-gradient(180deg, transparent, rgba(74,47,23,0.03)); border-top: 1px solid var(--line); }
/* destaque */
.feat {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; align-items: stretch;
  background: var(--note); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  box-shadow: 0 26px 60px -30px rgba(74,47,23,0.4); margin-bottom: 30px;
}
.feat-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; width: 100%; }
.feat-thumb img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.28) saturate(.96) contrast(1.02); transition: transform .5s ease; }
.feat-thumb:hover img { transform: scale(1.04); }
.feat-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(74,47,23,0.18), transparent 55%); }
.feat-thumb .play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 50%; background: var(--rust); color: #fff; display: grid; place-items: center; z-index: 2; transition: transform .25s, background .25s; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.feat-thumb:hover .play { transform: scale(1.08); background: var(--rust-dp); }
.feat-thumb .play svg { width: 24px; height: 24px; margin-left: 3px; }
.feat-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--rust); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.feat-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.ep-kicker { font-family: var(--font-script); font-size: 26px; font-weight: 700; color: var(--rust); line-height: 1; }
.feat-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(26px, 3vw, 36px); color: var(--brown); margin: 4px 0 14px; }
.feat-body p { color: var(--ink-2); font-size: 16px; margin-bottom: 22px; }
.link-action { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--rust); align-self: flex-start; transition: gap .2s; }
.link-action:hover { gap: 14px; }
.link-action svg { width: 18px; height: 18px; }

/* grid demais episódios */
.ep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ep-card { background: var(--note); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; }
.ep-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -26px rgba(74,47,23,0.5); border-color: var(--line-2); }
.ep-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.3) saturate(.92) contrast(1.02); }
.ep-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(74,47,23,0.32)); }
.ep-tag { position: absolute; bottom: 10px; right: 10px; z-index: 2; background: rgba(251,248,241,0.92); color: var(--ink-2); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.ep-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; }
.ep-card-body .ep-kicker { font-size: 22px; }
.ep-card-body h3 { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--brown); margin: 2px 0 8px; }
.ep-card-body p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ============================================================
   A SÉRIE
   ============================================================ */
.serie-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.serie-text .lead { font-family: var(--font-head); font-weight: 500; font-size: clamp(19px, 2.1vw, 23px); color: var(--brown); line-height: 1.45; margin: 8px 0 18px; }
.serie-text .sec-title, .bts-text .sec-title { margin-bottom: 18px; }
.serie-text p { color: var(--ink-2); margin-bottom: 16px; }
.pillars { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; }
.pillars span { font-family: var(--font-head); font-style: italic; font-weight: 600; font-size: clamp(17px, 2vw, 21px); color: var(--brown); }
.pillars span:nth-child(2) { color: var(--rust); }
.serie-art { position: relative; display: grid; place-items: center; }
.serie-art img { width: 100%; max-width: 460px; height: auto; filter: drop-shadow(0 30px 50px rgba(74,47,23,0.28)); }

/* ============================================================
   NÚMEROS
   ============================================================ */
.numbers { background: var(--brown); color: var(--paper); padding: 78px 0; }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.num { text-align: center; position: relative; }
.num + .num::before { content: ""; position: absolute; left: -15px; top: 10%; height: 80%; width: 1px; background: rgba(244,235,213,0.18); }
.num .n { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(48px, 7vw, 76px); line-height: .9; color: #fff; }
.num .u { display: block; font-family: var(--font-script); font-size: 26px; color: #e9b878; margin: 4px 0 10px; }
.num .l { display: block; font-size: 13.5px; color: rgba(244,235,213,0.7); line-height: 1.4; max-width: 200px; margin: 0 auto; }

/* ============================================================
   BASTIDORES
   ============================================================ */
.bts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bts-text p { color: var(--ink-2); margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.chip { font-size: 13px; color: var(--brown); padding: 7px 15px; border-radius: 100px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.4); }

/* moldura de foto (estilo recorte / scrapbook) */
.photo-frame { background: var(--note); padding: 10px; border-radius: 4px; box-shadow: 0 18px 44px -22px rgba(74,47,23,0.55); border: 1px solid var(--line); }
.bts-photo { transform: rotate(-1.4deg); }
.bts-photo img { width: 100%; height: auto; border-radius: 2px; filter: sepia(.32) saturate(.92) contrast(1.03); }

/* carrossel */
.bts-carousel { margin-top: 64px; overflow: hidden; }
.bts-carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.bts-carousel-head .ttl { font-family: var(--font-head); font-weight: 600; font-size: clamp(19px, 2.4vw, 26px); color: var(--brown); }
.bts-nav { display: flex; gap: 10px; }
.bts-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255,255,255,0.5); color: var(--brown); display: grid; place-items: center; transition: background .2s, opacity .2s; }
.bts-btn:hover { background: #fff; }
.bts-btn:disabled { opacity: .35; cursor: default; }
.bts-btn svg { width: 22px; height: 22px; }
.bts-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
/* carrossel rotativo infinito (marquee) */
.bts-track { display: flex; gap: 16px; width: max-content; animation: btsMarquee 64s linear infinite; will-change: transform; }
.bts-viewport:hover .bts-track { animation-play-state: paused; }
@keyframes btsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .bts-track { animation: none; } }
.bts-slide { flex: 0 0 auto; width: 360px; aspect-ratio: 3/2; border-radius: 6px; overflow: hidden; position: relative; background: var(--note); border: 1px solid var(--line); }
.bts-slide img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.3) saturate(.92) contrast(1.02); transition: transform .6s ease; }
.bts-slide:hover img { transform: scale(1.04); }
.bts-slide .cap { display: none; } /* legendas removidas dos 2 carrosséis (pedido Bianca 03/07) */
@media (max-width: 980px) { .bts-slide { width: 300px; } }
@media (max-width: 620px) { .bts-slide { width: 260px; } .team-track { gap: 10px; } .team-track .team-card { width: 320px; } .team-track .team-photo { height: 300px; } }

/* ============================================================
   GALERIA
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-grid .g-item { padding: 8px; overflow: hidden; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; filter: sepia(.32) saturate(.9) contrast(1.03); transition: transform .4s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.04); }
.gallery-grid .g-item:nth-child(odd) { transform: rotate(-.8deg); }
.gallery-grid .g-item:nth-child(even) { transform: rotate(.8deg); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ============================================================
   EQUIPE
   ============================================================ */
.credits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.credit { background: var(--note); border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px; }
.credit .role { display: block; font-family: var(--font-script); font-size: 24px; color: var(--rust); line-height: 1; margin-bottom: 6px; }
.credit .name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 21px; color: var(--brown); line-height: 1.2; margin-bottom: 10px; }
.credit .bio { display: block; font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ============================================================
   PATROCINADORES
   ============================================================ */
.sponsor-tier { text-align: center; margin-top: 38px; }
.tier-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-2); margin-bottom: 18px; }
.tier-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px; }
.sp-logo { display: grid; place-items: center; transition: transform .3s; }
.sp-logo:hover { transform: translateY(-3px); }
.sp-logo img { max-height: 62px; max-width: 210px; width: auto; object-fit: contain; }
.sp-logo--lg img { max-height: 120px; max-width: 260px; }
.sp-text { font-family: var(--font-head); color: var(--brown); font-size: 14px; font-weight: 600; line-height: 1.3; }
.sponsors { background: #F1E8D3; }
.sponsors-bird { text-align: center; margin-top: 44px; }
.sponsors-bird img { width: 160px; height: auto; margin: 0 auto; opacity: .62; }

/* ============================================================
   EQUIPE estilo página 6 (foto + papel rasgado)
   ============================================================ */
.team6 { position: relative; max-width: 980px; margin: 8px auto 0; min-height: 600px; }
.team6-photo { width: min(480px, 72%); margin: 0 auto; }
.team6-photo img {
  width: 100%; height: auto; display: block; border-radius: 8px;
  filter: sepia(.18) saturate(.98) contrast(1.03);
  box-shadow: 0 22px 50px -24px rgba(74,47,23,0.55);
  /* bordas suaves nas laterais (sem cantos quadrados), mas foto bem visível */
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, #000 86%, transparent 100%);
}
.torn {
  background: #faf7f1; padding: 18px 22px 22px; max-width: 272px;
  box-shadow: 0 16px 38px -18px rgba(74,47,23,0.55); border: 1px solid var(--line);
  clip-path: polygon(0% 8%,8% 3%,16% 7%,25% 2%,34% 6%,44% 2%,54% 7%,64% 3%,74% 7%,84% 2%,92% 6%,100% 3%,100% 92%,92% 97%,84% 93%,74% 98%,64% 93%,54% 97%,44% 93%,34% 98%,25% 93%,16% 97%,8% 92%,0% 96%);
}
.torn .role { font-family: var(--font-script); font-size: 23px; color: var(--rust); display: block; line-height: 1; }
.torn .name { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--brown); display: block; margin: 2px 0 7px; }
.torn .bio { font-size: 13px; color: var(--ink-2); display: block; line-height: 1.5; }
.team6 .torn { position: absolute; }
.torn--a { top: 0; left: 0; transform: rotate(-2deg); }
.torn--b { top: 0; right: 0; transform: rotate(2deg); }
.torn--c { bottom: 0; right: 0; transform: rotate(-1.5deg); }
.torn--d { bottom: 0; left: 0; transform: rotate(1.6deg); }

/* ============================================================
   REPERCUSSÃO (página 12)
   ============================================================ */
.rep-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.rep-text p { color: var(--ink-2); margin: 8px 0 24px; }
.rep-stats { display: flex; flex-direction: column; gap: 16px; }
.rep-stat { display: flex; align-items: baseline; gap: 14px; border-left: 3px solid var(--rust); padding-left: 16px; }
.rep-stat .n { font-family: var(--font-head); font-weight: 600; font-size: clamp(26px, 3.4vw, 40px); color: var(--brown); line-height: 1; flex-shrink: 0; }
.rep-stat .n.money { font-size: clamp(20px, 2.6vw, 30px); }
.rep-stat .l { font-size: 14.5px; color: var(--ink-2); }
.rep-photo img {
  width: 100%; height: auto; filter: sepia(.3) saturate(.92) contrast(1.03);
  -webkit-mask-image: radial-gradient(ellipse 86% 88% at 50% 50%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 86% 88% at 50% 50%, #000 58%, transparent 100%);
}
@media (max-width: 900px) {
  .rep-grid { grid-template-columns: 1fr; gap: 34px; }
  .rep-photo { order: -1; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 880px) {
  .team6 { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .team6-photo { width: min(320px, 78%); }
  .team6 .torn { position: static; transform: none; max-width: 480px; width: 100%; clip-path: none; border-radius: 4px; }
}

/* ============================================================
   SOBRE A LIKEU
   ============================================================ */
.about-inner { max-width: 760px; margin: 0 auto; text-align: center; background: var(--note); border: 1px solid var(--line); border-radius: 14px; padding: 56px 52px; box-shadow: 0 26px 60px -34px rgba(74,47,23,0.5); }
.about-logo { height: 46px; width: auto; margin: 0 auto 22px; }
.about-inner p { color: var(--ink-2); font-size: 17px; line-height: 1.75; margin-bottom: 26px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--brown); }
.faq-q .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; color: var(--rust); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; transition: transform .3s; }
.faq-item.open .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; padding: 0 4px 22px; }

/* ============================================================
   CONTATO / FOOTER
   ============================================================ */
.contact { text-align: center; }
.contact-inner { max-width: 660px; margin: 0 auto; }
.contact-inner p { color: var(--ink-2); font-size: 17px; margin: 14px 0 30px; }
.footer { background: var(--brown); color: var(--paper); padding: 56px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-logo { height: 190px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) sepia(.3) saturate(3) hue-rotate(335deg); opacity: .92; }
.footer-brand p { color: rgba(244,235,213,0.65); font-size: 13.5px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-script); font-size: 22px; color: #e9b878; margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(244,235,213,0.78); font-size: 14px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(244,235,213,0.16); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: rgba(244,235,213,0.55); font-size: 12.5px; }
/* footer 4 colunas (estrutura 24-25/06) */
.footer-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: start; }
.f4-brand { max-width: 320px; }
.f4-brand p { color: rgba(244,235,213,0.65); font-size: 13.5px; }
.f4-title { font-family: var(--font-script); font-size: 22px; color: #e9b878; margin-bottom: 12px; }
.f4-col a { display: block; color: rgba(244,235,213,0.78); font-size: 14px; margin-bottom: 9px; transition: color .2s; }
.f4-col a:hover { color: #fff; }
.f4-social-desc { color: rgba(244,235,213,0.65); font-size: 13.5px; margin-bottom: 14px; }
.f4-likeu { display: block; height: 42px; width: auto; margin-top: 20px; opacity: .95; }
.f4-mini { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(244,235,213,0.55); margin: 12px 0 6px; }
.f4-mini:first-of-type { margin-top: 0; }
.f4-social { display: flex; gap: 12px; }
.f4-col a.f4-icon, .f4-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 0; border-radius: 9px; border: none; transition: filter .2s, transform .2s; }
.f4-col a.f4-icon--ig, .f4-icon--ig { background: var(--paper); color: var(--brown); }
.f4-col a.f4-icon--yt, .f4-icon--yt { background: var(--paper); color: var(--brown); }

/* ---- BOTÃO "ME AVISE EP2" (abaixo dos episódios) ---- */
.avise-wrap { display: flex; justify-content: center; margin-top: 34px; }
.btn-avise { display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; border-radius: 100px; background: transparent; color: var(--brown); border: 1.5px solid var(--line-2); font-family: var(--font-body); font-size: 14.5px; font-weight: 700; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.btn-avise:hover { background: rgba(74,47,23,0.06); border-color: var(--brown); transform: translateY(-2px); }

/* ---- VÍDEO DE BASTIDORES (player) ---- */
.bts-videos { margin-top: 40px; }
.bts-player { position: relative; max-width: 860px; margin: 0 auto; border-radius: 12px; overflow: hidden; background: #1c120a; box-shadow: 0 30px 70px -30px rgba(74,47,23,0.55); }
.bts-vid { display: block; width: 100%; height: auto; }
.bts-play-btn { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; width: 100%; background: rgba(40,26,13,0.35); color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .25s; }
.bts-play-btn:hover { background: rgba(40,26,13,0.5); }
.bts-play-btn.hidden { display: none; }

/* ---- PATROCINADORES (grade 3 colunas) ---- */
.sponsor-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: start; margin-top: 10px; }
.sponsor-4col .sponsor-tier { margin-top: 24px; }

/* ---- POPUP LEAD "AVISE-ME EP2" ---- */
.lead-overlay { display: none; position: fixed; inset: 0; z-index: 220; align-items: center; justify-content: center; padding: 24px; background: rgba(40,26,13,0.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lead-modal { position: relative; width: 100%; max-width: 430px; background: var(--paper); border-radius: 14px; padding: 38px 32px 30px; text-align: center; box-shadow: 0 40px 90px rgba(0,0,0,0.4); }
.lead-close { position: absolute; top: 10px; right: 16px; font-size: 30px; line-height: 1; color: var(--ink-2); background: none; border: none; cursor: pointer; padding: 6px; }
.lead-close:hover { color: var(--brown); }
.lead-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: rgba(179,90,36,0.12); color: var(--rust); }
.lead-icon svg { width: 28px; height: 28px; }
.lead-title { font-family: var(--font-head); font-size: 22px; color: var(--brown); margin-bottom: 8px; }
.lead-sub { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 22px; }
.lead-field { margin-bottom: 12px; }
.lead-field input { display: block; width: 100%; box-sizing: border-box; padding: 13px 16px; border: 1.5px solid var(--line-2); border-radius: 10px; background: #fff; font-family: var(--font-body); font-size: 15px; color: var(--ink); outline: none; transition: border-color .2s; }
.lead-field input:focus { border-color: var(--rust); }
.lead-submit { display: block; width: 100%; margin-top: 6px; padding: 14px; border: none; border-radius: 100px; background: var(--rust); color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer; transition: filter .2s, transform .2s; }
.lead-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.lead-privacy { font-size: 12px; color: var(--ink-2); opacity: .8; margin-top: 14px; }

/* ---- STICKY BAR (flutuante após o hero, desktop) ---- */
.sticky-bar { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 90px); z-index: 95; display: flex; align-items: center; gap: 16px; padding: 10px 12px 10px 22px; background: var(--brown); color: var(--paper); border-radius: 100px; box-shadow: 0 18px 50px -12px rgba(40,26,13,0.55); opacity: 0; pointer-events: none; transition: transform .35s, opacity .35s; }
.sticky-bar.visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.sticky-label { font-size: 13.5px; font-weight: 600; letter-spacing: .3px; white-space: nowrap; color: var(--paper); text-decoration: none; }
.sticky-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border: none; border-radius: 100px; background: var(--rust); color: #fff; font-family: var(--font-body); font-size: 13.5px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: filter .2s; text-decoration: none; }
.sticky-btn:hover { filter: brightness(1.08); }

/* barra CTA mobile se esconde quando o rodapé aparece */
.cta-bar.hidden-by-footer { display: none; }

/* ---- AVISO DE COOKIES (1x por usuário) ---- */
.cookie-note { position: fixed; left: 18px; bottom: 18px; z-index: 260; max-width: 360px; display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--brown); color: var(--paper); border-radius: 12px; box-shadow: 0 18px 50px -12px rgba(40,26,13,0.55); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .35s, transform .35s; }
.cookie-note.show { opacity: 1; transform: none; pointer-events: auto; }
.cookie-note p { font-size: 12.5px; line-height: 1.55; margin: 0; color: rgba(244,235,213,0.88); }
.cookie-note a { text-decoration: underline; color: var(--paper); }
.cookie-note button { flex: 0 0 auto; padding: 9px 16px; border: none; border-radius: 100px; background: var(--rust); color: #fff; font-family: var(--font-body); font-size: 12.5px; font-weight: 700; cursor: pointer; }
.cookie-note button:hover { filter: brightness(1.08); }
@media (max-width: 620px) { .cookie-note { left: 12px; right: 12px; bottom: 86px; max-width: none; } }
.f4-icon:hover { filter: brightness(1.12); transform: translateY(-2px); }
.f4-icon svg { display: block; }

/* ============================================================
   MODAL PLAYER
   ============================================================ */
.video-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; background: rgba(40,26,13,0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-frame { width: 100%; max-width: 960px; }
.video-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--paper); margin-bottom: 12px; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 10px; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-close { position: absolute; top: 22px; right: 24px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--paper); border: 1px solid rgba(244,235,213,0.3); border-radius: 50%; background: rgba(255,255,255,0.06); transition: background .2s; }
.video-close:hover { background: rgba(255,255,255,0.16); }
.video-close svg { width: 24px; height: 24px; }

/* ---- LIGHTBOX GALERIA ---- */
.gallery-grid .g-item img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 210; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 28px; background: rgba(40,26,13,0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: 6px; border: 5px solid var(--note); box-shadow: 0 30px 80px rgba(0,0,0,0.55); }
.lb-cap { color: var(--paper); font-size: 14px; opacity: .85; text-align: center; max-width: 82vw; }
.lb-close { position: absolute; top: 22px; right: 24px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--paper); border: 1px solid rgba(244,235,213,0.3); border-radius: 50%; background: rgba(255,255,255,0.06); transition: background .2s; cursor: pointer; }
.lb-close:hover { background: rgba(255,255,255,0.16); }
.lb-close svg { width: 24px; height: 24px; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; display: grid; place-items: center; color: var(--paper); border: 1px solid rgba(244,235,213,0.3); border-radius: 50%; background: rgba(255,255,255,0.06); transition: background .2s; cursor: pointer; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.16); }
.lb-prev svg, .lb-next svg { width: 26px; height: 26px; }
@media (max-width: 620px) {
  .lightbox { padding: 16px; }
  .lightbox img { max-width: 94vw; max-height: 66vh; }
  .lb-prev, .lb-next { top: auto; bottom: 20px; transform: none; }
  .lb-prev { left: auto; right: calc(50% + 10px); }
  .lb-next { right: auto; left: calc(50% + 10px); }
  .lb-close { top: 14px; right: 14px; }
}

/* ============================================================
   BARRA CTA MOBILE
   ============================================================ */
.cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; gap: 10px; padding: 7px 14px; background: rgba(244,235,213,0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--line-2); }
.cta-bar .btn { padding: 9px 10px; border-radius: 10px; font-size: 13px; flex: 1 1 0; }
.cta-bar .btn-ghost { flex-grow: 1.5; }
.cta-bar .btn-primary { flex-grow: 1; padding-left: 16px; padding-right: 16px; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .fade-in { opacity: 1; transform: none; } }

/* ============================================================
   HERO VIDEO THUMBNAIL + CINEMA OVERLAY
   ============================================================ */
.hero-video-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; background: none; cursor: pointer; padding: 0; display: block;
}
.hero-video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(.2) saturate(.95) contrast(1.02); transition: transform .5s ease; }
.hero-video-thumb:hover img { transform: scale(1.04); }
.hero-play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--rust); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform .25s, background .25s;
  pointer-events: none;
}
.hero-video-thumb:hover .hero-play-btn { transform: scale(1.1); background: var(--rust-dp); }
.hero-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

/* Cinema overlay */
.cinema-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cinema-overlay.open { opacity: 1; pointer-events: auto; }
.cinema-frame {
  position: relative; width: min(94vw, 1280px); aspect-ratio: 16/9;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}
.cinema-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.cinema-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  border: none; transition: background .2s;
}
.cinema-close:hover { background: rgba(255,255,255,0.22); }
.cinema-close svg { width: 22px; height: 22px; }

/* ---- MENU MOBILE ---- */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--paper); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: var(--brown); padding: 12px; }
.mobile-menu a:hover { color: var(--rust); }
.mobile-menu .btn-primary { margin-top: 18px; color: #fff; }
.mobile-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; color: var(--brown); display: grid; place-items: center; }
.mobile-close svg { width: 28px; height: 28px; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  :root { --pad-x: 28px; }
  .section { padding: 78px 0; }
  .nav-links, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 100px; }
  .navbar.scrolled .nav-logo-img { height: 66px; }
  .nav-logo { margin-top: 10px; margin-left: -8px; }
  .navbar.scrolled .nav-logo { margin-top: 4px; margin-left: -6px; }
  .nav-cta { margin-top: 14px; }
  /* hero: 2 col → 1 col */
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-cta-note { text-align: center; }
  .hero-seal { justify-content: center; }
  .hero-sketch--l, .hero-sketch--r { display: none; }
  .feat { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
  .serie-grid, .bts-grid { grid-template-columns: 1fr; gap: 40px; }
  .serie-art { order: -1; }
  .serie-art img { max-width: 360px; }
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .num:nth-child(3)::before { display: none; }
  .footer-4col { grid-template-columns: 1fr 1fr; }
  .sponsor-4col { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 620px) {
  :root { --pad-x: 20px; }
  .section { padding: 62px 0; }
  .nav-logo-img { height: 84px; }
  .navbar.scrolled .nav-logo-img { height: 58px; }
  .nav-logo { margin-top: 4px; margin-left: -6px; }
  .nav-cta { margin-top: 10px; }
  .hero { padding: 100px 0 60px; }
  .hero .container { padding-left: 14px; padding-right: 14px; }
  .hero-logo { height: clamp(70px, 12vh, 110px); }
  .hero-headline { font-size: 22px; }
  .hero-headline em { display: inline; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; }
  .hero-trailer-btn { padding: 14px 26px; }
  .hero-trailer-btn .btn-label-desktop { display: none; }
  .hero-trailer-btn .btn-label-mobile { display: inline; font-size: 15px; }
  .serie-cta-btn { padding: 10px 22px; font-size: 14px; line-height: 1.3; }
  .hero-seal { flex-wrap: nowrap; gap: 8px; font-size: 9px; letter-spacing: .4px; justify-content: center; }
  .hero-seal .seal-likeu { height: 22px; }
  .hero-seal .seal-piracanjuba { height: 24px; }
  .hero-seal .seal-div { height: 18px; }
  .scroll-hint { display: none; }
  .ep-grid, .credits-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .feat-body { padding: 28px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-tall { grid-row: span 1; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-4col { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding-bottom: 40px; } /* cta-bar some no rodapé; respiro normal */
  .footer .container { padding-left: 28px; }
  .sticky-bar { display: none; } /* no mobile a cta-bar já cumpre o papel */
  .cta-bar { display: flex; }
  body { padding-bottom: 0; } /* cta-bar se esconde no rodapé (hidden-by-footer), sem faixa sobrando */
}
