/* =========================================================
   ISAX — DJ Site
   Tema: dark / editorial / cinematográfico
   ========================================================= */

:root {
  --bg: #08080a;
  --bg-soft: #0e0e12;
  --surface: #131318;
  --surface-2: #1a1a21;
  --border: #26262f;
  --text: #f2f1f5;
  --text-dim: #a9a7b3;
  --text-faint: #6f6d78;
  --accent: #8b5cf6;
  --accent-2: #4f9cf9;
  --accent-soft: rgba(139, 92, 246, 0.15);
  --whatsapp: #25d366;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html.intro-lock, html.intro-lock body { overflow: hidden; height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, select, textarea { cursor: none; }
}

a { color: inherit; text-decoration: none; }

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

/* subtle film-grain overlay for the whole page */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Intro / loading screen ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #08080a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.intro.intro-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-inner {
  text-align: center;
}
.intro-logo {
  display: inline-block;
  width: clamp(180px, 32vw, 340px);
  height: auto;
  opacity: 0;
  transform: translateY(14px);
  animation: introLogoIn 1s ease forwards .15s;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4));
}
@keyframes introLogoIn {
  to { opacity: 1; transform: translateY(0); }
}
.intro-tag {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  animation: introLogoIn .8s ease forwards .55s;
}
.intro-bar {
  margin: 34px auto 0;
  width: 160px;
  height: 2px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.intro-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reactive background canvas ---------- */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 998;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent-2);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(139,92,246,0.55);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}
.cursor-ring.cursor-hover {
  width: 56px; height: 56px;
  background: rgba(139,92,246,0.12);
  border-color: var(--accent-2);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,10,0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,8,10,0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 26px;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }

.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}
.header-social a {
  display: flex;
  color: var(--text-dim);
  transition: color .2s ease, transform .2s ease;
}
.header-social a:hover { color: var(--accent-2); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(139,92,246,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(139,92,246,0.75); }

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #04210f;
}
.btn-whatsapp:hover { transform: translateY(-2px); }

.header-cta { font-size: 13px; padding: 10px 18px; }

.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 130px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 0;
  opacity: 1;
  filter: saturate(1.05);
}
.hero-photo-mobile { display: none; }
@media (max-width: 720px) {
  .hero-photo-desktop { display: none; }
  .hero-photo-mobile {
    display: block;
    object-position: 50% 22%;
  }
  .hero { padding-bottom: 110px; }
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0) 0%, rgba(8,8,10,0) 52%, rgba(8,8,10,0.5) 82%, #08080a 100%);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  left: 50%; top: 62%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.14), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  font-weight: 600;
  margin: 0 0 14px;
}
.eyebrow.center, h1.center, h2.center, .section-sub.center { text-align: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 160px);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 30%, #b9a6f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55)) drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em) rotate(4deg);
  animation: charIn .8s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--i) * 60ms + .1s);
  background: linear-gradient(135deg, #fff 30%, #b9a6f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-sub {
  max-width: 560px;
  color: var(--text-dim);
  font-size: 17px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 8px;
  background: var(--accent-2);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { opacity: 0; top: 6px; }
  40% { opacity: 1; }
  100% { opacity: 0; top: 18px; }
}

/* ---------- Proof strip ---------- */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.proof-item strong {
  font-family: var(--font-display);
  font-size: 22px;
}
.proof-item span {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Sections ---------- */
.section { padding: 120px 0; }
.section h2, .section h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 16px;
}
.accent { color: var(--accent-2); }
.servicos-page { padding-top: 168px; }
.servicos-title { overflow: hidden; text-overflow: ellipsis; }
.servicos-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}

/* ---------- Sobre ---------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.sobre-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.sobre-text h2 { max-width: 480px; }
.sobre-text p {
  color: var(--text-dim);
  margin: 0 0 18px;
  max-width: 520px;
}
.sobre-text strong { color: var(--text); }

/* ---------- Placeholder photo blocks ---------- */
.ph-photo {
  position: relative;
  background:
    linear-gradient(135deg, rgba(139,92,246,0.16), rgba(79,156,249,0.10)),
    repeating-linear-gradient(45deg, #131318 0 2px, #16161c 2px 4px);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 12px;
  text-align: center;
  overflow: hidden;
}
.ph-photo::before {
  content: attr(data-ph);
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8,8,10,0.6);
}

/* ---------- Cards / Serviços ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cards-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.card-body { flex: 1 1 auto; }
.card-cta {
  margin-top: 24px;
  align-self: stretch;
}
.card-icon {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 12px;
}
.card p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0 0 18px;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card ul li {
  font-size: 13.5px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* ---------- Processo ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 17px;
  margin: 0 0 10px;
}
.step p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
}

/* ---------- Portfolio ---------- */
.portfolio {
  border-top: 1px solid var(--border);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 24px;
}
@media (min-width: 721px) {
  .gallery-mobile-only { display: none; }
}
.gallery-item {
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover { transform: scale(1.03) translateY(-4px); }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.08);
  filter: saturate(1.15);
}
.video-section { border-top: 1px solid var(--border); padding-top: 90px; scroll-margin-top: 90px; }
.video-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: center;
  margin: 0 auto 90px;
  max-width: 800px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-embed { margin-top: 0; }
.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 1px solid var(--border);
}
.yt-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .3s ease;
}
.yt-embed:hover img { transform: scale(1.03); filter: brightness(0.75); }
.yt-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 54px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
  z-index: 1;
  padding: 0;
}
.yt-embed:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); }
.yt-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ---------- Parceria ---------- */
.parceria {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parceria-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0.28;
}
.parceria::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,18,0.55), rgba(14,14,18,0.92));
}
.parceria-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  align-items: center;
  gap: 64px;
  max-width: 980px;
  text-align: left;
}
.parceria-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.parceria-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.parceria-text h2 { margin-bottom: 12px; }
.parceria-text p { color: var(--text-dim); }
.parceria-text p + p { margin-top: 14px; }

@media (max-width: 720px) {
  .parceria-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .parceria-media { max-width: 260px; margin: 0 auto; }
}

/* ---------- Contato ---------- */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contato-info h2 { margin-bottom: 12px; }
.contato-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contato-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color .2s ease;
}
a.contato-link:hover { border-color: var(--accent); }
.contato-label {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contato-value { font-weight: 600; }
.contato-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.contato-social a {
  font-size: 14px;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
}
.contato-social a:hover { color: var(--accent-2); border-color: var(--accent-2); }

.contato-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 13px; color: var(--text-dim); }
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}
.form-row input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.7);
}
.form-note {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner p {
  color: var(--text-faint);
  font-size: 13px;
  margin: 0;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}
.footer-social a {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-social a:hover { color: var(--accent-2); }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  color: #04210f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
  z-index: 90;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 99;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .section { padding: 80px 0; }
  .footer-inner { justify-content: flex-start; }
  .footer-social { justify-content: flex-start; padding-right: 64px; }
  .header-social {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    gap: 14px;
    margin-right: auto;
  }
  .header-social a svg { width: 20px; height: 20px; }
  .video-section { padding-top: 40px; scroll-margin-top: 80px; }
  .video-title {
    font-size: clamp(13px, 4vw, 17px);
    letter-spacing: -0.01em;
    white-space: nowrap;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .section h1.servicos-title {
    font-size: clamp(16px, 5vw, 20px);
    letter-spacing: -0.015em;
    white-space: nowrap;
    max-width: 100%;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .bg-canvas { display: none; }
}
