:root {
  --bg: #0e0e0f;
  --bg-alt: #161618;
  --text: #f1f1ee;
  --text-muted: #a8a8a3;
  --accent: #d9853b;
  --border: #2a2a2c;
  --max-width: 1140px;
  --radius: 4px;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Quicksand", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-editorial: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-family: var(--font-sans);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

p { font-family: var(--font-body); }

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

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

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }

.eyebrow {
  display: block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow--center { text-align: center; }

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #15110a;
  box-shadow: 0 6px 18px rgba(217, 133, 59, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(217, 133, 59, 0.45);
}

.btn--primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(217, 133, 59, 0.2);
}

.btn--outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn--pill {
  border-radius: 30px;
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 700;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #25d366;
  color: #0c1a10;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  opacity: 1;
}

.btn--whatsapp:active {
  transform: scale(0.97);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp svg { flex-shrink: 0; }

.btn--play:hover .btn__icon {
  background: rgba(255,255,255,0.12);
  transform: scale(1.15);
}

/* Pássaros animados (hero) */
.hero__birds { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.bird {
  position: absolute;
  fill: none;
  stroke: rgba(8,4,0,0.6);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.bird--1 { width: 28px; top: 14%; left: 16%;  animation: bird-drift  9.0s ease-in-out infinite 0.0s; }
.bird--2 { width: 20px; top: 23%; left: 44%;  animation: bird-drift  7.0s ease-in-out infinite 1.4s; }
.bird--3 { width: 15px; top: 17%; left: 65%;  animation: bird-drift  8.2s ease-in-out infinite 2.8s; }
.bird--4 { width: 24px; top: 10%; left: 77%;  animation: bird-drift 10.0s ease-in-out infinite 0.7s; }
.bird--5 { width: 13px; top: 29%; left: 31%;  animation: bird-drift  6.5s ease-in-out infinite 2.1s; }
.bird--6 { width: 19px; top: 19%; left: 57%;  animation: bird-drift  8.8s ease-in-out infinite 3.6s; }

@keyframes bird-drift {
  0%   { transform: translate(0px,   0px) rotate( 0deg); }
  25%  { transform: translate(8px, -13px) rotate(-3deg); }
  50%  { transform: translate(16px,  -6px) rotate(2deg); }
  75%  { transform: translate(9px, -16px) rotate(-2deg); }
  100% { transform: translate(0px,   0px) rotate( 0deg); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(14, 14, 15, 0.45);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.header--scrolled {
  background: rgba(14, 14, 15, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header--scrolled .header__inner { height: 46px; }

.header__inner {
  transition: height 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 36px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.nav a:hover { color: var(--accent); }

@media (min-width: 1024px) {
  .header .container { padding: 0 64px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

/* Texto vazado decorativo — "VIDEOMAKER" como watermark outline no hero */
.hero::after {
  content: "VIDEOMAKER";
  position: absolute;
  bottom: 20px;
  right: -10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  color: transparent;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-placeholder {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  height: 130%;
  will-change: transform;
  overflow: hidden;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 15%, rgba(14,14,15,0.35) 0%, rgba(14,14,15,0.6) 50%, rgba(14,14,15,0.88) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 18vh;
  padding: 0 24px;
  text-align: center;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
  display: block;
  /* Gradiente âmbar → branco */
  background: linear-gradient(135deg, #ffffff 30%, #d9853b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__roles {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  /* Entrada cinematográfica: expande o tracking e sobe */
  opacity: 0;
  animation: hero-roles-in 1s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 1.8s;
}

@keyframes hero-roles-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    letter-spacing: 0.3em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.05em;
  }
}

/* ── Demo Reel card ── */
.hero__reel-card {
  display: block;
  position: relative;
  width: clamp(240px, 36vw, 440px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 20px;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  animation: hero-btn-in 0.7s ease both;
  animation-delay: 2.1s;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.hero__reel-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.025);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.hero__reel-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d10 0%, #17171b 100%);
}

.hero__reel-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 9, 0.25);
  transition: background 0.3s ease;
}

.hero__reel-card:hover .hero__reel-card__overlay {
  background: rgba(8, 8, 9, 0.05);
}

.hero__reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.hero__reel-card:hover .hero__reel-card__play {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -54%) scale(1.12);
}

.hero__reel-card__label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.hero__reel-card:hover .hero__reel-card__label { color: rgba(255, 255, 255, 0.75); }

/* ── Tagline (legenda abaixo do card) ── */
.hero__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  color: rgba(200, 200, 196, 0.82);
  line-height: 1.7;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  animation: hero-btn-in 0.7s ease both;
  animation-delay: 2.5s;
}

@keyframes hero-btn-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__roles i {
  font-style: normal;
  color: var(--accent);
  opacity: 0.5;
  margin: 0 6px;
}

.roles--sm { display: none; }

.btn--play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(241,241,238,0.5);
  transition: text-decoration-color 0.2s ease, opacity 0.2s ease;
}

.btn--play:hover { text-decoration-color: var(--text); opacity: 0.85; }

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--text);
  border-radius: 50%;
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.btn--play:hover .btn__icon { transform: scale(1.08); }

.hero__bottom-ctas {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
}

.hero__cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero__cta-pill:hover { border-color: var(--text); color: var(--accent); }
.hero__cta-pill span { font-size: 1.1rem; line-height: 1; }

.hero__arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero__arrow:hover { color: var(--text); }

/* Marquee de marcas */
.marcas {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marcas__eyebrow {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.marcas__track-wrapper {
  overflow: hidden;
  /* Fade suave nas bordas — sem corte abrupto */
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.marcas__track {
  display: flex;
  align-items: center;
  width: max-content;
  /* Anima apenas transform — zero reflow */
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

/* Pausa ao passar o mouse em qualquer ponto da faixa */
.marcas__track-wrapper:hover .marcas__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marca-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 32px;
  margin: 0 16px;
  min-width: 110px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.marca-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}

.marca-item img {
  height: 36px;
  width: auto;
  display: block;
  filter: grayscale(1) brightness(2) opacity(0.85);
  transition: filter 0.3s ease;
}

.marca-item:hover img { filter: grayscale(0) brightness(1) opacity(1); }

/* Puma — logo escuro: inverte para aparecer claro no fundo dark */
.marca-item img[src*="puma"] {
  filter: grayscale(1) invert(1) brightness(1.6) opacity(0.88);
}
.marca-item:hover img[src*="puma"] { filter: invert(1) brightness(1) opacity(1); }

/* Eletra — PNG com fundo branco: inverte o fundo para escuro */
.marca-item img[src*="eletra"] {
  filter: grayscale(1) invert(1) brightness(2) opacity(0.88);
}
.marca-item:hover img[src*="eletra"] { filter: invert(1) brightness(1) opacity(1); }

/* Sobre */
.sobre { padding: 120px 0; background: var(--bg-alt); }

.sobre__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-areas: "text media" "text stats";
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
}

.sobre__text  { grid-area: text; }
.sobre__media { grid-area: media; }
.sobre__stats { grid-area: stats; }

.img-placeholder {
  aspect-ratio: 4/5;
  background: #1c1c1e;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.img-placeholder--circle {
  aspect-ratio: 1/1;
  width: 220px;
  margin: 0 auto;
  border-radius: 50%;
}

.sobre__photo {
  object-fit: cover;
  object-position: 50% 30%;
  border: 1px solid var(--border);
}

.sobre__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.sobre__text p { color: var(--text-muted); margin-bottom: 16px; }
.sobre__text strong { color: var(--text); }

.sobre__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 0;
}

.sobre__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 36px;
}

.sobre__stat + .sobre__stat {
  padding-left: 36px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}

.sobre__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
}

.sobre__stat-label {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.sobre__list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.sobre__list li {
  padding-left: 22px;
  position: relative;
  color: var(--text);
}

.sobre__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}


/* Serviços */
.servicos {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.servicos__bg {
  position: absolute;
  inset: 0;
  /* PLACEHOLDER: trocar por background-image: url('assets/servicos-bg.jpg') quando o JD enviar a foto */
  background: #2a2a2c center/cover no-repeat;
  z-index: 0;
}

.servicos__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.72);
  z-index: 1;
}

.servicos__content {
  position: relative;
  z-index: 2;
}

.servicos__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.92;
  margin-bottom: 16px;
}

.servicos__subtitle {
  text-align: center;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.servicos__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.servico-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.servico-card:hover { background: rgba(255, 255, 255, 0.025); }
.servico-card[aria-expanded="true"] { background: rgba(217, 133, 59, 0.04); }

.servico-card__top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.servico-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: 0;
  transform: scale(0.5) translateY(12px);
  transition: color 0.3s ease, filter 0.3s ease;
}

.servico-card__icon svg { width: 100%; height: 100%; }

@keyframes icon-in {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.servicos__content.is-visible .servico-card__icon {
  animation:
    icon-in    0.5s cubic-bezier(0.34,1.56,0.64,1) forwards,
    icon-float 3.5s ease-in-out infinite 0.6s;
}

.servicos__content.is-visible .servico-card:nth-child(1) .servico-card__icon { animation-delay: 0.05s, 0.65s; }
.servicos__content.is-visible .servico-card:nth-child(2) .servico-card__icon { animation-delay: 0.12s, 0.72s; }
.servicos__content.is-visible .servico-card:nth-child(3) .servico-card__icon { animation-delay: 0.19s, 0.79s; }
.servicos__content.is-visible .servico-card:nth-child(4) .servico-card__icon { animation-delay: 0.26s, 0.86s; }
.servicos__content.is-visible .servico-card:nth-child(5) .servico-card__icon { animation-delay: 0.33s, 0.93s; }
.servicos__content.is-visible .servico-card:nth-child(6) .servico-card__icon { animation-delay: 0.40s, 1.00s; }
.servicos__content.is-visible .servico-card:nth-child(7) .servico-card__icon { animation-delay: 0.47s, 1.07s; }

.servico-card:hover .servico-card__icon {
  color: #fff;
  filter: drop-shadow(0 0 8px var(--accent));
}

.servico-card__texts { flex: 1; min-width: 0; }

.servico-card__title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.servico-card[aria-expanded="true"] .servico-card__title { color: var(--accent); }

.servico-card__preview {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.servico-card__caret {
  flex-shrink: 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  margin-top: 3px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.servico-card[aria-expanded="true"] .servico-card__caret {
  transform: rotate(180deg);
  color: var(--accent);
}

.servico-card__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.servico-card__body-inner {
  padding: 16px 0 4px 60px;
}

.servico-card__body-inner p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(168, 168, 163, 0.9);
  line-height: 1.75;
  border-left: 2px solid rgba(217, 133, 59, 0.4);
  padding-left: 16px;
}

.portfolio__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 24px;
}

/* Contato */
.contato { padding: 120px 0; }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contato__text .eyebrow {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contato__text h2 {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.contato__text p { color: var(--text-muted); margin-bottom: 24px; }

.contato__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.contato__list strong { color: var(--text); }

.contato__list li { display: flex; align-items: center; gap: 12px; }

.contato__list-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.contato__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contato__form label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.contato__form input,
.contato__form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contato__form input:focus,
.contato__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contato__form button { margin-top: 20px; align-self: flex-start; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__social { display: flex; gap: 20px; }
.footer__social a:hover { color: var(--accent); }

/* Nav extras */
.nav a.is-active { color: var(--text); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mosaic item (usado em portfolio.html) */
.mosaic-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1c1c1e;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  /* 3D tilt via JS — transform aplicado no próprio elemento, sem preserve-3d pra não quebrar overflow:hidden */
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.mosaic-item:disabled { cursor: default; }

.mosaic-item--lg { grid-column: span 2; grid-row: span 2; }
.mosaic-item--wide { grid-column: span 2; grid-row: span 1; }
.mosaic-item--tall { grid-column: span 1; grid-row: span 2; }
.mosaic-item--normal { grid-column: span 1; grid-row: span 1; }

.mosaic-item__thumb {
  position: absolute;
  inset: 0;
}

.mosaic-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.mosaic-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 35%, rgba(10,10,11,0.65) 65%, rgba(8,8,9,0.97) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mosaic-item:hover .mosaic-item__overlay,
.mosaic-item:focus-visible .mosaic-item__overlay { opacity: 1; }

.mosaic-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241,241,238,0.7);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.1rem;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mosaic-item__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 18px 18px;
  text-align: left;
  background: linear-gradient(180deg, rgba(8,8,9,0) 0%, rgba(8,8,9,0.85) 45%, rgba(8,8,9,0.96) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mosaic-item:hover .mosaic-item__info,
.mosaic-item:focus-visible .mosaic-item__info {
  opacity: 1;
  transform: translateY(0);
}

.mosaic-item__category {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(8, 8, 9, 0.7);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.mosaic-item__info h3 {
  font-size: 0.98rem;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}

.mosaic-item__role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  line-height: 1.4;
}

.mosaic-item:hover .mosaic-item__thumb img { transform: scale(1.06); }
.mosaic-item:hover .mosaic-item__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.mosaic-item:disabled .mosaic-item__play { display: none; }

/* Lightbox — player de vídeo embutido (não sai do domínio) */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 9, 0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open { display: flex; }

.lightbox__frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
}

.lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 201;
  transition: color 0.2s ease;
}

.lightbox__close:hover { color: var(--accent); }

/* Equip teaser (home) */
/* Portfólio em destaque (home) */
.portfolio-home { padding: 100px 0; }

.portfolio-home__cta {
  text-align: center;
  margin-top: 48px;
}

.equip-teaser { padding: 100px 0; background: var(--bg-alt); }

.equip-teaser__inner p { color: var(--text-muted); max-width: 540px; margin: 16px 0 28px; }

.section-title--left { text-align: left; margin-bottom: 0; }

/* Contato actions */
.contato__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Page hero (portfolio / projeto / equipamentos) */
.page-hero {
  padding: 160px 0 64px;
  background: var(--bg-alt);
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin-bottom: 16px;
}

.page-hero__sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Portfolio page */
.portfolio-page { padding: 64px 0 120px; }

.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.filter-tab:hover { border-color: var(--text); color: var(--text); }

.filter-tab.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.project-grid.is-switching {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

/* Lead form page (projeto.html) */
.lead-page { padding: 64px 0 120px; }

.lead-page__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.lead-page__info h2 { font-size: 1.3rem; margin-bottom: 28px; }

.lead-page__steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 28px;
}

.lead-page__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lead-page__step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(217, 133, 59, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

.lead-page__step-title {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 5px;
}

.lead-page__step-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.lead-page__wa {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.lead-page__wa-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.lead-form label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid,
.lead-form textarea.is-invalid {
  border-color: #e0584f;
}

.lead-form__error {
  font-size: 0.76rem;
  color: #e0584f;
  min-height: 1em;
}

.lead-form__submit { margin-top: 24px; align-self: stretch; }

.lead-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#leadFormStatus.is-success { color: #4cc78a; }
#leadFormStatus.is-error { color: #e0584f; }

/* Equipamentos page */
.equip-page { padding: 64px 0 120px; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equip-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.equip-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.equip-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: var(--accent);
}

.equip-card__icon svg { width: 100%; height: 100%; }

.equip-card h3 { font-size: 1rem; margin-bottom: 10px; }
.equip-card p { color: var(--text-muted); font-size: 0.88rem; }
.equip-card em { color: var(--text-muted); font-style: normal; }
.equip-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.equip-card ul li { color: var(--text-muted); font-size: 0.88rem; padding-left: 14px; position: relative; }
.equip-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.equip-scalable {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 28px 36px;
  margin-bottom: 56px;
  background: rgba(217, 133, 59, 0.04);
}

.equip-scalable__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
}

.equip-scalable__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 720px;
}

.equip-disponivel {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.equip-disponivel__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 28px;
}

.equip-disponivel__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 64px;
}

.equip-disponivel__list li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.equip-disponivel__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.equip-page__cta {
  text-align: center;
  margin-top: 64px;
}

.equip-page__cta p { color: var(--text-muted); margin-bottom: 20px; }
.equip-page__cta-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ─── Page transition ─── */
body { animation: page-in 0.4s ease both; }
body.is-leaving { opacity: 0 !important; animation: none; transition: opacity 0.3s ease; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

/* ─── Loading screen ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease;
}
#loader.done { opacity: 0; pointer-events: none; }

.loader__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  overflow: hidden;
  line-height: 0.92;
}

.loader__name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  animation: letter-up 0.45s ease forwards;
}
.loader__name span:nth-child(1)  { animation-delay: 0.05s; }
.loader__name span:nth-child(2)  { animation-delay: 0.12s; }
.loader__name span:nth-child(3)  { animation-delay: 0.18s; }
.loader__name span:nth-child(4)  { animation-delay: 0.25s; }
.loader__name span:nth-child(5)  { animation-delay: 0.32s; }
.loader__name span:nth-child(6)  { animation-delay: 0.39s; }
.loader__name span:nth-child(7)  { animation-delay: 0.46s; }
.loader__name span:nth-child(8)  { animation-delay: 0.53s; }
.loader__name span:nth-child(9)  { animation-delay: 0.60s; }
.loader__name span:nth-child(10) { animation-delay: 0.67s; }

@keyframes letter-up { to { opacity: 1; transform: translateY(0); } }

.loader__line {
  width: 0;
  height: 1px;
  background: var(--accent);
  animation: line-grow 0.9s ease forwards 0.4s;
}
@keyframes line-grow { to { width: 100px; } }

/* ─── Grão de filme ─── */
body::after {
  content: "";
  position: fixed;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  animation: grain-shift 0.35s steps(1) infinite;
}
@keyframes grain-shift {
  0%  { transform: translate(0%,   0%); }
  14% { transform: translate(-3%,  -5%); }
  28% { transform: translate(4%,   2%); }
  42% { transform: translate(-2%,  5%); }
  57% { transform: translate(5%,  -2%); }
  71% { transform: translate(-4%,  4%); }
  85% { transform: translate(2%,  -4%); }
  100%{ transform: translate(0%,   0%); }
}

/* ─── Cursor global oculto (apenas em dispositivos com mouse) ─── */
@media (pointer: fine) {
  * { cursor: none !important; }
  input, textarea, select { cursor: text !important; }
}

/* ─── Cursor customizado com mix-blend-mode: difference ─── */
#cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9500;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0e0e0f;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Inverte as cores do conteúdo embaixo — efeito "raio-X" */
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width  0.35s cubic-bezier(0.34,1.56,0.64,1),
              height 0.35s cubic-bezier(0.34,1.56,0.64,1),
              opacity 0.2s ease;
}
#cursor.is-visible { opacity: 1; }

#cursor span {
  font-size: 0;
  opacity: 0;
  transition: opacity 0.15s ease, font-size 0.2s ease;
}

#cursor.is-active {
  width: 80px;
  height: 80px;
}
#cursor.is-active span {
  font-size: 0.58rem;
  opacity: 1;
}

/* ─── Hover-to-play preview ─── */
.mosaic-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mosaic-preview.is-visible { opacity: 1; }

/* ─── Barra de progresso de scroll ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 2000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─── WhatsApp flutuante ─── */
#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  opacity: 0;
  transform: scale(0.8) translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

#wa-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  animation: wa-pulse 2.8s ease-in-out 0.5s infinite;
}

#wa-float svg { width: 26px; height: 26px; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ─── Word reveal ─── */
.word-reveal__w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-reveal__w span {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.45s ease;
}

.word-reveal__w span.is-revealed {
  transform: translateY(0);
  opacity: 1;
}

/* ─── Film cut overlay ─── */
#film-cut {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #0e0e0f;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

#film-cut.is-cutting {
  animation: film-cut-wipe 0.36s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes film-cut-wipe {
  from { transform: scaleX(0); transform-origin: left center; }
  to   { transform: scaleX(1); transform-origin: left center; }
}

/* ─── Responsive */
@media (max-width: 880px) {
  .sobre__grid { display: flex; flex-direction: column; align-items: center; }
  .sobre__text { text-align: center; width: 100%; }
  .sobre__media { margin: 36px auto 0; }
  .sobre__stats { width: 100%; }
  .contato__grid,
  .lead-page__grid { grid-template-columns: 1fr; }
  .servico-card { padding: 24px 0; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 640px) {
  .marca-item { padding: 10px 22px; margin: 0 10px; min-width: 90px; }
  .marca-item img { height: 30px; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .servico-card__icon { width: 32px; height: 32px; }
  .servico-card__top { gap: 14px; }
  .servico-card__title { font-size: 0.76rem; }
  .servico-card__body-inner { padding: 12px 0 4px 46px; }
  .equip-grid { grid-template-columns: 1fr; }
  .equip-disponivel__list { grid-template-columns: 1fr; }
  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .mosaic-item--lg,
  .mosaic-item--wide,
  .mosaic-item--tall { grid-column: span 1; grid-row: span 1; }
  .lead-form__row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 18px; }

  /* Watermark decorativo — esconder no mobile */
  .hero::after { display: none; }

  /* Hero vira coluna flex: content cresce, CTAs ancoram o rodapé */
  .hero { display: flex; flex-direction: column; align-items: stretch; }

  .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding: max(28px, 4vh) 20px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Zona superior: título e funções */
  .hero__title { gap: 10px; margin-bottom: 28px; }
  .hero__name { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero__roles { font-size: 0.88rem; letter-spacing: 0.04em; }
  .roles--lg { display: none; }
  .roles--sm { display: inline; }

  /* Zona central: card com mais presença */
  .hero__reel-card {
    width: min(90vw, 380px);
    margin-bottom: 18px;
  }

  /* Frase de apoio */
  .hero__tagline {
    font-size: 0.93rem;
    color: rgba(168, 168, 163, 0.88);
    line-height: 1.55;
    max-width: 82vw;
    margin: 0 auto;
  }

  /* Zona inferior: CTAs voltam ao fluxo — sem absoluto, sem gap fantasma */
  .hero__bottom-ctas {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 20px 20px 36px;
  }
  .hero__cta-pill {
    font-size: 0.72rem;
    padding: 11px 18px;
    white-space: nowrap;
  }
  .hero__arrow { display: none; }
}
