/* =====================================================
   CINE 81 — layout.css
   CSS completo extraído do mockup híbrido aprovado
   ===================================================== */

/* ── NAV — editorial: logo centralizada ─────────────── */
#main-nav {
  position: fixed; top: 28px; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: center; align-items: center;
  height: 80px; pointer-events: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}
#main-nav.scrolled {
  top: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.menu-open #main-nav { opacity: 0; pointer-events: none; }
.nav-logo-btn {
  pointer-events: all; background: none; border: none; padding: 0;
  cursor: none; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
}
.nav-logo-btn:hover { opacity: 0.72; }
.nav-logo-btn img { width: 200px; height: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); }

/* ── OVERLAY MENU FULLSCREEN ──────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--c90);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.38s cubic-bezier(0.4,0,0.2,1), visibility 0.38s;
}
.overlay.open { opacity: 1; visibility: visible; }
.ov-head { display: flex; align-items: center; justify-content: space-between; padding: 36px 52px 0; flex-shrink: 0; }
.ov-logo img { width: 180px; height: auto; opacity: 0.9; }
.ov-close {
  background: none; border: none; cursor: none;
  width: 48px; height: 48px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ov-close span {
  position: absolute; width: 28px; height: 1.5px; background: var(--branco);
  transition: transform 0.25s, opacity 0.2s;
}
.ov-close span:nth-child(1) { transform: rotate(45deg); }
.ov-close span:nth-child(2) { transform: rotate(-45deg); }
.ov-close:hover span { background: var(--laranja); }
.ov-links { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 52px; list-style: none; }
.ov-item {
  border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden;
  transform: translateY(32px); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s cubic-bezier(0.4,0,0.2,1);
}
.overlay.open .ov-item:nth-child(1) { transition-delay: 0.06s; }
.overlay.open .ov-item:nth-child(2) { transition-delay: 0.10s; }
.overlay.open .ov-item:nth-child(3) { transition-delay: 0.14s; }
.overlay.open .ov-item:nth-child(4) { transition-delay: 0.18s; }
.overlay.open .ov-item:nth-child(5) { transition-delay: 0.22s; }
.overlay.open .ov-item:nth-child(6) { transition-delay: 0.26s; }
.overlay.open .ov-item { transform: translateY(0); opacity: 1; }
.ov-item a {
  display: flex; align-items: baseline; gap: 20px; padding: 18px 0;
  font-family: var(--sans); font-size: clamp(32px,5vw,68px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1;
  color: rgba(255,255,255,0.85); transition: color 0.15s, padding-left 0.25s;
}
.ov-item a:hover { color: var(--laranja); padding-left: 12px; }
.ov-num {
  font-size: clamp(10px,1vw,13px); font-weight: 600;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.2);
  text-transform: uppercase; flex-shrink: 0; transition: color 0.15s; align-self: center;
}
.ov-item a:hover .ov-num { color: var(--laranja); }
.ov-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 24px 52px 40px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ov-contact { display: flex; flex-direction: column; gap: 6px; }
.ov-contact a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.ov-contact a:hover { color: var(--branco); }
.ov-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--laranja); color: var(--preto);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 28px; transition: background 0.15s;
  border: none; cursor: none; text-decoration: none;
}
.ov-cta:hover { background: var(--mel); }

/* ── HERO — vídeo fullscreen puro ────────────────────── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: var(--preto); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.hero-video.loaded { display: block; }
.yt-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.yt-hero-bg iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 177.78vh; height: 100vh; min-width: 100vw; min-height: 56.25vw; border: none; pointer-events: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,0.30) 0%,rgba(0,0,0,0.00) 30%,rgba(0,0,0,0.00) 60%,rgba(0,0,0,0.72) 100%);
}
.hero-deco {
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px; margin-right: 80px;
  background: linear-gradient(to bottom,transparent 10%,rgba(255,159,28,0.2) 50%,transparent 90%);
}
.hero-deco::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 1px; left: 60px;
  background: linear-gradient(to bottom,transparent 20%,rgba(46,196,182,0.12) 60%,transparent 90%);
}
.hero-socials {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px; z-index: 3;
}
.hero-socials a {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); writing-mode: vertical-rl; transition: color 0.2s;
}
.hero-socials a:hover { color: var(--laranja); }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px; transition: opacity 0.4s;
}
.scroll-hint span { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom,rgba(255,255,255,0.4),transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0; transform: scaleY(0.5) translateY(-8px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── HERO TEXT OVERLAY ───────────────────────────────── */
.hero-text-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  max-width: 1280px; margin: 0 auto; padding: 0 48px 80px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--laranja); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--laranja); }
.hero-h1 {
  font-family: var(--serif); font-size: clamp(44px,7vw,96px); font-weight: 900;
  line-height: 0.96; letter-spacing: -0.03em; color: var(--branco);
  max-width: 720px; margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--laranja); }
.hero-sub {
  font-size: clamp(14px,1.4vw,17px); color: rgba(255,255,255,0.55);
  max-width: 460px; line-height: 1.68; margin-bottom: 40px;
}
.hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .hero-text-overlay { padding: 0 20px 64px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── WELCOME PAGE (front-page) ──────────────────────── */
.welcome-page { height: 100vh; overflow: hidden; }
.welcome-hero { position: relative; height: 100vh; }
.welcome-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.welcome-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.10) 40%,rgba(0,0,0,0.65) 100%);
}
.welcome-logo {
  position: absolute; top: 48px; left: 50%; transform: translateX(-50%); z-index: 3;
}
.welcome-logo img { width: 200px; height: auto; }
.welcome-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.welcome-tagline {
  font-size: clamp(13px,1.8vw,17px); letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 40px;
}
.welcome-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-welcome-primary {
  display: inline-flex; align-items: center;
  background: var(--laranja); color: var(--preto);
  font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 40px; transition: background 0.15s;
}
.btn-welcome-primary:hover { background: var(--mel); }
.btn-welcome-secondary {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.5); color: var(--branco);
  font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 40px; transition: border-color 0.15s, background 0.15s;
}
.btn-welcome-secondary:hover { border-color: var(--branco); background: rgba(255,255,255,0.06); }

/* ── MANIFESTO ───────────────────────────────────────── */
.manifesto {
  background: var(--preto); padding: 100px 0 88px;
  position: relative; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.manifesto::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom,var(--laranja) 0%,transparent 100%);
}
.manifesto-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.manifesto-tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--laranja); margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.manifesto-tag::before { content: ''; width: 28px; height: 1px; background: var(--laranja); }
.manifesto-h1 {
  font-family: var(--serif); font-size: clamp(52px,8vw,108px); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.03em; color: var(--branco);
  max-width: 860px; margin-bottom: 32px;
}
.manifesto-h1 em { font-style: normal; color: var(--laranja); }
.manifesto-sub { font-size: 17px; color: rgba(255,255,255,0.52); max-width: 480px; line-height: 1.68; margin-bottom: 48px; }
.manifesto-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── BOTÕES GLOBAIS ──────────────────────────────────── */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--laranja); color: var(--preto);
  font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 2px; transition: all 0.2s;
}
.btn-p:hover { background: var(--mel); transform: translateY(-1px); }
.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 4px; transition: all 0.2s;
}
.btn-g:hover { color: var(--laranja); border-color: var(--laranja); }

/* ── STRIP DE CASES ──────────────────────────────────── */
.hero-strip { background: rgba(0,0,0,0.75); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.05); }
.strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(4,1fr); }
.strip-item { position: relative; height: 150px; overflow: hidden; border-right: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.strip-item:last-child { border-right: none; }
.strip-bg { position: absolute; inset: 0; transition: transform 0.4s ease; }
.strip-item:hover .strip-bg { transform: scale(1.05); }
.strip-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.1) 100%); padding: 18px 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.strip-cat { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--laranja); margin-bottom: 5px; }
.strip-name { font-family: var(--serif); font-size: 13px; font-weight: 900; color: var(--branco); line-height: 1.2; letter-spacing: -0.01em; }
.strip-org { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 3px; }
.strip-play { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.strip-play svg { width: 10px; height: 10px; fill: var(--branco); margin-left: 2px; }

/* ── STATS ───────────────────────────────────────────── */
.stats { background: var(--c80); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 52px 0; }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.05); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: 54px; font-weight: 900; color: var(--laranja); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
.stat-l { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c30); }

/* ── LABELS / TÍTULOS ────────────────────────────────── */
.lbl { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--laranja); margin-bottom: 16px; display: block; }
.sec-title { font-family: var(--serif); font-size: clamp(28px,3.6vw,48px); font-weight: 900; line-height: 1.06; color: var(--branco); letter-spacing: -0.025em; }
.sec-sub { font-size: 16px; color: var(--c30); line-height: 1.75; max-width: 520px; }
.divider { width: 40px; height: 2px; background: var(--laranja); margin: 20px 0; }

/* ── SOBRE ───────────────────────────────────────────── */
.sobre { background: var(--c90); padding: 112px 0; position: relative; overflow: hidden; }
.sobre::before { content: '14'; position: absolute; font-family: var(--serif); font-size: 340px; font-weight: 900; color: rgba(255,255,255,0.018); right: -20px; top: 50%; transform: translateY(-50%); line-height: 1; pointer-events: none; letter-spacing: -16px; }
.sobre-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.sobre-l p { font-size: 15.5px; color: var(--c30); line-height: 1.8; margin-bottom: 18px; }
.sobre-l p strong { color: var(--branco); }
.sobre-l blockquote { font-size: 15.5px; color: var(--laranja); font-style: italic; margin: 18px 0; }
.timeline { position: relative; padding-left: 20px; margin-top: 36px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom,var(--laranja),var(--teal)); }
.tl-item { margin-bottom: 22px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: -25px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--laranja); border: 2px solid var(--c90); }
.tl-year { font-size: 10.5px; color: var(--laranja); font-weight: 600; letter-spacing: 0.1em; }
.tl-ev { font-size: 13.5px; color: var(--c30); margin-top: 2px; }
.sobre-r { position: relative; padding-bottom: 60px; }
.sobre-frame { border: 1px solid rgba(255,255,255,0.06); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--c70) center/cover no-repeat; }
.premios-card { position: absolute; bottom: 0; left: -28px; background: var(--c80); border: 1px solid rgba(255,255,255,0.07); padding: 22px 26px; min-width: 190px; z-index: 2; box-shadow: 0 8px 32px rgba(0,0,0,0.45); }
.premio { margin-bottom: 14px; }
.premio:last-child { margin-bottom: 0; }
.premio-ico { font-size: 18px; margin-bottom: 3px; }
.premio-nm { font-weight: 700; font-size: 12.5px; color: var(--branco); }
.premio-yr { font-size: 11px; color: var(--c50); margin-top: 1px; }

/* ── SERVIÇOS ────────────────────────────────────────── */
.servicos { background: var(--preto); padding: 112px 0; }
.servicos-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.servicos-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 64px; align-items: end; }
.sec-title-line { display: flex; align-items: center; gap: 24px; font-family: var(--serif); font-size: clamp(24px,2.8vw,38px); font-weight: 900; color: var(--branco); margin-top: 12px; letter-spacing: -0.02em; }
.sec-title-line::before,.sec-title-line::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.sec-title-line::before { max-width: 40px; }
.serv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); }
.serv-card { background: var(--c90); padding: 40px 32px; transition: background 0.3s; }
.serv-card:hover { background: var(--c80); }
.serv-icon { width: 46px; height: 46px; background: rgba(255,159,28,0.07); border: 1px solid rgba(255,159,28,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.serv-icon svg { width: 20px; height: 20px; fill: var(--laranja); }
.serv-nm { font-family: var(--serif); font-size: 16px; font-weight: 900; color: var(--branco); margin-bottom: 10px; line-height: 1.2; letter-spacing: -0.02em; }
.serv-desc { font-size: 13.5px; color: var(--c30); line-height: 1.65; }

/* ── PORTFÓLIO ───────────────────────────────────────── */
/* ── PORTFOLIO STRIP ─────────────────────────────────── */
.port-strip { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 72vh; min-height: 480px; max-height: 720px; background: var(--preto); }
.ps-card { position: relative; overflow: hidden; display: block; }
.ps-card--big { grid-row: 1 / 3; }
.ps-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.ps-card:hover .ps-img { transform: scale(1.04); }
.ps-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 32px; transition: background 0.3s; }
.ps-card:hover .ps-ov { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.05) 100%); }
.ps-cat { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; display: block; }
.ps-title { font-family: var(--serif); font-weight: 900; letter-spacing: -0.02em; color: var(--branco); line-height: 1.1; margin: 0; }
.ps-card--big .ps-title { font-size: clamp(22px, 2.8vw, 38px); }
.ps-card--sm .ps-title { font-size: clamp(15px, 1.6vw, 22px); }
.ps-card--sm .ps-ov { padding: 20px 24px; }

.portfolio { background: var(--c90); padding: 112px 0; }
.portfolio-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.port-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.port-hdr a { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--laranja); font-weight: 600; border-bottom: 1px solid var(--laranja); padding-bottom: 3px; }
.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.port-card { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--c70); cursor: pointer; }
.port-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.port-bg-empty { background: var(--c70); }
.port-card:hover .port-bg { transform: scale(1.06); }
.port-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.92) 0%,rgba(0,0,0,0.05) 55%); padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; }
.port-cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 7px; }
.port-nm { font-family: var(--serif); font-size: 17px; font-weight: 900; color: var(--branco); line-height: 1.15; margin-bottom: 4px; letter-spacing: -0.02em; }
.port-cl { font-size: 11.5px; color: rgba(255,255,255,0.42); }
.port-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.port-card:hover .port-play { opacity: 1; }
.port-play svg { width: 16px; height: 16px; fill: var(--branco); margin-left: 3px; }

/* Filtros de portfólio */
.port-filters { display: flex; gap: 0; margin-bottom: 40px; border: 1px solid rgba(255,255,255,0.08); width: fit-content; }
.port-filters button {
  background: none; border: none; padding: 10px 24px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c30);
  cursor: pointer; transition: color 0.2s, background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.port-filters button:last-child { border-right: none; }
.port-filters button:hover { color: var(--branco); }
.port-filters button.active { color: var(--preto); background: var(--laranja); }

/* Barra de URL compartilhável */
.filter-url-bar { display: none; align-items: center; gap: 12px; margin-bottom: 28px; padding: 10px 16px; background: var(--c80); border: 1px solid rgba(255,255,255,0.06); font-size: 12px; }
.filter-url-bar span { color: var(--c30); font-size: 11px; }
.filter-url-display { color: var(--laranja); flex: 1; }
.filter-url-bar button { background: none; border: 1px solid rgba(255,255,255,0.15); color: var(--c30); padding: 4px 12px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.filter-url-bar button:hover { color: var(--branco); border-color: var(--branco); }

/* Empty state */
.port-empty { text-align: center; padding: 80px 0; color: var(--c30); font-size: 14px; display: none; }
.port-grid:empty + .port-empty { display: block; }

/* ── DEPOIMENTOS ─────────────────────────────────────── */
.deps { background: var(--c80); padding: 112px 0; }
.deps-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.deps-hdr { margin-bottom: 52px; }
.deps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dep { background: var(--c70); border: 1px solid rgba(255,255,255,0.05); padding: 38px; transition: border-color 0.3s; }
.dep:hover { border-color: rgba(255,159,28,0.18); }
.dep-stars { color: var(--laranja); font-size: 12px; letter-spacing: 3px; margin-bottom: 14px; }
.dep-q { font-family: var(--serif); font-size: 56px; line-height: 0.65; font-weight: 900; color: rgba(255,159,28,0.22); margin-bottom: 10px; }
.dep-txt { font-size: 14.5px; color: var(--c30); line-height: 1.75; font-style: italic; margin-bottom: 28px; }
.dep-auth { display: flex; align-items: center; gap: 14px; }
.dep-av { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.08); overflow: hidden; background: var(--c70); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--laranja); }
.dep-av img { width: 100%; height: 100%; object-fit: cover; }
.dep-nm { font-weight: 700; font-size: 13.5px; color: var(--branco); }
.dep-rl { font-size: 11.5px; color: var(--c50); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { background: var(--c90); padding: 112px 0; }
.faq-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.faq-info p { font-size: 15.5px; color: var(--c30); line-height: 1.75; margin: 18px 0 30px; }
.faq-list { display: flex; flex-direction: column; }
.fi { border-bottom: 1px solid rgba(255,255,255,0.05); }
.fi-q { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.fi-qt { font-size: 14.5px; font-weight: 600; color: var(--branco); }
.fi-ico { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--laranja); line-height: 1; transition: transform 0.25s, border-color 0.25s; }
.fi.open .fi-ico { transform: rotate(45deg); border-color: var(--laranja); }
.fi-a { font-size: 14px; color: var(--c30); line-height: 1.72; padding-bottom: 22px; display: none; }
.fi.open .fi-a { display: block; }

/* ── CONTATO ─────────────────────────────────────────── */
.contato { position: relative; padding: 0; overflow: hidden; }
.contato-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 68% 48%,rgba(255,159,28,0.09) 0%,transparent 55%),
    linear-gradient(135deg,rgba(10,6,0,0.96) 0%,rgba(21,14,0,0.92) 50%,rgba(8,8,8,0.97) 100%);
}
.contato-bg.has-img {
  background: radial-gradient(ellipse at 68% 48%,rgba(255,159,28,0.09) 0%,transparent 55%),
    linear-gradient(135deg,rgba(10,6,0,0.96) 0%,rgba(21,14,0,0.92) 50%,rgba(8,8,8,0.97) 100%),
    var(--contato-bg-img) center/cover no-repeat;
}
.contato-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 112px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.contato-l p { font-size: 16.5px; color: var(--c30); line-height: 1.72; margin: 18px 0 36px; }
.cinfo { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.ci { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--c30); }
.ci svg { width: 16px; height: 16px; fill: var(--laranja); flex-shrink: 0; }
.form-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 46px; backdrop-filter: blur(8px); }
.form-ttl { font-family: var(--serif); font-size: 22px; font-weight: 900; margin-bottom: 28px; line-height: 1.2; letter-spacing: -0.02em; }
/* Formulário de contato customizado */
.fld { margin-bottom: 18px; }
.fld label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c30); margin-bottom: 8px; display: block; font-weight: 600; }
.fld input,
.fld textarea,
.fld select {
  box-sizing: border-box; width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--branco);
  font-family: var(--sans); font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  appearance: none; -webkit-appearance: none;
}
.fld input:focus,
.fld textarea:focus,
.fld select:focus {
  border-color: var(--laranja);
  background: rgba(255,159,28,0.05);
}
.fld input::placeholder,
.fld textarea::placeholder { color: rgba(255,255,255,0.25); font-size: 13.5px; }
.fld textarea { height: 120px; resize: vertical; }
.fld select {
  background-color: rgba(255,255,255,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF9F1C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  color: var(--branco);
}
.fld select option { background: var(--c80); color: var(--branco); }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--c90); border-top: 1px solid rgba(255,255,255,0.03); padding: 68px 0 36px; }
.ft-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.ft-brand p { font-size: 13.5px; color: var(--c50); line-height: 1.7; max-width: 260px; margin-top: 14px; }
.ft-social { display: flex; gap: 10px; margin-top: 20px; }
.ft-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.ft-social a:hover { border-color: var(--laranja); }
.ft-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.4); }
.ft-col h4 { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--laranja); margin-bottom: 18px; font-weight: 600; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul a { font-size: 13.5px; color: var(--c50); transition: color 0.2s; }
.ft-col ul a:hover { color: var(--branco); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 12.5px; color: var(--c50); }
.ft-copy a { color: var(--laranja); }
.ft-made { font-size: 11.5px; color: rgba(255,255,255,0.12); }
.ft-made a { color: rgba(255,255,255,0.2); }

/* ── SINGLE PORTFOLIO ────────────────────────────────── */
.proj-hero { position: relative; height: 60vh; min-height: 480px; overflow: hidden; background: var(--c90); }
.proj-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-hero-bg--empty { background: var(--c80); }
.proj-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.8) 100%); }
.proj-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 48px 64px; }
.proj-cat-badge { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--laranja); margin-bottom: 12px; }
.proj-title { font-family: var(--serif); font-size: clamp(32px,5vw,72px); font-weight: 900; color: var(--branco); line-height: 1; letter-spacing: -0.03em; margin-bottom: 12px; }
.proj-meta { font-size: 14px; color: rgba(255,255,255,0.5); }
.proj-body { max-width: 1280px; margin: 0 auto; padding: 80px 48px; }
.proj-video-wrap { position: relative; aspect-ratio: 16/9; background: var(--c90); margin-bottom: 64px; overflow: hidden; }
.proj-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.proj-descricao { max-width: 720px; }
.proj-descricao h2 { font-family: var(--serif); font-size: 28px; font-weight: 900; color: var(--branco); margin-bottom: 20px; letter-spacing: -0.02em; }
.proj-descricao p { font-size: 16px; color: var(--c30); line-height: 1.8; margin-bottom: 16px; }
.proj-ficha { margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.proj-ficha h3 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--laranja); margin-bottom: 16px; }
.proj-ficha pre { font-family: var(--sans); font-size: 14px; color: var(--c30); line-height: 1.8; white-space: pre-wrap; }
.proj-galeria { margin-top: 64px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.pg-thumb { position: relative; padding: 0; border: none; background: none; cursor: zoom-in; overflow: hidden; aspect-ratio: 16/10; display: block; }
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, opacity 0.3s; }
.pg-thumb:hover img { transform: scale(1.05); opacity: 0.85; }
/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.96); display: flex; align-items: center; justify-content: center; }
.lb[hidden] { display: none; }
.lb-stage { max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
#lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; transition: opacity 0.2s ease; display: block; }
.lb-close { position: fixed; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 28px; cursor: pointer; z-index: 10000; line-height: 1; padding: 8px; transition: color 0.2s; }
.lb-close:hover { color: var(--branco); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: var(--branco); font-size: 22px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10000; transition: background 0.2s; }
.lb-nav:hover { background: rgba(255,159,28,0.25); border-color: var(--laranja); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); }
.proj-nav { margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; }
.proj-nav a { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c30); transition: color 0.2s; }
.proj-nav a:hover { color: var(--laranja); }
.proj-cta { background: var(--c80); padding: 80px 48px; text-align: center; }
.proj-cta h2 { font-family: var(--serif); font-size: clamp(24px,3vw,40px); font-weight: 900; color: var(--branco); margin-bottom: 24px; letter-spacing: -0.02em; }
.proj-cta p { color: var(--c30); font-size: 15px; margin-bottom: 32px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-inner { gap: 48px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .servicos-hdr { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .contato-inner { gap: 48px; }
  .faq-wrap { gap: 48px; }
}

@media (max-width: 768px) {
  #main-nav { top: 16px; height: 64px; }
  #main-nav.scrolled { top: 0; }
  .nav-logo-btn img { width: 160px; }
  .ov-head { padding: 24px 24px 0; }
  .ov-links { padding: 0 24px; }
  .ov-item a { font-size: clamp(28px,9vw,48px); }
  .ov-foot { padding: 20px 24px 32px; flex-direction: column; gap: 20px; align-items: flex-start; }

  .hero-socials { display: none; }
  .hero-deco { display: none; }
  .hero-strip { overflow-x: auto; }
  .strip-inner { display: flex; min-width: max-content; padding: 0; grid-template-columns: none; }
  .strip-item { width: 200px; flex-shrink: 0; height: 140px; }

  .manifesto { padding: 64px 0 56px; }
  .manifesto-inner { padding: 0 20px; }
  .manifesto-btns { flex-direction: column; align-items: flex-start; gap: 14px; }

  .stats { padding: 36px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .stat { padding: 18px 12px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05) !important; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-n { font-size: 40px; }

  .sobre { padding: 72px 0; }
  .sobre::before { font-size: 180px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .sobre-r { padding-bottom: 40px; }
  .premios-card { left: 0; bottom: -20px; min-width: 160px; padding: 16px 18px; }

  .servicos { padding: 72px 0; }
  .servicos-inner { padding: 0 20px; }
  .servicos-hdr { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .serv-grid { grid-template-columns: 1fr 1fr; }

  .portfolio { padding: 72px 0; }
  .portfolio-inner { padding: 0 20px; }
  .port-hdr { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .port-grid { grid-template-columns: 1fr; }
  .port-card { aspect-ratio: 16/9; }

  .deps { padding: 72px 0; }
  .deps-inner { padding: 0 20px; }
  .deps-grid { grid-template-columns: 1fr; }
  .dep { padding: 28px; }

  .faq { padding: 72px 0; }
  .faq-inner { padding: 0 20px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }

  .contato-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 20px; }
  .form-box { padding: 28px; }

  footer { padding: 52px 0 28px; }
  .ft-inner { padding: 0 20px; }
  .ft-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .proj-hero { height: 50vh; }
  .proj-hero-content { padding: 0 20px 40px; }
  .proj-body { padding: 48px 20px; }
  .proj-galeria { grid-template-columns: 1fr 1fr; }
  .proj-cta { padding: 56px 20px; }

  .welcome-tagline { font-size: 11px; }
  .welcome-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-welcome-primary, .btn-welcome-secondary { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .serv-grid { grid-template-columns: 1fr; }
  .proj-galeria { grid-template-columns: 1fr; }
}
