/* ============================================================
   PH AGÊNCIA — Design System
   Cores: preto quente + laranja da marca
   Tipo: Anton (display) / Archivo (texto) / Instrument Serif (acento)
   ============================================================ */

:root {
  --bg: #000000;
  --bg-2: #14110D;
  --card: #161310;
  --orange: #FF5E00;
  --orange-2: #FF8A3D;
  --cream: #F3EDE4;
  --muted: rgba(243, 237, 228, .55);
  --faint: rgba(243, 237, 228, .35);
  --line: rgba(243, 237, 228, .12);
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Archivo', Helvetica, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-exp: cubic-bezier(.87, 0, .13, 1);
  --pad: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: #000; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

/* ---------- SPARKS / SPIN ---------- */
svg use { fill: currentColor; }
.spin { animation: spin 3.2s var(--ease-out) infinite; }
.spin-slow { animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg) } }

/* ---------- CURSOR ---------- */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 3000; }
.cursor__dot {
  position: absolute; top: 0; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--orange);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .35s, border-color .35s;
}
.cursor__label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #000; opacity: 0; transition: opacity .25s;
}
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(255,94,0,.15); }
.cursor.is-label .cursor__ring { width: 88px; height: 88px; background: var(--orange); border-color: var(--orange); }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-down .cursor__ring { transform: translate(-50%,-50%) scale(.85); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 5000;
  background: #080706;
  display: flex; align-items: center; justify-content: center;
}
.preloader__center { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.preloader__spark { width: 44px; height: 44px; color: var(--orange); }
.preloader__logo { width: clamp(120px, 18vw, 180px); }
.preloader__count {
  position: absolute; bottom: 28px; left: var(--pad);
  font-family: var(--font-display); font-size: clamp(64px, 12vw, 140px);
  line-height: 1; color: var(--cream);
  display: flex; align-items: baseline; gap: 6px;
}
.preloader__count em { font-style: normal; font-size: .35em; color: var(--orange); }
.preloader__bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(243,237,228,.08); }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--orange); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11,10,8,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__logo img { height: 58px; width: auto; }
.nav__spark { position: absolute; left: 50%; transform: translateX(-50%); }
.nav__spark svg { width: 22px; height: 22px; color: var(--orange); display: block; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__burger {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transition: border-color .3s, background .3s;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--cream); transition: transform .4s var(--ease-exp), background .3s; }
.nav__burger:hover { border-color: var(--orange); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.nav__burger.is-open { background: var(--orange); border-color: var(--orange); }
.nav__burger.is-open span { background: #000; }

/* ---------- MENU OVERLAY ---------- */
.menu { position: fixed; inset: 0; z-index: 800; visibility: hidden; }
.menu.is-open { visibility: visible; }
.menu__bg {
  position: absolute; inset: 0; background: #0E0C09;
  transform: translateY(-100%);
}
.menu__inner {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--pad) 40px;
}
.menu__eyebrow { color: var(--orange); display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px; }
.menu__eyebrow svg { width: 14px; height: 14px; }
.menu__list li { overflow: hidden; border-bottom: 1px solid var(--line); }
.menu__list a {
  display: flex; align-items: baseline; gap: 20px;
  padding: 10px 0;
  transition: padding-left .4s var(--ease-out);
}
.menu__list a:hover { padding-left: 18px; }
.menu__list em {
  font-style: normal; font-family: var(--font-body); font-weight: 500;
  font-size: 13px; color: var(--orange); letter-spacing: .1em;
}
.menu__list span {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(38px, 7.5vw, 88px); line-height: 1.05; color: var(--cream);
  transition: color .3s;
}
.menu__list a:hover span { color: var(--orange); }
.menu__footer { display: flex; gap: 28px; margin-top: 40px; color: var(--muted); font-size: 14px; }
.menu__footer a:hover { color: var(--orange); }

/* ---------- BOTÕES ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px; letter-spacing: .02em;
  padding: 18px 32px; border-radius: 999px;
  transition: background .35s, color .35s, border-color .35s, transform .35s;
  white-space: nowrap; overflow: hidden;
}
.btn .ico { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.btn:hover .ico { transform: translate(2px, -2px); }
.btn--pill { background: var(--orange); color: #000; }
.btn--pill:hover { background: var(--cream); }
.btn--ghost { border: 1px solid var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--small { padding: 12px 22px; font-size: 13px; }
.btn--big { padding: 24px 44px; font-size: 17px; }

/* ---------- EYEBROW / TÍTULOS ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 28px;
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow--center { justify-content: center; }

.h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(44px, 7.5vw, 110px); line-height: .98; letter-spacing: .005em;
  font-weight: 400;
}
.rl { display: block; overflow: hidden; }
.rli { display: inline-block; will-change: transform; }
.rli--accent {
  font-family: var(--font-serif); font-style: italic; text-transform: none;
  color: var(--orange); font-weight: 400;
  font-size: 1.04em; letter-spacing: 0;
}
.rli--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--pad) 90px;
  overflow: hidden;
}
.hero__bg-text {
  position: absolute; top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(300px, 55vw, 900px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243,237,228,.07);
  pointer-events: none; user-select: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: clamp(30px, 5vw, 70px);
  max-width: 1500px; margin: 0 auto; width: 100%;
}
.hero__eyebrow { margin-bottom: 34px; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(58px, 9.6vw, 158px);
  line-height: .94; letter-spacing: .005em;
}
.hero__title .title-spark { width: .42em; height: .42em; color: var(--orange); margin-left: .08em; display: inline-block; }
.hero__sub { max-width: 480px; margin-top: 30px; color: var(--muted); font-size: 17px; }
.hero__sub strong { color: var(--cream); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 13px; color: var(--faint); letter-spacing: .06em; text-transform: uppercase; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,94,0,.5) } 50% { box-shadow: 0 0 0 9px rgba(255,94,0,0) } }

.hero__media { position: relative; justify-self: end; width: min(100%, 520px); }
.hero__card {
  position: relative; border-radius: 26px; overflow: hidden;
  aspect-ratio: 1080/1474; width: min(100%, calc(76vh * 0.7327));
  border: 1px solid var(--line);
  background: var(--card);
}
.hero__card img { width: 100%; height: 112%; object-fit: cover; object-position: top center; will-change: transform; }
.hero__chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,10,8,.65); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.hero__chip svg { width: 12px; height: 12px; color: var(--orange); }
.hero__chip--top { top: 18px; left: 18px; }
.hero__chip--bottom { bottom: 18px; right: 18px; background: var(--orange); color: #000; border-color: var(--orange); font-size: 15px; letter-spacing: .04em; }
.hero__chip--bottom em { font-style: normal; font-weight: 500; font-size: 11px; opacity: .75; letter-spacing: .08em; }
.hero__badge { position: absolute; top: -58px; right: -46px; width: 132px; height: 132px; z-index: 4; }
.badge-rotate { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.badge-rotate text { font-size: 12.5px; font-weight: 700; letter-spacing: .18em; fill: var(--cream); font-family: var(--font-body); text-transform: uppercase; }
.hero__badge-spark { position: absolute; top: 50%; left: 50%; width: 34px; height: 34px; transform: translate(-50%,-50%); color: var(--orange); }
.hero__scroll {
  position: absolute; bottom: 26px; left: var(--pad); z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--faint);
}
.hero__scroll-line { width: 70px; height: 1px; background: var(--line); overflow: hidden; }
.hero__scroll-line i { display: block; width: 40%; height: 100%; background: var(--orange); animation: scrollhint 1.8s var(--ease-exp) infinite; }
@keyframes scrollhint { 0% { transform: translateX(-110%) } 100% { transform: translateX(280%) } }

/* ---------- TAPE / MARQUEE ---------- */
.tape { overflow: hidden; white-space: nowrap; position: relative; }
.tape--orange { background: var(--orange); color: #000; padding: 16px 0; }
.tape--dark { background: #080706; color: var(--cream); padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tape__track { display: inline-flex; will-change: transform; animation: marquee 26s linear infinite; }
.tape__track--rev { animation-direction: reverse; }
.tape__track span {
  display: inline-flex; align-items: center; gap: 22px;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 28px); line-height: 1; padding-right: 22px;
}
.tape__track svg { width: .8em; height: .8em; flex: none; }
@keyframes marquee { to { transform: translateX(-50%) } }

.tapes { position: relative; height: clamp(120px, 16vw, 200px); margin: 40px 0; }
.tapes .tape { position: absolute; left: -4%; right: -4%; }
.tape--tilt-l { transform: rotate(-2.4deg); top: 18%; z-index: 2; }
.tape--tilt-r { transform: rotate(1.8deg); top: 44%; }

/* ---------- MANIFESTO ---------- */
.manifesto { padding: clamp(90px, 14vw, 190px) var(--pad); max-width: 1200px; margin: 0 auto; }
.manifesto__text {
  font-size: clamp(24px, 3.6vw, 46px); line-height: 1.32; font-weight: 500;
  letter-spacing: -.01em;
}
.manifesto__text .w { display: inline-block; }
.manifesto__text b { color: var(--orange); font-weight: 700; }

/* ---------- STATS ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 0 var(--pad);
}
.stat {
  padding: clamp(30px, 4vw, 56px) clamp(18px, 2.5vw, 40px);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.stat:first-child { border-left: 0; }
.stat__num {
  font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1; color: var(--orange);
}
.stat__num--top { color: var(--cream); }
.stat__num em { font-style: normal; }
.stat__label { font-size: 13.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; line-height: 1.5; }

/* ---------- CRIADORAS ---------- */
.creators { padding: clamp(90px, 12vw, 170px) 0 clamp(70px, 9vw, 120px); }
.creators__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  padding: 0 var(--pad); margin-bottom: clamp(40px, 5vw, 70px);
}
.creators__nav { display: flex; align-items: center; gap: 14px; }
.creators__index { font-family: var(--font-display); font-size: 20px; letter-spacing: .06em; margin-right: 10px; color: var(--muted); }
.creators__index b { color: var(--orange); font-weight: 400; }
.creators__arrow {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, color .3s, opacity .3s;
}
.creators__arrow svg { width: 22px; height: 22px; }
.creators__arrow:hover { background: var(--orange); border-color: var(--orange); color: #000; }
.creators__arrow:disabled { opacity: .25; pointer-events: none; }

.carousel { position: relative; cursor: grab; }
.carousel.is-dragging { cursor: grabbing; }
.carousel__track {
  display: flex; gap: clamp(14px, 2vw, 26px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px var(--pad) 34px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.card {
  position: relative; flex: none;
  width: clamp(260px, 26vw, 400px);
  scroll-snap-align: center;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color .4s, transform .4s var(--ease-out);
}
.card:hover { border-color: rgba(255,94,0,.5); transform: translateY(-6px); }
.card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  transition: transform .8s var(--ease-out), filter .6s;
  filter: saturate(.92);
  user-select: none;
}
.card:hover img { transform: scale(1.05); filter: saturate(1.08); }
.card__info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 22px 20px;
  background: linear-gradient(to top, rgba(8,7,6,.92), transparent);
  display: flex; flex-direction: column; gap: 2px;
}
.card__num {
  position: absolute; top: -34px; right: 18px;
  font-family: var(--font-display); font-size: 15px; color: var(--orange);
  background: rgba(11,10,8,.7); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(8px);
}
.card__info h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; text-transform: uppercase; letter-spacing: .02em; }
.card__info p { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card__info p svg { width: 10px; height: 10px; color: var(--orange); }

/* Card branco CTA — "a próxima foto pode ser você" */
.card--next {
  aspect-ratio: 3/4;
  background: var(--cream); color: #0B0A08;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(22px, 2.4vw, 30px);
  transition: background .4s, border-color .4s, transform .4s var(--ease-out);
}
.card--next:hover { background: var(--orange); border-color: var(--orange); }
.card--next__spark { width: 42px; height: 42px; color: #0B0A08; }
.card--next h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 2.8vw, 42px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .01em;
}
.card--next h3 em {
  font-family: var(--font-serif); font-style: italic; text-transform: none;
  color: var(--orange); transition: color .4s;
}
.card--next:hover h3 em { color: #0B0A08; }
.card--next__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
}
.card--next__cta svg { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.card--next:hover .card--next__cta svg { transform: translate(3px, -3px); }

.carousel__progress {
  margin: 6px var(--pad) 0; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden;
}
.carousel__progress span { display: block; height: 100%; width: 20%; background: var(--orange); border-radius: 2px; transition: width .2s linear; }

/* ---------- CASES / PRINTS REAIS ---------- */
.cases {
  padding: clamp(90px, 12vw, 170px) 0 clamp(60px, 8vw, 110px);
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cases__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  padding: 0 var(--pad); margin-bottom: clamp(40px, 5vw, 70px);
}
.cases__carousel { position: relative; cursor: grab; }
.cases__carousel.is-dragging { cursor: grabbing; }
.cases__track {
  display: flex; gap: clamp(16px, 2vw, 28px);
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 34px max(var(--pad), calc(50% - clamp(320px, 30vw, 430px) / 2)) 40px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cases__track::-webkit-scrollbar { display: none; }

.case {
  position: relative; flex: none;
  width: clamp(320px, 30vw, 430px);
  scroll-snap-align: center;
  border-radius: 24px; overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  transform: scale(.92);
  opacity: .38; filter: saturate(.55) brightness(.8);
  transition: transform .55s var(--ease-out), opacity .55s, filter .55s, border-color .55s, box-shadow .55s;
  user-select: none;
}
.case.is-active {
  transform: scale(1);
  opacity: 1; filter: none;
  border-color: rgba(255,94,0,.45);
  box-shadow: 0 30px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,94,0,.12);
}

.case__media {
  position: relative; overflow: hidden;
  aspect-ratio: 8/9;
  background: #0A0908;
  border-bottom: 1px solid var(--line);
}
.case__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(28px) brightness(.45) saturate(1.3);
  transform: scale(1.3);
}
.case__img {
  position: relative; width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.6));
  transition: transform .8s var(--ease-out);
}
.case.is-active .case__img { transform: scale(1.015); }

.case__chip {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,10,8,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.case__chip i {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
.case__tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,94,0,.14);
  border: 1px solid rgba(255,94,0,.4); border-radius: 999px;
  padding: 8px 13px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.case__body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 14px; }
.case__headline {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1.05; letter-spacing: .01em;
}
.case__headline em {
  font-family: var(--font-serif); font-style: italic; text-transform: none;
  color: var(--orange); font-size: 1.05em;
}
.case__metric {
  display: flex; align-items: center; gap: 9px;
  color: var(--orange-2);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.case__metric svg { width: 11px; height: 11px; flex: none; color: var(--orange); }
.case__quote {
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: 2px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 19px; line-height: 1.45;
  color: rgba(243,237,228,.82);
}
.case__attr {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint);
}

.cases__dots { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 0 var(--pad); }
.case-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--line);
  transition: width .35s var(--ease-out), background .35s;
}
.case-dot:hover { background: var(--faint); }
.case-dot.is-active { width: 28px; background: var(--orange); }

.cases__side {
  display: none;
  position: absolute; top: calc(50% - 18px); transform: translateY(-50%); z-index: 6;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(11,10,8,.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--cream);
  align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  transition: background .3s, border-color .3s, color .3s, opacity .3s;
}
.cases__side svg { width: 20px; height: 20px; }
.cases__side:hover { background: var(--orange); border-color: var(--orange); color: #000; }
.cases__side:disabled { opacity: .25; pointer-events: none; }
.cases__side--prev { left: 10px; }
.cases__side--next { right: 10px; }

/* ---------- PROVA SOCIAL ---------- */
.proof {
  display: grid; grid-template-columns: .95fr 1.05fr;
  align-items: center; gap: clamp(36px, 6vw, 90px);
  padding: clamp(90px, 12vw, 170px) var(--pad);
  max-width: 1500px; margin: 0 auto;
}
.proof__media { position: relative; }
.proof__card {
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1080/1474; width: min(100%, calc(80vh * 0.7327));
}
.proof__card img { width: 100%; height: 112%; object-fit: cover; object-position: top center; will-change: transform; }
.proof__spark { position: absolute; width: 54px; height: 54px; color: var(--orange); top: -26px; right: -16px; z-index: 3; }
.proof__text { margin: 30px 0 26px; font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); max-width: 540px; }
.proof__text strong { color: var(--cream); }
.proof__text .o { color: var(--orange); }
.proof__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.proof__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.proof__chips svg { width: 11px; height: 11px; color: var(--orange); }

/* ---------- FOTO INTEIRA (sem corte, fundo desfocado) ---------- */
.photo-full { position: relative; }
.photo-full .photo-full__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(30px) brightness(.42); transform: scale(1.35);
}
.photo-full .photo-full__img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain;
}

/* ---------- DEPOIMENTOS ---------- */
.testimonials {
  padding: clamp(90px, 12vw, 170px) var(--pad);
  max-width: 1500px; margin: 0 auto;
}
.testimonial {
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: clamp(36px, 6vw, 90px);
}
.testimonial + .testimonial { margin-top: clamp(80px, 10vw, 140px); }
.testimonial--rev { grid-template-columns: .95fr 1.05fr; }
.testimonial--rev .testimonial__media { justify-self: start; }
.testimonial--rev .testimonial__spark { left: auto; right: -22px; }
.testimonial__text { margin: 30px 0 26px; font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); max-width: 540px; }
.testimonial__text strong { color: var(--cream); }
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 2px solid var(--orange);
}
.testimonial__author strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; letter-spacing: .03em; font-size: 19px;
}
.testimonial__author span {
  display: flex; align-items: center; gap: 7px; margin-top: 3px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.testimonial__author span svg { width: 10px; height: 10px; color: var(--orange); }
.testimonial__media { position: relative; justify-self: end; width: min(100%, 420px); }
.testimonial__spark { position: absolute; width: 54px; height: 54px; color: var(--orange); top: -26px; left: -22px; z-index: 3; }

.tvideo {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  aspect-ratio: 9/16; max-height: 80vh;
}
.tvideo video { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }

.tvideo__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 30px 24px; text-align: center;
  background: linear-gradient(to top, rgba(8,7,6,.82), rgba(8,7,6,.18) 50%, rgba(8,7,6,.22));
  transition: opacity .45s;
}
.tvideo__overlay.is-hidden { opacity: 0; pointer-events: none; }
.tvideo__playbtn {
  position: relative; width: 88px; height: 88px; border-radius: 50%;
  background: var(--orange); color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s;
}
.tvideo__playbtn svg { width: 32px; height: 32px; margin-left: 4px; }
.tvideo__overlay:hover .tvideo__playbtn { background: var(--cream); }
.tvideo__ring {
  position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid var(--orange);
  animation: tvideo-pulse 2s var(--ease-out) infinite;
}
@keyframes tvideo-pulse { 0% { transform: scale(1); opacity: .9 } 100% { transform: scale(1.55); opacity: 0 } }
.tvideo__watch {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(20px, 2vw, 26px); letter-spacing: .03em; line-height: 1.1;
}
.tvideo__duration {
  display: inline-flex; align-items: center;
  background: rgba(11,10,8,.6); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.tvideo__controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 44px 16px 14px;
  background: linear-gradient(to top, rgba(8,7,6,.88), transparent);
  transition: opacity .4s;
}
.tvideo.is-playing.is-idle .tvideo__controls { opacity: 0; pointer-events: none; }
.tvideo__btn {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,10,8,.6); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, color .3s;
}
.tvideo__btn:hover { background: var(--orange); border-color: var(--orange); color: #000; }
.tvideo__btn svg { width: 17px; height: 17px; }
.tvideo__time {
  flex: none; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.tvideo__progress {
  position: relative; flex: 1; height: 22px;
  display: flex; align-items: center; cursor: pointer;
  touch-action: none;
}
.tvideo__progress::before {
  content: ''; position: absolute; left: 0; right: 0;
  height: 4px; border-radius: 4px; background: rgba(243,237,228,.18);
}
.tvideo__progress-fill {
  position: relative; height: 4px; border-radius: 4px;
  background: var(--orange); width: 0%;
}

/* ---------- SERVIÇOS ---------- */
.services { padding: clamp(90px, 12vw, 170px) var(--pad); max-width: 1500px; margin: 0 auto; }
.services__head { margin-bottom: clamp(44px, 6vw, 80px); max-width: 900px; }
.services__list { border-top: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); }
.service summary {
  list-style: none; display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3.4vw, 42px) 0; cursor: pointer;
  transition: padding-left .45s var(--ease-out);
}
.service summary::-webkit-details-marker { display: none; }
.service summary:hover { padding-left: 16px; }
.service summary em {
  font-style: normal; font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 20px); color: var(--orange); min-width: 44px;
}
.service summary span {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(24px, 4vw, 54px); line-height: 1.05; flex: 1;
  transition: color .35s;
}
.service summary:hover span { color: var(--orange); }
.service__icon { position: relative; width: 46px; height: 46px; flex: none; border: 1px solid var(--line); border-radius: 50%; transition: background .35s, border-color .35s, transform .5s var(--ease-exp); }
.service__icon::before, .service__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--cream);
  transition: background .35s, transform .5s var(--ease-exp);
}
.service__icon::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.service__icon::after { width: 2px; height: 16px; transform: translate(-50%,-50%); }
.service[open] .service__icon { background: var(--orange); border-color: var(--orange); transform: rotate(135deg); }
.service[open] .service__icon::before, .service[open] .service__icon::after { background: #000; }
.service__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-exp); }
.service[open] .service__body { grid-template-rows: 1fr; }
.service__body p {
  overflow: hidden; max-width: 640px; margin-left: clamp(60px, 9vw, 130px);
  padding-bottom: 34px; color: var(--muted); font-size: 16.5px;
}

/* ---------- MÉTODO ---------- */
.method { padding: clamp(90px, 12vw, 170px) var(--pad); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method__head { max-width: 1500px; margin: 0 auto clamp(44px, 6vw, 80px); }
.method__sub { margin-top: 22px; color: var(--muted); font-size: 18px; }
.method__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px);
  max-width: 1500px; margin: 0 auto;
}
.step {
  position: relative; border: 1px solid var(--line); border-radius: 22px;
  background: var(--card); padding: clamp(26px, 2.6vw, 38px);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .4s, transform .4s var(--ease-out), background .4s;
  overflow: hidden;
}
.step:hover { border-color: rgba(255,94,0,.55); transform: translateY(-8px); }
.step__num {
  font-family: var(--font-display); font-size: clamp(64px, 6vw, 96px);
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255,94,0,.75);
}
.step__spark { position: absolute; top: 24px; right: 24px; width: 20px; height: 20px; color: var(--orange); opacity: 0; transform: scale(.4) rotate(-90deg); transition: opacity .4s, transform .55s var(--ease-out); }
.step:hover .step__spark { opacity: 1; transform: scale(1) rotate(0); }
.step h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.1; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- COMPARATIVO ---------- */
.compare { padding: clamp(90px, 12vw, 170px) var(--pad); max-width: 1500px; margin: 0 auto; }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(44px, 6vw, 80px); }
.compare__col { border: 1px solid var(--line); border-radius: 26px; padding: clamp(30px, 3.6vw, 52px); position: relative; }
.compare__col h3 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 46px); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.compare__col h3 svg { width: 26px; height: 26px; color: var(--orange); }
.compare__col ul { display: flex; flex-direction: column; }
.compare__col li {
  padding: 15px 0 15px 34px; position: relative;
  border-top: 1px solid var(--line); font-size: 15.5px;
}
.compare__col--off { color: var(--muted); }
.compare__col--off li::before {
  content: '✕'; position: absolute; left: 2px; top: 15px;
  color: var(--faint); font-weight: 700; font-size: 14px;
}
.compare__col--on { border-color: rgba(255,94,0,.5); background: linear-gradient(160deg, rgba(255,94,0,.09), rgba(255,94,0,.015) 55%); }
.compare__col--on li::before {
  content: '✦'; position: absolute; left: 0; top: 14px;
  color: var(--orange); font-size: 15px;
}
.compare__spark { position: absolute; top: -20px; right: 34px; width: 42px; height: 42px; color: var(--orange); }

/* ---------- CTA ---------- */
.cta {
  position: relative; text-align: center;
  padding: clamp(110px, 15vw, 210px) var(--pad);
  overflow: hidden;
}
.cta__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(58px, 12vw, 190px); line-height: .95;
}
.cta__text { max-width: 620px; margin: 34px auto 0; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }
.cta__text strong { color: var(--cream); }
.cta__actions { margin-top: 44px; display: flex; justify-content: center; }
.cta__scarcity { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.cta__spark { position: absolute; color: var(--orange); opacity: .9; }
.cta__spark--1 { width: 44px; height: 44px; top: 16%; left: 12%; }
.cta__spark--2 { width: 30px; height: 30px; bottom: 20%; right: 14%; }

/* ---------- FAQ ---------- */
.faq { padding: 0 var(--pad) clamp(90px, 12vw, 160px); max-width: 980px; margin: 0 auto; }
.faq .h2 { margin-bottom: clamp(40px, 5vw, 60px); }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; font-weight: 600; font-size: clamp(17px, 1.9vw, 22px);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--orange); }
.faq__item .service__icon { width: 38px; height: 38px; }
.faq__item .service__icon::before { width: 13px; }
.faq__item .service__icon::after { height: 13px; }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-exp); }
.faq__item[open] .faq__body { grid-template-rows: 1fr; }
.faq__body p { overflow: hidden; color: var(--muted); padding-bottom: 26px; max-width: 720px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); background: #080706; }
.footer__marquee { overflow: hidden; white-space: nowrap; padding: clamp(20px, 3vw, 40px) 0; border-bottom: 1px solid var(--line); }
.footer__marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.footer__marquee-track span {
  display: inline-flex; align-items: center; gap: 30px; padding-right: 30px;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(46px, 8vw, 120px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(243,237,228,.28);
}
.footer__marquee-track svg { width: .55em; height: .55em; color: var(--orange); -webkit-text-stroke: 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 80px);
  padding: clamp(50px, 7vw, 90px) var(--pad);
  max-width: 1500px; margin: 0 auto;
}
.footer__logo { width: 150px; margin-bottom: 22px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 380px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 15px; letter-spacing: .14em; color: var(--orange); margin-bottom: 8px;
}
.footer__col a { color: var(--muted); font-size: 15px; transition: color .3s, padding-left .3s; }
.footer__col a:hover { color: var(--cream); padding-left: 6px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding: 24px var(--pad); border-top: 1px solid var(--line);
  font-size: 13px; color: var(--faint);
}
.footer__made { display: inline-flex; align-items: center; gap: 8px; }
.footer__made em { font-family: var(--font-serif); font-style: italic; color: var(--orange); font-size: 15px; }
.footer__made svg { width: 12px; height: 12px; color: var(--orange); }

/* ---------- WHATSAPP FLUTUANTE ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 750;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 14px 40px rgba(37, 211, 102, .55); }
.wa-float__icon { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 2; }
.wa-float__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.75); opacity: 0; }
}
.wa-float__tooltip {
  position: absolute; right: calc(100% + 16px); top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--cream); color: #0B0A08;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .35s var(--ease-out);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__media { justify-self: center; width: min(100%, 480px); }
  .hero__badge { right: -20px; }
  .hero__bg-text { top: 30%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .proof { grid-template-columns: 1fr; }
  .proof__media { max-width: 560px; }
  .testimonial { grid-template-columns: 1fr; }
  .testimonial__media { justify-self: center; }
  .testimonial--rev .testimonial__content { order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__cta { display: none; }
  .nav__spark { display: none; }
  .nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav__logo img { height: 44px; }
  .nav__right { margin-left: auto; }
  .hero { padding-top: 120px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badge { width: 104px; height: 104px; top: -44px; right: -8px; }
  .hero__scroll { display: none; }
  .compare__grid { grid-template-columns: 1fr; }
  .method__grid { grid-template-columns: 1fr; }
  .card { width: min(78vw, 340px); }
  .creators__head { flex-direction: column; align-items: flex-start; }
  .cases__head { flex-direction: column; align-items: flex-start; }
  .cases__head .creators__arrow { display: none; }
  .cases__side { display: flex; }
  .case { width: min(84vw, 380px); }
  .cases__track {
    padding-top: 20px; padding-bottom: 30px;
    padding-left: max(var(--pad), calc(50% - min(84vw, 380px) / 2));
    padding-right: max(var(--pad), calc(50% - min(84vw, 380px) / 2));
  }
  .case__quote { font-size: 17.5px; }
  .testimonial__media { width: min(100%, 340px); }
  .tvideo__playbtn { width: 76px; height: 76px; }
  .service__body p { margin-left: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta__spark--1 { left: 6%; top: 10%; }
  .cta__spark--2 { right: 8%; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float__tooltip { display: none; }
}

/* ---------- MOTION REDUZIDO ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
