/* =============================================================
   DIREITA JÁ — mockup v2
   Hub-style. Inspirações: Apple TV+, awwwards bento, Vercel.
   Layouts variados: spotlight, top-10 numerado, scroll, stories,
   bento, long-form. Modal de detalhe com preview animado.
   ============================================================= */

:root {
  --ink: #050926;
  --ink-2: #0a1140;
  --ink-3: #131a52;
  --brand: #16396E;
  --brand-deep: #0D2141;
  --brand-glow: #245BA8;
  --gold: #ffd700;
  --gold-soft: #ffea7a;
  --green: #0D3C31;
  --green-glow: #165C4B;
  --danger: #ff3344;

  --text: rgba(255, 255, 255, 0.96);
  --text-soft: rgba(255, 255, 255, 0.62);
  --text-mute: rgba(255, 255, 255, 0.4);

  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-glass: rgba(255, 255, 255, 0.06);
  --surface-elev: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.18);

  --font-display:
    'Big Shoulders Display', 'Bebas Neue', 'Impact', -apple-system, sans-serif;
  --font-display-alt:
    'Boldonse', 'Big Shoulders Display', -apple-system, sans-serif;
  --font-card:
    'Clash Display', 'Inter Tight', -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-body:
    'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::selection {
  background: var(--gold);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* =============================================================
   AMBIENT — gradient blobs (sem ruído pesado)
   ============================================================= */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
  will-change: transform;
}

.blob-1 {
  width: 720px;
  height: 720px;
  background: var(--brand);
  top: -200px;
  left: -100px;
  animation: blob 24s ease-in-out infinite;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--brand-glow);
  top: 30%;
  right: -150px;
  animation: blob 30s ease-in-out infinite reverse;
}

.blob-3 {
  width: 480px;
  height: 480px;
  background: var(--gold);
  bottom: -120px;
  left: 30%;
  animation: blob 34s ease-in-out infinite;
  opacity: 0.14;
}

@keyframes blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(60px, -40px) scale(1.08);
  }

  66% {
    transform: translate(-50px, 30px) scale(0.95);
  }
}

/* =============================================================
   HEADER
   ============================================================= */
.head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  background: linear-gradient(180deg,
      rgba(5, 9, 38, 0.78),
      rgba(5, 9, 38, 0.45));
  border-bottom: 1px solid var(--border-soft);
  transition:
    padding 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
}

.head.scrolled {
  padding: 10px 0;
  background: linear-gradient(180deg,
      rgba(5, 9, 38, 0.94),
      rgba(5, 9, 38, 0.82));
}

.head-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: var(--font-display-alt);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.brand span {
  color: var(--gold);
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-pill--accent {
  background: var(--gold);
  color: var(--ink);
}

.btn-pill--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.35);
}

.btn-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease-spring);
}

.btn-icon:hover {
  background: var(--surface-glass);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.25s var(--ease-out),
    opacity 0.2s ease;
}

.head.is-open .hamburger span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.head.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.head.is-open .hamburger span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* =============================================================
   DRAWER
   ============================================================= */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 92vw);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-left: 1px solid var(--border);
  z-index: 60;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 38, 0.75);
  backdrop-filter: blur(8px);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer nav a {
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    color 0.2s ease,
    padding-left 0.25s var(--ease-out);
}

.drawer nav a::after {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.25s var(--ease-out);
}

.drawer nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.drawer nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================================
   MARQUEE strip — tags em movimento contínuo
   ============================================================= */
.marquee {
  margin-top: 70px;
  position: relative;
  z-index: 1;
  padding: 14px 0;
  background: linear-gradient(90deg,
      transparent,
      var(--surface) 20%,
      var(--surface) 80%,
      transparent);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-track span::before {
  content: '●';
  color: var(--gold);
  font-size: 0.5em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: 80px 0 60px;
  z-index: 1;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow:
    0 16px 40px rgba(255, 215, 0, 0.32),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 215, 0, 0.45);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

.btn--ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--surface-glass);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.25s var(--ease-spring);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero visual: 3 cards flutuando com previews animadas */
.hero-visual {
  position: relative;
  height: clamp(380px, 52vw, 600px);
  perspective: 1400px;
}

.float-card {
  position: absolute;
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
}

.float-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
}

.float-card-1 {
  top: 8%;
  left: 0;
  transform: rotate(-8deg);
  animation: floatA 6s ease-in-out infinite;
}

.float-card-2 {
  top: 0;
  right: 0;
  transform: rotate(6deg);
  animation: floatB 7s ease-in-out infinite;
  width: 220px;
}

.float-card-3 {
  bottom: 6%;
  left: 28%;
  transform: rotate(-3deg);
  animation: floatC 8s ease-in-out infinite;
  width: 240px;
  z-index: 2;
}

@keyframes floatA {
  50% {
    transform: rotate(-8deg) translateY(-12px);
  }
}

@keyframes floatB {
  50% {
    transform: rotate(6deg) translateY(-16px);
  }
}

@keyframes floatC {
  50% {
    transform: rotate(-3deg) translateY(-8px);
  }
}

/* =============================================================
   SECTION HEADERS (uniforme)
   ============================================================= */
.section-head {
  max-width: var(--container);
  margin: 0 auto 28px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    color 0.2s ease,
    gap 0.25s var(--ease-spring);
  flex-shrink: 0;
  white-space: nowrap;
  cursor: pointer;
}

.section-link:hover {
  color: var(--gold);
  gap: 8px;
}

/* =============================================================
   SECTION 1: SPOTLIGHT — 1 hero card 16:9 + 2 verticais
   ============================================================= */
.spot {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 110px;
  padding-bottom: 100px;
}

.spot-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .spot-grid {
    grid-template-columns: 1.7fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

.spot-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/10;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;
}

@media (min-width: 880px) {
  .spot-feature {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.spot-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(5, 9, 38, 0.85) 95%);
}

.spot-feature {
  outline: 2px solid transparent;
  outline-offset: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-offset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.3s ease;
}

.spot-feature:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 215, 0, 0.32);
  z-index: 8;
}

.spot-feature__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.spot-feature__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.spot-feature__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.spot-feature__tag {
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spot-feature__title {
  font-family: var(--font-card);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  text-wrap: balance;
}

.spot-feature__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.spot-side {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}

.spot-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(5, 9, 38, 0.85) 100%);
}

.spot-side {
  outline: 2px solid transparent;
  outline-offset: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-offset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.3s ease;
}

.spot-side:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(255, 215, 0, 0.3);
  z-index: 6;
}

.spot-side__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}

.spot-side__title {
  font-family: var(--font-card);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: none;
}

.spot-side__meta {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* =============================================================
   SECTION 2: TOP 10 — números gigantes atrás dos cards
   ============================================================= */
.top10 {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(900px 480px at 30% 50%,
      rgba(26, 58, 255, 0.1),
      transparent 65%),
    radial-gradient(700px 360px at 80% 80%,
      rgba(255, 215, 0, 0.06),
      transparent 65%);
}

.top10-track-wrap {
  position: relative;
  padding: 0 var(--gutter);
}

.top10-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 50px 0 60px;
  margin: -36px 0 -36px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  clip-path: inset(-120px 0 -120px 0);
}

.top10-track::-webkit-scrollbar {
  display: none;
}

.top10-track-wrap {
  overflow: visible;
}

.top10-item {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 12px;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}

.top10-rank {
  display: none;
}

.top10-item:hover .top10-rank {
  color: var(--gold);
  -webkit-text-stroke-color: var(--gold);
}

.top10-card {
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

@media (min-width: 720px) {
  .top10-card {
    width: 240px;
  }
}

.top10-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 9, 38, 0.85));
}

.top10-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  z-index: 2;
}

.top10-card-tag {
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.top10-card-title {
  font-family: var(--font-card);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
}

.top10-card--skeleton {
  cursor: progress;
}

.top10-card--skeleton .top10-card-content {
  color: transparent;
}

.top10-card--skeleton .top10-card-tag,
.top10-card--skeleton .top10-card-title {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: block;
  overflow: hidden;
  position: relative;
}

.top10-card--skeleton .top10-card-tag {
  width: 58%;
  height: 14px;
}

.top10-card--skeleton .top10-card-title {
  width: 88%;
  min-height: 18px;
}

.top10-card--skeleton .top10-card-tag::before,
.top10-card--skeleton .top10-card-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.04) 8%,
      rgba(255, 255, 255, 0.16) 18%,
      rgba(255, 255, 255, 0.04) 33%);
  background-size: 220% 100%;
  animation: top10-skeleton-shimmer 1.4s linear infinite;
}

@keyframes top10-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.top10-item .top10-card {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-offset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.3s ease;
  outline: 2px solid transparent;
  outline-offset: 0;
}

.top10-item:hover .top10-card {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 215, 0, 0.3);
}

.top10-item:hover {
  z-index: 10;
}

.top10-item:hover .top10-card-title {
  color: var(--gold);
  transition: color 0.3s var(--ease-out);
}

/* =============================================================
   DETAILS PAGE — reusable listing page
   ============================================================= */
.details-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 1100px 500px at 20% 0%,
      rgba(255, 215, 0, 0.08),
      transparent 55%),
    radial-gradient(ellipse 900px 420px at 80% 20%,
      rgba(74, 102, 255, 0.08),
      transparent 55%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--text);
}

.details-topnav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 10020;
  width: min(calc(100% - 28px), var(--container));
  max-width: var(--container);
  margin: 0;
  padding: 10px 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(5, 9, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
}

.details-topnav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.details-topnav__brand img {
  width: 84px;
  height: auto;
  display: block;
}

.details-topnav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.details-topnav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}

.details-topnav__links a:hover {
  background: rgba(255, 215, 0, 0.14);
  border-color: rgba(255, 215, 0, 0.35);
  color: var(--gold);
}

.details-topnav__links .details-topnav__wa {
  background: linear-gradient(135deg, #25D366, #009739);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}

.details-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
}

@media (max-width: 720px) {
  .details-topnav {
    top: 10px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    width: calc(100% - 20px);
    padding: 7px 9px 7px 12px;
    overflow: hidden;
  }

  .details-topnav__brand {
    flex: 0 0 auto;
  }

  .details-topnav__brand img {
    width: 96px;
  }

  .details-topnav__links {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .details-topnav__links::-webkit-scrollbar {
    display: none;
  }

  .details-topnav__links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.76rem;
  }

  .details-topnav__links .details-topnav__wa {
    background: linear-gradient(135deg, #25D366, #009739);
    color: #fff;
  }

  .details-shell {
    padding-top: 96px;
  }
}

.details-back-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease-out);
}

.details-back-home:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.details-back-home span {
  font-size: 1rem;
  line-height: 1;
}

.details-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 30px;
}

.details-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.details-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 8px 0 10px;
  text-transform: uppercase;
}

.details-hero__sub {
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.6;
}

.details-hero__count {
  font-family: var(--font-card);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.detail-card {
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  isolation: isolate;
}

.detail-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 9, 38, 0.08) 20%,
      rgba(5, 9, 38, 0.88) 100%);
}

.detail-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card__title {
  font-family: var(--font-card);
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 700;
}

.detail-card__meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.detail-card__rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.detail-card__rank:empty {
  display: none;
}

.detail-card--skeleton {
  cursor: progress;
  pointer-events: none;
}

.detail-card--skeleton .detail-card__tag,
.detail-card--skeleton .detail-card__title,
.detail-card--skeleton .detail-card__meta {
  background: rgba(255, 255, 255, 0.08);
  color: transparent;
  position: relative;
  overflow: hidden;
}

.detail-card--skeleton .detail-card__tag {
  width: 52%;
  height: 14px;
}

.detail-card--skeleton .detail-card__title {
  width: 86%;
  min-height: 20px;
}

.detail-card--skeleton .detail-card__meta {
  width: 64%;
  min-height: 14px;
}

.detail-card--skeleton .detail-card__tag::before,
.detail-card--skeleton .detail-card__title::before,
.detail-card--skeleton .detail-card__meta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.04) 8%,
      rgba(255, 255, 255, 0.16) 18%,
      rgba(255, 255, 255, 0.04) 33%);
  background-size: 220% 100%;
  animation: details-skeleton-shimmer 1.4s linear infinite;
}

@keyframes details-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.details-empty {
  padding: 48px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-soft);
  text-align: center;
  grid-column: 1 / -1;
}

.details-load-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.details-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease-out);
}

.details-load-more:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.details-load-more span {
  color: inherit;
  opacity: 0.76;
  font-size: 0.78rem;
  font-weight: 800;
}

/* =============================================================
   SECTION 3: SHELF (Netflix-classic)
   ============================================================= */
.shelf {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.shelf-track-wrap {
  position: relative;
  padding: 0 var(--gutter);
}

.shelf-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--gutter);
  padding: 32px 0 50px;
  margin: -24px 0 -24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  clip-path: inset(-100px 0 -100px 0);
}

.shelf-track::-webkit-scrollbar {
  display: none;
}

.shelf-track-wrap {
  overflow: visible;
}

.shelf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 9, 38, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    background 0.2s ease,
    transform 0.2s var(--ease-spring);
}

.shelf-arrow svg {
  width: 18px;
  height: 18px;
}

.shelf-arrow--prev {
  left: 8px;
}

.shelf-arrow--next {
  right: 8px;
}

.shelf-track-wrap:hover .shelf-arrow {
  opacity: 1;
  pointer-events: auto;
}

.shelf-arrow:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}

@media (min-width: 980px) {
  .shelf-arrow {
    display: inline-flex;
  }
}

.card {
  flex: 0 0 auto;
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  scroll-snap-align: start;
  cursor: pointer;
  transform-origin: center bottom;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

@media (min-width: 720px) {
  .card {
    width: 240px;
  }
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 9, 38, 0.05) 30%,
      rgba(5, 9, 38, 0.85) 100%);
  transition: background 0.4s var(--ease-out, ease), opacity 0.4s var(--ease-out, ease);
}

.card:hover .card-overlay {
  background: linear-gradient(180deg,
      rgba(5, 9, 38, 0.0) 30%,
      rgba(5, 9, 38, 0.15) 100%);
}

.card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: var(--font-body);
  position: relative;
}

.card-tag::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff3344, #ff6688);
  flex-shrink: 0;
}

.card-tag--blue::before {
  background: linear-gradient(135deg, #1a3aff, #4a66ff);
}

.card-tag--green::before {
  background: linear-gradient(135deg, #00b347, #009739);
}

.card-tag--red::before {
  background: linear-gradient(135deg, #ff3344, #a855f7);
}

.card-title {
  font-family: var(--font-card);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
  text-wrap: balance;
}

.card-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  gap: 8px;
  font-weight: 500;
}

.card--skeleton {
  cursor: progress;
  pointer-events: none;
}

.card--skeleton .card-bg {
  background:
    linear-gradient(110deg,
      rgba(255, 255, 255, 0.04) 8%,
      rgba(255, 255, 255, 0.13) 18%,
      rgba(255, 255, 255, 0.04) 33%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02));
  background-size: 220% 100%;
  animation: card-skeleton-shimmer 1.5s linear infinite;
}

.card--skeleton .card-overlay {
  background: linear-gradient(180deg,
      rgba(5, 9, 38, 0.1) 30%,
      rgba(5, 9, 38, 0.7) 100%);
}

.card--skeleton .card-tag,
.card--skeleton .card-title,
.card--skeleton .card-meta,
.card--skeleton .card-cta {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  color: transparent;
}

.card--skeleton .card-tag {
  width: 92px;
  height: 20px;
}

.card--skeleton .card-tag::before {
  display: none;
}

.card--skeleton .card-title {
  width: 84%;
  min-height: 44px;
}

.card--skeleton .card-meta {
  width: 58%;
  min-height: 14px;
}

.card--skeleton .card-cta {
  opacity: 1;
  transform: none;
  background: rgba(255, 255, 255, 0.12);
}

.card--skeleton .card-cta svg {
  display: none;
}

@keyframes card-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.card-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease-spring);
  z-index: 2;
}

.card-cta svg {
  width: 18px;
  height: 18px;
}

/* Card hover OTIMIZADO — GPU-only:
   - box-shadow vira pseudo-element com opacity (não dispara repaint da página inteira)
   - sem filter no card-bg (filter força composite layer caro)
   - transitions encurtadas (0.42→0.28s)
   - @media (hover:hover) garante que touch não dispara hover persistente */
.card {
  position: relative;
  outline: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(255, 215, 0, 0.3);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  z-index: -1;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-8px) scale(1.03);
    z-index: 6;
  }

  .card:hover::after {
    opacity: 1;
  }

  .card:hover .card-bg {
    transform: scale(1.06);
  }

  /* sem filter, só scale */
  .card:hover .card-cta {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .card:hover .card-title {
    color: var(--gold);
  }
}

.card-title {
  transition: color 0.22s var(--ease-out);
}

/* =============================================================
   SECTION 4: STORIES — Mini-cards verticais 9:16 (V2) com SwiperJS
   Auto-scroll horizontal contínuo (loop) + drag touch/mouse.
   ============================================================= */
.stories {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.stories-track-wrap {
  padding: 20px 0;
  /* respiro vertical pra hover lift escapar */
  margin: 10px 0;
  position: relative;
}

.stories-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(5, 9, 38, 0.12);
  background: transparent;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.stories-arrow svg {
  width: 20px;
  height: 20px;
}

.stories-arrow--prev {
  left: 10px;
}

.stories-arrow--next {
  right: 10px;
}

.stories-arrow:hover {
  color: var(--ink);
  transform: translateY(-50%) scale(1.12);
}

.stories-swiper {
  overflow: visible !important;
  /* libera shadow/lift escapar do swiper */
  padding-left: var(--gutter);
  cursor: grab;
}

.stories-swiper:active {
  cursor: grabbing;
}

.stories-swiper .swiper-wrapper {
  transition-timing-function: linear;
  /* autoplay continuous feel */
}

.stories-swiper .swiper-slide {
  width: clamp(154px, calc((min(100vw, var(--container)) - 70px) / 6), 205px);
  aspect-ratio: 9/16;
  height: auto;
}

.story {
  flex-shrink: 0;
  width: clamp(154px, calc((min(100vw, var(--container)) - 70px) / 6), 205px);
  aspect-ratio: 9/16;
  height: auto;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: var(--ink-2);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
  text-decoration: none;
}

.story::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.06) 30%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) {
  .story:hover {
    transform: translateY(-6px) scale(1.03);
    z-index: 10;
  }

  .story::after,
  .story::before {
    transition: opacity 0.28s ease;
  }
}

.story-shadow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(255, 215, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.28s ease;
}

@media (hover: hover) {
  .story:hover .story-shadow {
    opacity: 1;
  }
}

/* shine ring igual aos outros cards */
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--card-shine-angle),
      transparent 0%,
      rgba(255, 215, 0, 0) 12%,
      rgba(255, 215, 0, 1) 22%,
      #fff8d0 30%,
      rgba(255, 215, 0, 1) 38%,
      rgba(255, 215, 0, 0) 50%,
      transparent 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.story:hover::before {
  opacity: 1;
  animation: card-shine-rotate 3.5s linear infinite;
}

.story-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}

.story-tag {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(255, 215, 0, 0.92);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 8px;
}

.story-title {
  font-family: var(--font-card);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dot pulsante "novo" — só nos primeiros 3-4 stories */
.story-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3344;
  z-index: 3;
  animation: story-dot-pulse 2s ease-in-out infinite;
}

@keyframes story-dot-pulse {

  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 51, 68, 0.35),
      0 0 12px rgba(255, 51, 68, 0.4);
  }

  50% {
    box-shadow:
      0 0 0 7px rgba(255, 51, 68, 0.12),
      0 0 22px rgba(255, 51, 68, 0.65);
  }
}

/* Locked story (último teaser) */
.story.is-locked {
  background-color: rgba(255, 215, 0, 0.04);
  border: 1.5px dashed rgba(255, 215, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.story.is-locked::after {
  display: none;
}

.story.is-locked .story-lock {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.story.is-locked .story-lock svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.story.is-locked .story-lock-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.story.is-locked .story-lock-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin-top: 4px;
}

.story.is-locked:hover {
  border-style: solid;
  border-color: var(--gold);
}

/* =============================================================
   SECTION 5: BENTO — mosaico de 6 tiles variadas
   ============================================================= */
.bento {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.bento-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
}

@media (min-width: 880px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
}

.bento-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}

.bento-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 9, 38, 0.88));
}

.bento-tile {
  outline: 2px solid transparent;
  outline-offset: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-offset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.3s ease;
}

.bento-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(255, 215, 0, 0.3);
  z-index: 8;
}

.bento-tile:hover .bento-tile-title {
  color: var(--gold);
  transition: color 0.3s var(--ease-out);
}

.bento-tile-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  z-index: 2;
}

.bento-tile-tag {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.bento-tile-title {
  font-family: var(--font-card);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.bento-tile-1 {
  grid-column: span 2;
  grid-row: span 2;
}

@media (min-width: 880px) {
  .bento-tile-1 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.bento-tile-1 .bento-tile-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

.bento-tile-1 .bento-tile-tag {
  background: var(--gold);
  color: var(--ink);
}

.bento-tile-2 {
  background-color: var(--brand);
}

.bento-tile-2::after {
  background: linear-gradient(135deg, transparent 40%, rgba(13, 44, 163, 0.95));
}

.bento-tile-3 {
  grid-column: span 2;
}

@media (min-width: 880px) {
  .bento-tile-3 {
    grid-column: span 2;
  }
}

.bento-tile-5 {
  background-color: var(--green-deep);
}

.bento-tile-5::after {
  background: linear-gradient(135deg, transparent 40%, rgba(0, 151, 57, 0.95));
}

.bento-tile-6 {
  background-color: var(--ink-3);
}

/* =============================================================
   SECTION 6: LONG-FORM — 2 colunas 16:9 com texto debaixo
   ============================================================= */
.longform {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.longform-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .longform-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.longform-card {
  cursor: pointer;
}

.longform-cover {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  outline: 2px solid transparent;
  outline-offset: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-offset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.3s ease;
}

.longform-card:hover .longform-cover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(255, 215, 0, 0.3);
}

.longform-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5));
}

.longform-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.longform-title {
  font-family: var(--font-card);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-transform: none;
  text-wrap: balance;
}

.longform-card:hover .longform-title {
  color: var(--gold);
}

.longform-excerpt {
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 540px;
}

.longform-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-mute);
}

/* =============================================================
   CADASTRO
   ============================================================= */
.cadastro {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.cadastro-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(40px) saturate(140%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cadastro-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      var(--gold),
      transparent 40%,
      var(--brand-glow));
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}

.cadastro-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 880px) {
  .cadastro-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.cadastro-pitch h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.cadastro-pitch h2 em {
  font-style: normal;
  color: var(--gold);
}

.cadastro-pitch p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 380px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

@media (min-width: 600px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.field input::placeholder {
  color: var(--text-mute);
}

.field input:focus,
.field select:focus {
  outline: 0;
  border-color: var(--gold);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.12);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-submit {
  height: 56px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.32);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 215, 0, 0.45);
}

/* =============================================================
   QUEM SOMOS / INFLUENCER / SIGA / FOOTER
   (mantidos do v1 com pequenos ajustes)
   ============================================================= */
.qs {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.qs-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 980px) {
  .qs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.qs-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  text-wrap: balance;
}

.qs-title em {
  font-style: normal;
  color: var(--gold);
}

.qs-text p {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.qs-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.qs-tile {
  aspect-ratio: 3/4;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.qs-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  transition: opacity 0.4s ease;
}

.qs-tile:nth-child(1)::after {
  background: var(--green-deep);
  opacity: 0.7;
}

.qs-tile:nth-child(2)::after {
  background: var(--gold);
  opacity: 0.6;
}

.qs-tile:nth-child(3)::after {
  background: var(--brand);
  opacity: 0.55;
}

.qs-tile:nth-child(4)::after {
  background: var(--gold);
  opacity: 0.5;
}

.qs-tile:nth-child(5)::after {
  background: var(--brand-glow);
  opacity: 0.45;
}

.qs-tile:nth-child(6)::after {
  background: var(--green-deep);
  opacity: 0.65;
}

.qs-tile:hover::after {
  opacity: 0;
}

.influencer {
  position: relative;
  z-index: 1;
  padding: 60px var(--gutter);
}

.influencer-card {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(26, 58, 255, 0.18), rgba(255, 215, 0, 0.12)),
    radial-gradient(circle at 80% 30%,
      rgba(255, 215, 0, 0.18),
      transparent 50%),
    linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--border);
  display: grid;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 880px) {
  .influencer-card {
    grid-template-columns: 1.3fr 1fr;
  }
}

.influencer-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.18;
  filter: blur(40px);
}

.influencer-pitch h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.influencer-pitch p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 460px;
}

.influencer-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.influencer-stat {
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition:
    border-color 0.2s ease,
    transform 0.25s var(--ease-spring);
}

.influencer-stat:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.influencer-stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  display: block;
}

.influencer-stat span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.siga {
  position: relative;
  z-index: 1;
  padding: 80px var(--gutter);
  text-align: center;
}

.siga h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.siga ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.siga a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition:
    background 0.2s ease,
    transform 0.25s var(--ease-spring),
    border-color 0.2s ease;
}

.siga a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.05);
}

.siga svg {
  width: 24px;
  height: 24px;
}

footer {
  position: relative;
  z-index: 1;
  padding: 60px var(--gutter) 32px;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.foot-brand {
  font-family: var(--font-display-alt);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.foot-brand span {
  color: var(--gold);
}

.foot-meta {
  color: var(--text-mute);
  font-size: 0.82rem;
}

/* =============================================================
   Floating WhatsApp CTA
   ============================================================= */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: auto;
  min-width: 0;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #25d366, #009739) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 18px 44px rgba(37, 211, 102, 0.26);
  z-index: 40;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-spring),
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab:hover {
  transform: translateY(-4px);
  filter: brightness(1.06);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 22px 54px rgba(37, 211, 102, 0.34);
}

.fab svg {
  width: 24px;
  height: 24px;
  color: #050926 !important;
  color: currentColor !important;
  stroke: none !important;
  filter: none;
  flex: 0 0 24px;
}

.fab svg path {
  stroke: none !important;
}

.fab span {
  color: inherit;
}

@media (max-width: 640px) {
  .fab {
    right: 16px;
    bottom: 18px;
    height: 52px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .fab svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

/* =============================================================
   MODAL — detalhe do card
   ============================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 24, 0.78);
  backdrop-filter: blur(24px);
  cursor: pointer;
}

.modal-card {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.4s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.modal.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  flex: 1;
  overflow-y: auto;
}

@media (min-width: 880px) {
  .modal-grid {
    grid-template-columns: 1.05fr 1fr;
  }
}

.modal-media {
  position: relative;
  background: var(--ink-3);
  min-height: 320px;
  overflow: hidden;
}

@media (min-width: 880px) {
  .modal-media {
    min-height: 0;
    aspect-ratio: auto;
  }
}

.modal-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(140%);
  opacity: 0.4;
  transform: scale(1.2);
}

.modal-preview {
  position: relative;
  width: min(75%, 320px);
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  margin: 32px auto;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: var(--ink);
  z-index: 2;
}

.modal-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-preview-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.modal-preview-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition:
    background 0.2s ease,
    transform 0.2s var(--ease-spring);
}

.modal-close:hover {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(90deg);
}

.modal-meta {
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.modal-meta-tag {
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.modal-meta-title {
  font-family: var(--font-card);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  text-wrap: balance;
}

.modal-meta-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.modal-meta-stats div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.modal-meta-stats strong {
  color: var(--text);
  font-weight: 700;
}

.modal-section {
  margin-top: 4px;
}

.modal-section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}

.modal-caption {
  width: 100%;
  min-height: 90px;
  resize: vertical;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
  font-family: var(--font-body);
}

.modal-caption:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
}

.modal-copy-btn {
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.modal-copy-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hashtag {
  padding: 5px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--brand-glow);
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.hashtag:hover {
  background: var(--brand-glow);
  color: #fff;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dl-btn {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease-spring);
}

.dl-btn:hover {
  background: var(--surface-2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.dl-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dl-btn small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-mute);
  font-weight: 500;
}

/* =============================================================
   v3.6 — MODAL SHARE-FIRST
   ============================================================= */
.modal-share-primary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 179, 71, 0.35);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
  isolation: isolate;
}

.modal-share-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 179, 71, 0.45);
}

.modal-share-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
}

.modal-share-primary:hover::after {
  transform: translateX(100%);
}

.modal-share-primary-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.modal-share-primary-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.modal-share-primary-text {
  flex: 1;
}

.modal-share-primary-text strong {
  display: block;
  font-family: var(--font-card);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 2px;
}

.modal-share-primary-text span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  font-weight: 500;
}

.modal-share-primary-arrow svg {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: transform 0.3s var(--ease-spring);
}

.modal-share-primary:hover .modal-share-primary-arrow svg {
  transform: translateX(4px);
  opacity: 1;
}

/* Linha de redes sociais secundárias */
.modal-socials {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}

@media (max-width: 540px) {
  .modal-socials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modal-social {
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s ease,
    filter 0.2s ease;
  position: relative;
  border: 1px solid var(--border);
}

.modal-social svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.modal-social svg.icon-lg {
  width: 26px;
  height: 26px;
}

.modal-social:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Tooltip-box (separate caixa, abaixo dos ícones, sem brigar com elementos) */
.modal-socials-hint {
  margin-top: 12px;
  min-height: 32px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  letter-spacing: 0.01em;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.modal-socials-hint[data-active] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.modal-social-tooltip {
  display: none;
}

/* legacy span — agora usamos a caixa abaixo */

.modal-social--instagram {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  border-color: transparent;
}

.modal-social--x {
  background: #000;
  border-color: #2a2a2a;
}

.modal-social--facebook {
  background: #1877f2;
  border-color: transparent;
}

.modal-social--telegram {
  background: #229ed9;
  border-color: transparent;
}

.modal-social--threads {
  background: #000;
  border-color: #2a2a2a;
}

.modal-social--copy {
  background: var(--surface-2);
}

.modal-social--copy.is-copied {
  background: var(--green-deep);
}

/* Downloads dinâmicos (formato-específicos) */
.dl-btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 700;
}

.dl-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.35);
}

.dl-btn--primary svg {
  color: var(--ink);
}

.dl-btn--primary small {
  color: rgba(0, 0, 0, 0.55);
}

/* =============================================================
   CATEGORY TILES (V3 do categorias.html — escolhida pelo Max)
   Cada tile tem foto de fundo + filtro escuro + nome em destaque.
   ============================================================= */
.cats-tiles {
  position: relative;
  padding: 32px var(--gutter) 24px;
  isolation: isolate;
  overflow: hidden;
}

.cats-tiles__head {
  max-width: var(--container);
  margin: 0 auto 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cats-tiles__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cats-tiles__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.cats-tiles__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.012em;
  text-transform: uppercase;
}

.cats-tiles__sub {
  max-width: 480px;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.cats-tiles-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.cat-tile {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.4s ease;
  background-color: var(--ink-2);
}

.cat-tile-bg {
  position: absolute;
  inset: 0;
  background-image: var(--cat-img);
  background-size: cover;
  background-position: center;
  filter: brightness(0.58) contrast(1.05) saturate(1.12);
  transition:
    filter 0.6s var(--ease-out),
    transform 0.8s var(--ease-out);
  z-index: 0;
}

.cat-tile:hover .cat-tile-bg {
  filter: brightness(0.68) contrast(1.05) saturate(1.22);
  transform: scale(1.08);
}

.cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center,
      transparent 0%,
      rgba(5, 9, 38, 0.4) 60%,
      rgba(5, 9, 38, 0.85) 100%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6));
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.cat-tile:hover::after {
  opacity: 0.7;
}

.cat-tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  z-index: 2;
  color: #fff;
}

.cat-tile-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.4s var(--ease-out),
    color 0.3s ease;
}

.cat-tile-count {
  display: none;
}

.cat-tile:hover .cat-tile-name {
  transform: translateY(-3px);
  color: var(--gold);
}

/* color accents — primeiro tile featured + outros temáticos */
.cat-tile--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
}

.cat-tile--featured .cat-tile-name {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}

@media (max-width: 540px) {
  .cat-tile--featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 4/5;
  }
}

/* shine ring (igual aos cards) */
.cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--card-shine-angle),
      transparent 0%,
      rgba(255, 215, 0, 0) 12%,
      rgba(255, 215, 0, 1) 22%,
      #fff8d0 30%,
      rgba(255, 215, 0, 1) 38%,
      rgba(255, 215, 0, 0) 50%,
      transparent 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.cat-tile:hover::before {
  opacity: 1;
  animation: card-shine-rotate 3.5s linear infinite;
}

.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(255, 215, 0, 0.25);
}

/* =============================================================
   FORMAT-SPECIFIC SHELVES (Reels-only / Carrossel-only / Cards-only / Tweets-only)
   Pequenas, abaixo do "geralzão". Cada uma com identidade visual leve.
   ============================================================= */
.fmt-shelves {
  position: relative;
  padding: 110px var(--gutter) 100px;
  background:
    radial-gradient(1100px 480px at 80% 0%,
      rgba(26, 58, 255, 0.1),
      transparent 70%),
    linear-gradient(180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.015) 50%,
      transparent 100%);
  isolation: isolate;
  /* overflow:clip + clip-margin permite sombras escaparem 80px sem deixar blobs vazarem */
  overflow: clip;
  overflow-clip-margin: 80px;
}

/* Textura sutil de grão na seção de formatos */
.fmt-shelves::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

/* Blob azul ambiente sutil */
.fmt-shelves__amb {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.fmt-shelves__amb--1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(26, 58, 255, 0.18), transparent 70%);
  top: 20%;
  left: -200px;
  animation: amb-float 18s ease-in-out infinite;
}

.fmt-shelves__amb--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
  bottom: 10%;
  right: -120px;
  animation: amb-float 24s ease-in-out -6s infinite reverse;
}

@keyframes amb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -60px) scale(1.12);
  }
}

/* Parallax sutil: o pai precisa de perspective + os filhos translate-Y baseado no data attr */
.parallax-y {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.fmt-shelves__head {
  max-width: var(--container);
  margin: 0 auto 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fmt-shelves__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fmt-shelves__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.fmt-shelves__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.fmt-shelves__sub {
  max-width: 560px;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.fmt-shelf {
  max-width: var(--container);
  margin: 0 auto 64px;
}

.fmt-shelf:last-child {
  margin-bottom: 0;
}

.fmt-shelf__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.fmt-shelf__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-card);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fmt-shelf__label .fmt-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fmt-shelf__label .fmt-ico svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.fmt-shelf__count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fmt-shelf--card .fmt-ico {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: transparent;
}

.fmt-shelf--card .fmt-ico svg {
  color: var(--ink);
}

.fmt-shelf--tweet .fmt-ico {
  background: #000;
  border: 1px solid #2a2a2a;
}

.fmt-shelf__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.fmt-shelf__link:hover {
  color: var(--gold);
}

/* track horizontal — overflow generoso pra sombra escala não ser cortada */
.fmt-track-wrap {
  position: relative;
  overflow: visible;
}

.fmt-track-wrap::before,
.fmt-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}

.fmt-track-wrap::before {
  left: -4px;
  background: linear-gradient(90deg, #060b2b, rgba(6, 11, 43, 0));
}

.fmt-track-wrap::after {
  right: -4px;
  background: linear-gradient(270deg, #060b2b, rgba(6, 11, 43, 0));
}

.fmt-arrow {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.fmt-arrow svg {
  width: 20px;
  height: 20px;
}

.fmt-arrow--prev {
  left: -18px;
}

.fmt-arrow--next {
  right: -18px;
}

.fmt-arrow:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-50%) scale(1.12);
}

@media (max-width: 900px) {
  .fmt-arrow {
    display: none;
  }
}

.fmt-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 30px 4px 80px 0;
  /* respiro vertical bem grande pra hover lift */
  margin: -10px -4px -80px 0;
  /* compensa no layout */
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-left: var(--gutter);
  /* libera vertical bem amplo (-200px) sem expor scroll horizontal */
  clip-path: inset(-220px 0 -220px 0);
}

.fmt-track::-webkit-scrollbar {
  display: none;
}

.fmt-track>* {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* =============================================================
   HOVER UNIFICADO — todos os fmt-cards (Reels/Carrosséis/Cards)
   Lift + scale + outline gold + sombra compacta.
   Funciona em TODOS via :hover puro (sem JS).
   ============================================================= */
.fmt-card-reel,
.fmt-card-carro,
.fmt-card-post {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-offset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.3s ease;
  outline: 2px solid transparent;
  outline-offset: 0;
}

.fmt-card-reel:hover,
.fmt-card-carro:hover,
.fmt-card-post:hover {
  transform: translate3d(0, -10px, 0) scale(1.045);
  z-index: 10;
}

.fmt-card-reel:hover {
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 215, 0, 0.3);
}

.fmt-card-carro:hover {
  box-shadow:
    0 14px 28px rgba(15, 40, 110, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(255, 215, 0, 0.3);
}

.fmt-card-post:hover {
  box-shadow:
    0 14px 28px rgba(120, 90, 0, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(255, 215, 0, 0.32);
}

/* Tweet card — sem scale (é texto), só border azul + leve lift */
.tweet-card {
  transition:
    background 0.2s ease,
    border-color 0.25s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.tweet-card:hover {
  background: rgb(8, 8, 12);
  border-color: rgb(29, 155, 240);
  transform: translate3d(0, -2px, 0);
  box-shadow:
    0 0 0 1px rgba(29, 155, 240, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.55);
}

/* Reel cards verticais (9:16) — sem border (evita micro-linha) */
.fmt-card-reel {
  width: 200px;
  height: 356px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  background-color: #0a1140;
  /* fallback se imagem falhar — sem flash */
  /* gradient com stops suaves pra evitar micro-linha visível */
  /* sem border — bordas do gradient batem com bordas do card */
  will-change: transform, box-shadow;
}

.fmt-card-reel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.06) 28%,
      rgba(0, 0, 0, 0.42) 62%,
      rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.fmt-card-reel-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fmt-card-reel-title {
  font-family: var(--font-card);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fmt-card-reel-stats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.fmt-card-reel-stats svg {
  width: 11px;
  height: 11px;
}

.fmt-card-reel-play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.fmt-card-reel-play svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

/* Carrossel cards quadrados com badge "X slides" */
.fmt-card-carro {
  width: 240px;
  height: 240px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #0a1140;
  cursor: pointer;
  will-change: transform, box-shadow;
}

.fmt-card-carro::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.06) 32%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
}

.fmt-card-carro-slides {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}

.fmt-card-carro-slides svg {
  width: 13px;
  height: 13px;
}

.fmt-card-carro-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
}

.fmt-card-carro-title {
  font-family: var(--font-card);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fmt-card-carro-dots {
  display: inline-flex;
  gap: 3px;
  margin-top: 8px;
}

.fmt-card-carro-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.fmt-card-carro-dots span:first-child {
  background: var(--gold);
  width: 12px;
  border-radius: 999px;
}

/* Locked endcap — teaser de cadastro no final de cada fmt-shelf */
.fmt-endcap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.04),
      rgba(26, 58, 255, 0.06));
  border: 1.5px dashed rgba(255, 215, 0, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s var(--ease-out);
  isolation: isolate;
}

.fmt-endcap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(255, 215, 0, 0.18),
      transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.fmt-endcap:hover {
  border-color: var(--gold);
  border-style: solid;
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(255, 215, 0, 0.32);
}

.fmt-endcap:hover::before {
  opacity: 1;
}

.fmt-endcap-lock {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  margin-bottom: 4px;
}

.fmt-endcap-lock svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.fmt-endcap-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.fmt-endcap-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 160px;
  line-height: 1.35;
}

.fmt-endcap-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-card);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

.fmt-endcap-cta svg {
  width: 12px;
  height: 12px;
}

/* Tamanhos específicos pro endcap se ajustar ao formato da shelf */
.fmt-endcap--reel {
  width: 200px;
  height: 356px;
}

.fmt-endcap--carro {
  width: 240px;
  height: 240px;
}

.fmt-endcap--post {
  width: 220px;
  height: 220px;
}

/* Card 1:1 estáticos (post) */
.fmt-card-post {
  width: clamp(180px, calc((min(100vw, var(--container)) - 70px) / 6), 208px);
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #0a1140;
  cursor: pointer;
  will-change: transform, box-shadow;
}

.fmt-card-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 30%,
      rgba(0, 0, 0, 0.4) 65%,
      rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.fmt-card-post-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}

.fmt-card-post-title {
  font-family: var(--font-card);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================================
   TWEETS REAIS — replicação de feed do X
   Background: gaussian-blur blobs azul-marinho com breathing animation +
   textura de grão sutil + parallax leve no scroll.
   ============================================================= */
.tweets-section {
  position: relative;
  background: #06080f;
  padding: 110px var(--gutter) 100px;
  overflow: hidden;
  isolation: isolate;
}

/* Camada 1 — gradiente de base */
.tweets-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 30% 0%,
      rgba(15, 40, 90, 0.65),
      transparent 70%),
    radial-gradient(700px 360px at 80% 100%,
      rgba(20, 55, 120, 0.45),
      transparent 65%);
  pointer-events: none;
  z-index: -2;
}

/* Camada 2 — textura de grão (dataURI noise) */
.tweets-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.65  0 0 0 0 0.85  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

/* Blobs animados — gaussian breathing */
.tweets-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.tweets-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.tweets-blob--a {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle,
      rgba(29, 80, 180, 0.85),
      rgba(15, 40, 90, 0));
  top: -120px;
  left: -100px;
  animation: tweet-blob-a 22s var(--ease-soft) infinite;
}

.tweets-blob--b {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle,
      rgba(20, 55, 150, 0.7),
      rgba(10, 25, 70, 0));
  bottom: -160px;
  right: -140px;
  animation: tweet-blob-b 28s var(--ease-soft) infinite;
}

.tweets-blob--c {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(40, 100, 200, 0.55),
      rgba(20, 50, 120, 0));
  top: 40%;
  left: 50%;
  animation: tweet-blob-c 32s var(--ease-soft) infinite;
}

@keyframes tweet-blob-a {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }

  33% {
    transform: translate(80px, 60px) scale(1.15);
    opacity: 1;
  }

  66% {
    transform: translate(-40px, 90px) scale(0.92);
    opacity: 0.75;
  }
}

@keyframes tweet-blob-b {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  40% {
    transform: translate(-100px, -60px) scale(1.18);
    opacity: 0.9;
  }

  75% {
    transform: translate(60px, -30px) scale(0.95);
    opacity: 0.6;
  }
}

@keyframes tweet-blob-c {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translate(-30%, -55%) scale(1.25);
    opacity: 0.75;
  }
}

.tweets-head {
  position: relative;
  max-width: var(--container);
  margin: 0 auto 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tweets-head__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.tweets-head__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tweets-head__logo svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.tweets-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.tweets-head__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(29, 155, 240, 1);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.tweets-head__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(29, 155, 240, 1);
}

.tweets-head__sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 540px;
  line-height: 1.55;
  margin-top: 8px;
}

.tweet-swiper-wrap {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.tweet-swiper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 50px 0 56px;
  margin: -50px 0;
  -webkit-overflow-scrolling: touch;
  clip-path: inset(-100px 0 -100px 0);
}

.tweet-swiper::-webkit-scrollbar {
  display: none;
}

.tweet-swiper>* {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* CARTÃO DE TWEET — texto only, X-style background, sem autor (sugestões da equipe) */
.tweet-card {
  width: 380px;
  background: #000;
  border: 1px solid rgb(47, 51, 54);
  border-radius: 16px;
  padding: 22px 20px 16px;
  font-family:
    'Chirp',
    'TwitterChirp',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  color: rgb(231, 233, 234);
  cursor: pointer;
  position: relative;
  will-change: transform, box-shadow;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Cantinho com X logo OFICIAL discreto pra contextualizar */
.tweet-card::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' opacity='0.22'><path d='M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z'/></svg>") no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
}

.tweet-card.is-lifted-bg {
  background: rgb(8, 8, 8);
  border-color: rgb(83, 100, 113);
}

/* Header do tweet (avatar/nome/handle/tempo) — escondido (texto-only) */
.tweet-card__head {
  display: none !important;
}

/* Action stats fake (reply/retweet/like com counts) — escondidos também */
.tweet-card__actions {
  display: none !important;
}

.tweet-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}

.tweet-card__avatar--bolso {
  background: linear-gradient(135deg, #1a3aff 0%, #ffd700 100%);
}

.tweet-card__avatar--patriota {
  background: linear-gradient(135deg, #009739 0%, #ffd700 100%);
}

.tweet-card__avatar--liberal {
  background: linear-gradient(135deg, #050926 0%, #1a3aff 100%);
}

.tweet-card__avatar--brasil {
  background: linear-gradient(135deg, #009739 0%, #ffd700 50%, #1a3aff 100%);
}

.tweet-card__avatar--right {
  background: linear-gradient(135deg, #c00 0%, #ffd700 100%);
}

.tweet-card__avatar--initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.tweet-card__author {
  flex: 1;
  min-width: 0;
}

.tweet-card__author-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  line-height: 20px;
}

.tweet-card__name {
  font-weight: 700;
  color: rgb(231, 233, 234);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.tweet-card__verified {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: rgb(29, 155, 240);
}

.tweet-card__verified svg {
  width: 100%;
  height: 100%;
}

.tweet-card__handle,
.tweet-card__time,
.tweet-card__sep {
  color: rgb(113, 118, 123);
  font-weight: 400;
  flex-shrink: 0;
}

.tweet-card__handle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tweet-card__menu {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(113, 118, 123);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.tweet-card__menu:hover {
  background: rgba(29, 155, 240, 0.1);
  color: rgb(29, 155, 240);
}

.tweet-card__menu svg {
  width: 18px;
  height: 18px;
}

.tweet-card__text {
  font-size: 15px;
  line-height: 20px;
  color: rgb(231, 233, 234);
  margin: 12px 0 12px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.tweet-card--skeleton {
  pointer-events: none;
  cursor: progress;
}

.tweet-card--skeleton .tweet-card__head,
.tweet-card--skeleton .tweet-card__text,
.tweet-card--skeleton .tweet-card__media,
.tweet-card--skeleton .tweet-card__actions,
.tweet-card--skeleton .tweet-card__use-cta {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.tweet-card--skeleton .tweet-card__head {
  display: block !important;
  min-height: 42px;
  border-radius: 999px;
}

.tweet-card--skeleton .tweet-card__text {
  min-height: 144px;
  border-radius: 14px;
  color: transparent;
}

.tweet-card--skeleton .tweet-card__media {
  min-height: 120px;
  border-radius: 16px;
}

.tweet-card--skeleton .tweet-card__actions {
  display: flex !important;
  gap: 10px;
  justify-content: flex-start;
  min-height: 24px;
  border-radius: 999px;
}

.tweet-card--skeleton .tweet-card__use-cta {
  display: flex !important;
  min-height: 52px;
  border-radius: 999px;
}

.tweet-card--skeleton .tweet-card__head::before,
.tweet-card--skeleton .tweet-card__text::before,
.tweet-card--skeleton .tweet-card__media::before,
.tweet-card--skeleton .tweet-card__actions::before,
.tweet-card--skeleton .tweet-card__use-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.03) 8%,
      rgba(255, 255, 255, 0.14) 18%,
      rgba(255, 255, 255, 0.03) 33%);
  background-size: 220% 100%;
  animation: tweet-skeleton-shimmer 1.45s linear infinite;
}

@keyframes tweet-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.tweet-card__text a,
.tweet-card__hashtag,
.tweet-card__mention {
  color: rgb(29, 155, 240);
}

.tweet-card__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(47, 51, 54);
  margin-bottom: 12px;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

.tweet-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  max-width: 425px;
  color: rgb(113, 118, 123);
}

.tweet-card__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 16px;
  transition: color 0.15s ease;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.tweet-card__action svg {
  width: 18.75px;
  height: 18.75px;
  flex-shrink: 0;
}

.tweet-card__action-ico {
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -8px -2px -8px -8px;
  transition: background 0.15s ease;
}

.tweet-card__action:hover[data-action='reply'] {
  color: rgb(29, 155, 240);
}

.tweet-card__action:hover[data-action='reply'] .tweet-card__action-ico {
  background: rgba(29, 155, 240, 0.1);
}

.tweet-card__action:hover[data-action='retweet'] {
  color: rgb(0, 186, 124);
}

.tweet-card__action:hover[data-action='retweet'] .tweet-card__action-ico {
  background: rgba(0, 186, 124, 0.1);
}

.tweet-card__action:hover[data-action='like'] {
  color: rgb(249, 24, 128);
}

.tweet-card__action:hover[data-action='like'] .tweet-card__action-ico {
  background: rgba(249, 24, 128, 0.1);
}

.tweet-card__action:hover[data-action='bookmark'] {
  color: rgb(29, 155, 240);
}

.tweet-card__action:hover[data-action='bookmark'] .tweet-card__action-ico {
  background: rgba(29, 155, 240, 0.1);
}

.tweet-card__action:hover[data-action='share'] {
  color: rgb(29, 155, 240);
}

.tweet-card__action:hover[data-action='share'] .tweet-card__action-ico {
  background: rgba(29, 155, 240, 0.1);
}

.tweet-card__use-cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgb(47, 51, 54);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tweet-card__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(29, 155, 240, 0.16);
  color: #eaf4ff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(88, 166, 255, 0.48);
  cursor: pointer;
  opacity: 1;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.tweet-card__copy-btn svg,
.tweet-card__copy-btn svg * {
  color: currentColor;
  stroke: currentColor;
}

.tweet-card__copy-btn:hover {
  background: rgba(29, 155, 240, 0.28);
  color: #ffffff;
  border-color: rgba(138, 194, 255, 0.72);
}

.tweet-card__copy-btn.is-copied {
  color: rgb(0, 186, 124);
  border-color: rgba(0, 186, 124, 0.4);
  background: rgba(0, 186, 124, 0.08);
}

.djnew-mockup-body .tweet-card__copy-btn {
  background: #eaf4ff !important;
  border-color: rgba(138, 194, 255, 0.9) !important;
  color: #050926 !important;
  box-shadow: 0 8px 22px rgba(29, 155, 240, 0.22) !important;
}

.djnew-mockup-body .tweet-card__copy-btn svg,
.djnew-mockup-body .tweet-card__copy-btn svg * {
  color: #050926 !important;
  stroke: #050926 !important;
}

.djnew-mockup-body .tweet-card__copy-btn:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #050926 !important;
}

.djnew-mockup-body .tweet-card__copy-btn.is-copied {
  background: rgba(0, 186, 124, 0.95) !important;
  border-color: rgba(0, 186, 124, 1) !important;
  color: #ffffff !important;
}

.djnew-mockup-body .tweet-card__copy-btn.is-copied svg,
.djnew-mockup-body .tweet-card__copy-btn.is-copied svg * {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.tweet-card__use-label {
  display: none;
}

/* não precisamos do label antigo */
.tweet-card__use-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.15s ease;
}

.tweet-card__use-btn:hover {
  background: rgb(214, 217, 219);
}

.tweet-card__use-btn svg {
  width: 12px;
  height: 12px;
}

/* arrows do swiper */
.tweet-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.tweet-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.tweet-nav svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.tweet-nav--prev {
  left: -10px;
}

.tweet-nav--next {
  right: -10px;
}

@media (max-width: 720px) {
  .tweet-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .tweet-card {
    width: calc(100vw - 60px);
    max-width: 360px;
  }

  .fmt-card-reel {
    width: 170px;
    height: 302px;
  }

  .fmt-card-carro {
    width: 200px;
    height: 200px;
  }

  .fmt-card-post {
    width: 180px;
    height: 180px;
  }
}

/* =============================================================
   SHINY CTA — Ryan Mulligan (hexagoncircle), CSS @property
   https://ryanmulligan.dev/blog/css-property-new-style/
   ============================================================= */
:root {
  --shiny-cta-bg: #050926;
  --shiny-cta-bg-subtle: #0d1340;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: #1a3aff;
  --shiny-cta-highlight-subtle: #4a66ff;
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: '<percentage>';
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: '<color>';
  initial-value: white;
  inherits: false;
}

.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background:
    linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-cta-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  translate: 0 1px;
}

.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg),
      black,
      transparent 10% 90%,
      black);
  border-radius: inherit;
  opacity: 0.4;
}

.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg,
      transparent,
      var(--shiny-cta-highlight),
      transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* (inner-glow span::before removido — Max não curtiu a marcação ao redor do texto) */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property:
    --gradient-angle-offset, --gradient-percent, --gradient-shine;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation:
    var(--animation) var(--duration),
    var(--animation) calc(var(--duration) / 0.4) reverse paused;
  animation-composition: add;
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {

  from,
  to {
    scale: 1;
  }

  50% {
    scale: 1.2;
  }
}

/* =============================================================
   SHINY HOVER RING — borda dourada animada nos cards
   Inspirado no shiny-cta. Conic-gradient rotativo + mask pra
   manter só a borda visível (efeito ring-light circulando).
   ============================================================= */
@property --card-shine-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.fmt-card-reel,
.fmt-card-carro,
.fmt-card-post,
.shelf-track .card,
.top10-card,
.bento-tile,
.spot-feature,
.spot-side,
.longform-cover {
  position: relative;
}

.fmt-card-reel::before,
.fmt-card-carro::before,
.fmt-card-post::before,
.shelf-track .card::before,
.top10-card::before,
.bento-tile::before,
.spot-feature::before,
.spot-side::before,
.longform-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--card-shine-angle),
      transparent 0%,
      rgba(255, 215, 0, 0) 12%,
      rgba(255, 215, 0, 1) 22%,
      #fff8d0 30%,
      rgba(255, 215, 0, 1) 38%,
      rgba(255, 215, 0, 0) 50%,
      transparent 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.fmt-card-reel:hover::before,
.fmt-card-carro:hover::before,
.fmt-card-post:hover::before,
.shelf-track .card:hover::before,
.top10-item:hover .top10-card::before,
.bento-tile:hover::before,
.spot-feature:hover::before,
.spot-side:hover::before,
.longform-card:hover .longform-cover::before {
  opacity: 1;
  animation: card-shine-rotate 3.5s linear infinite;
}

@keyframes card-shine-rotate {
  to {
    --card-shine-angle: 360deg;
  }
}

/* =============================================================
   WORD STACK SECTION (após Hero) — 2 colunas: text+CTA / words scroll
   ============================================================= */
.wstack {
  position: relative;
  padding: 100px var(--gutter) 120px;
  overflow: hidden;
  isolation: isolate;
}

.wstack-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

@media (max-width: 860px) {
  .wstack-grid {
    grid-template-columns: 1fr;
  }

  .wstack-words {
    display: none;
  }
}

.wstack-eyebrow {
  font-family: var(--font-body);
  /* Satoshi — clean, readable (Apple TV style) */
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wstack-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.wstack-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.wstack-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
  display: inline-block;
  min-width: 180px;
  text-align: center;
  transition:
    font-family 0s,
    transform 0.18s var(--ease-out);
  will-change: font-family, transform;
}

/* Cada "tick" do cycle muda a fonte E pulsa um pouquinho */
.wstack-title em.is-pulse {
  transform: scale(1.06) skew(-3deg);
}

.wstack-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 32px;
}

.wstack-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wstack-cta-note {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.dj-group-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.dj-group-cta p {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 580px;
  text-wrap: balance;
}

.dj-group-cta a {
  --cta-green-1: #08d11c;
  --cta-green-2: #03a80f;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  min-height: 58px;
  padding: 13px 24px;
  border-radius: 18px;
  border: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(180deg, var(--cta-green-1), var(--cta-green-2));
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.22rem, 2vw, 1.68rem);
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 0 1px rgba(10, 68, 19, 0.28) inset,
    0 16px 30px rgba(3, 168, 15, 0.22),
    0 18px 42px rgba(255, 215, 0, 0.16);
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.dj-group-cta a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(10, 68, 19, 0.28) inset,
    0 20px 38px rgba(3, 168, 15, 0.32),
    0 20px 52px rgba(255, 215, 0, 0.2);
}

.dj-group-cta a span {
  width: 31px;
  height: 31px;
  display: inline-block;
  flex: 0 0 31px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.04 3C8.87 3 3.04 8.82 3.04 15.98c0 2.29.6 4.53 1.74 6.5L3 29l6.67-1.75a13 13 0 0 0 6.36 1.62h.01c7.16 0 12.99-5.82 12.99-12.98C29.03 8.82 23.2 3 16.04 3Zm0 23.68h-.01a10.8 10.8 0 0 1-5.5-1.5l-.4-.24-3.96 1.04 1.06-3.86-.26-.4a10.75 10.75 0 0 1-1.65-5.74c0-5.95 4.85-10.79 10.81-10.79 2.89 0 5.6 1.12 7.64 3.16a10.7 10.7 0 0 1 3.17 7.63c0 5.95-4.85 10.8-10.8 10.8Zm5.92-8.08c-.32-.16-1.91-.94-2.2-1.05-.3-.11-.51-.16-.73.16-.21.32-.84 1.05-1.03 1.26-.19.22-.38.24-.7.08-.32-.16-1.37-.5-2.6-1.6a9.7 9.7 0 0 1-1.8-2.23c-.19-.32-.02-.5.14-.66.15-.15.32-.38.49-.57.16-.19.21-.32.32-.54.11-.22.05-.4-.03-.57-.08-.16-.73-1.76-1-2.41-.26-.63-.53-.54-.73-.55h-.62c-.21 0-.57.08-.86.4-.3.33-1.13 1.1-1.13 2.68s1.16 3.12 1.32 3.34c.16.21 2.28 3.48 5.52 4.88.77.33 1.37.53 1.84.68.77.24 1.48.21 2.03.13.62-.09 1.91-.78 2.18-1.53.27-.75.27-1.4.19-1.53-.08-.14-.3-.22-.62-.38Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.04 3C8.87 3 3.04 8.82 3.04 15.98c0 2.29.6 4.53 1.74 6.5L3 29l6.67-1.75a13 13 0 0 0 6.36 1.62h.01c7.16 0 12.99-5.82 12.99-12.98C29.03 8.82 23.2 3 16.04 3Zm0 23.68h-.01a10.8 10.8 0 0 1-5.5-1.5l-.4-.24-3.96 1.04 1.06-3.86-.26-.4a10.75 10.75 0 0 1-1.65-5.74c0-5.95 4.85-10.79 10.81-10.79 2.89 0 5.6 1.12 7.64 3.16a10.7 10.7 0 0 1 3.17 7.63c0 5.95-4.85 10.8-10.8 10.8Zm5.92-8.08c-.32-.16-1.91-.94-2.2-1.05-.3-.11-.51-.16-.73.16-.21.32-.84 1.05-1.03 1.26-.19.22-.38.24-.7.08-.32-.16-1.37-.5-2.6-1.6a9.7 9.7 0 0 1-1.8-2.23c-.19-.32-.02-.5.14-.66.15-.15.32-.38.49-.57.16-.19.21-.32.32-.54.11-.22.05-.4-.03-.57-.08-.16-.73-1.76-1-2.41-.26-.63-.53-.54-.73-.55h-.62c-.21 0-.57.08-.86.4-.3.33-1.13 1.1-1.13 2.68s1.16 3.12 1.32 3.34c.16.21 2.28 3.48 5.52 4.88.77.33 1.37.53 1.84.68.77.24 1.48.21 2.03.13.62-.09 1.91-.78 2.18-1.53.27-.75.27-1.4.19-1.53-.08-.14-.3-.22-.62-.38Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dj-group-cta--section {
  width: max-content;
  max-width: min(100%, 580px);
  margin-top: 26px;
}

.dj-group-cta--section p {
  text-align: left;
}

.dj-group-cta--faq {
  width: max-content;
  max-width: min(100%, 580px);
  margin-top: 24px;
}

.dj-group-cta--faq p {
  text-align: center;
}

.dj-group-cta--faq a {
  min-width: 245px;
}

.dj-group-cta--shelf {
  position: relative;
  z-index: 4;
  width: max-content;
  max-width: min(100%, 580px);
  align-items: center;
  margin: clamp(28px, 4vw, 46px) auto 0;
}

.dj-group-cta--shelf p {
  text-align: center;
}

.dj-group-cta--shelf a {
  min-width: 245px;
}

.dj-group-cta--light p {
  color: var(--navy, #050926);
}

.dj-share-overlay .dj-group-cta--modal {
  padding-top: 26px;
  margin-top: auto;
}

.dj-share-overlay .dj-group-cta--modal p {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
}

.dj-share-overlay .dj-group-cta--modal a {
  min-width: 210px;
  min-height: 54px;
  border-radius: 15px;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.dj-share-overlay .dj-group-cta--modal a span {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

/* Right side: vertical scrolling words list with edge mask */
.wstack-words {
  position: relative;
  height: 520px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 14%,
      black 86%,
      transparent);
  mask-image: linear-gradient(to bottom,
      transparent,
      black 14%,
      black 86%,
      transparent);
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.wstack-words__col {
  flex: 1;
  position: relative;
}

.wstack-words__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: wstack-scroll-up 28s linear infinite;
  will-change: transform;
}

.wstack-words__col--rev .wstack-words__list {
  animation: wstack-scroll-down 32s linear infinite;
}

.wstack-words__list li {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
  white-space: nowrap;
}

.wstack-words__col--rev .wstack-words__list li {
  text-align: left;
}

.wstack-words__list li.is-accent {
  color: var(--gold);
}

.wstack-words__list li.is-muted {
  color: rgba(255, 255, 255, 0.32);
}

@keyframes wstack-scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes wstack-scroll-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.wstack-amb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.wstack-amb--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(26, 58, 255, 0.2), transparent 70%);
  top: 10%;
  left: -180px;
}

.wstack-amb--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.07), transparent 70%);
  bottom: -10%;
  right: -120px;
}

/* =============================================================
   TWEETS SECTION — REWRITE: 3 colunas verticais infinite scroll
   Col 1 sobe, Col 2 desce, Col 3 sobe. Mask de fade no topo/base.
   ============================================================= */
.tweets-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 10%,
      black 90%,
      transparent);
  mask-image: linear-gradient(to bottom,
      transparent,
      black 10%,
      black 90%,
      transparent);
}

@media (max-width: 900px) {
  .tweets-grid {
    grid-template-columns: 1fr;
    height: 720px;
  }

  .tweets-grid>.tweets-col:nth-child(2),
  .tweets-grid>.tweets-col:nth-child(3) {
    display: none;
  }
}

.tweets-col {
  position: relative;
  overflow: hidden;
}

.tweets-col__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: tweets-scroll-up 50s linear infinite;
  will-change: transform;
}

.tweets-col--down .tweets-col__list {
  animation: tweets-scroll-down 55s linear infinite;
}

.tweets-col--up-fast .tweets-col__list {
  animation-duration: 42s;
}

.tweets-col:hover .tweets-col__list,
.tweets-col.is-interacting .tweets-col__list {
  animation-play-state: paused;
}

/* hover pausa pra ler */

@keyframes tweets-scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes tweets-scroll-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* tweet card no contexto da coluna — width 100% */
.tweets-col .tweet-card {
  width: 100%;
}

.tweets-mobile-link {
  display: none;
}

/* =============================================================
   FAQ SECTION — accordion expansível
   ============================================================= */
.faq {
  position: relative;
  padding: 110px var(--gutter) 110px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.015) 50%,
      transparent 100%);
  isolation: isolate;
  overflow: hidden;
}

.faq-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.faq-head__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.faq-head__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.faq-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq-head__sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-card);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item[open] summary {
  color: var(--gold);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s var(--ease-spring),
    background 0.3s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(255, 215, 0, 0.18);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
}

.faq-item__body {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item__body p+p {
  margin-top: 10px;
}

/* =============================================================
   HUB DAS REDES — central PL + ícones orbitando
   Inspirado no orbiter do freelahub.com — "um lugar, infinitas redes"
   ============================================================= */
.hub {
  position: relative;
  padding: 32px var(--gutter) 40px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(900px 480px at 30% 50%,
      rgba(26, 58, 255, 0.1),
      transparent 65%),
    radial-gradient(700px 360px at 80% 80%,
      rgba(255, 215, 0, 0.06),
      transparent 65%);
}

.hub-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

@media (max-width: 880px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
}

.hub-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hub-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hub-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hub-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}

.hub-sub {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}

.hub-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hub-stat {
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(255, 215, 0, 0.4);
  padding-left: 12px;
}

.hub-stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hub-stat span {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Orbiter — canvas onde os ícones flutuam ao redor do logo central */
.hub-orbiter {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 540px;
  margin: 0 auto;
  isolation: isolate;
  justify-self: center;
}

@media (max-width: 540px) {
  .hub-orbiter {
    height: 360px;
    max-width: 360px;
  }
}

/* anel guia atrás do logo central */
.hub-orbiter::before,
.hub-orbiter::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: hub-orbit-rotate 80s linear infinite;
}

.hub-orbiter::before {
  width: 60%;
  height: 60%;
}

.hub-orbiter::after {
  width: 90%;
  height: 90%;
  animation-direction: reverse;
  animation-duration: 120s;
}

@keyframes hub-orbit-rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Logo PL central — logo oficial já vem com fundo azul + cantos arredondados */
.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 106px;
  height: 106px;
  /* -20% (era 132px) */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  box-shadow:
    0 18px 42px rgba(26, 58, 255, 0.55),
    0 0 50px rgba(26, 58, 255, 0.45),
    0 0 0 2px rgba(255, 215, 0, 0.5);
  z-index: 5;
  isolation: isolate;
  overflow: hidden;
  animation: hub-center-breathe 4s ease-in-out infinite;
}

.hub-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  border-radius: inherit;
}

/* Anel rotativo construindo (efeito loop) — conic-gradient @property */
.hub-center::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--card-shine-angle),
      transparent 0%,
      var(--gold) 25%,
      #fff8d0 35%,
      var(--gold) 45%,
      transparent 55%,
      transparent 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: card-shine-rotate 4s linear infinite;
  z-index: 2;
}

/* Brilho difuso atrás do PL — pulsa suave */
.hub-center::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: hub-center-glow 3.5s ease-in-out infinite;
}

@keyframes hub-center-glow {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.hub-center .pl-mark {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-center .pl-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes hub-center-breathe {

  0%,
  100% {
    box-shadow:
      0 20px 50px rgba(26, 58, 255, 0.45),
      0 0 0 1px rgba(255, 215, 0, 0.5),
      0 0 60px rgba(26, 58, 255, 0.4);
  }

  50% {
    box-shadow:
      0 20px 50px rgba(26, 58, 255, 0.45),
      0 0 0 2px rgba(255, 215, 0, 0.7),
      0 0 80px rgba(26, 58, 255, 0.6);
  }
}

/* SVG das linhas conectando center → ícones — finas, orgânicas, fade nas bordas */
.hub-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* fade nas bordas — radial mask centrada, transparente nas extremidades */
  -webkit-mask-image: radial-gradient(circle at center,
      black 18%,
      black 60%,
      transparent 92%);
  mask-image: radial-gradient(circle at center,
      black 18%,
      black 60%,
      transparent 92%);
}

.hub-lines line {
  /* Linha-base subtil + tracinhos fluindo. Densidade alta (1.5 3.5),
     ease orgânico: começa devagar → acelera no meio (40-60%) → desacelera. */
  stroke: rgba(255, 215, 0, 0.22);
  stroke-width: 0.3;
  stroke-linecap: round;
  stroke-dasharray: 1.5 3.5;
  /* tracinhos densos — mais ritmo visual */
  stroke-dashoffset: 0;
  animation: hub-line-flow 5s cubic-bezier(0.85, 0.05, 0.15, 0.95) infinite;
  filter: drop-shadow(0 0 1.5px rgba(255, 215, 0, 0.5));
}

/* Cada linha com delay próprio pra movimento orgânico, não sincronizado */
.hub-lines line:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 4.5s;
}

.hub-lines line:nth-child(2) {
  animation-delay: -0.6s;
  animation-duration: 5.2s;
}

.hub-lines line:nth-child(3) {
  animation-delay: -1.2s;
  animation-duration: 4.8s;
}

.hub-lines line:nth-child(4) {
  animation-delay: -1.8s;
  animation-duration: 5.5s;
}

.hub-lines line:nth-child(5) {
  animation-delay: -2.4s;
  animation-duration: 4.2s;
}

.hub-lines line:nth-child(6) {
  animation-delay: -3s;
  animation-duration: 5s;
}

.hub-lines line:nth-child(7) {
  animation-delay: -3.6s;
  animation-duration: 4.7s;
}

.hub-lines line:nth-child(8) {
  animation-delay: -4.2s;
  animation-duration: 5.3s;
}

.hub-lines line:nth-child(9) {
  animation-delay: -4.8s;
  animation-duration: 4.6s;
}

.hub-lines line:nth-child(10) {
  animation-delay: -5.4s;
  animation-duration: 5.1s;
}

@keyframes hub-line-flow {

  /* dashoffset desliza o pattern (5px = 1.5+3.5). Múltiplos pra fluxo mais longo */
  from {
    stroke-dashoffset: 30;
  }

  /* 6 ciclos */
  to {
    stroke-dashoffset: 0;
  }
}

/* Ícones — caixinha menor (54×54) com ícones BEM maiores (32×32) — proporção mais "cheia" */
.hub-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  z-index: 4;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  animation: hub-icon-float 6s ease-in-out infinite;
  cursor: pointer;
  isolation: isolate;
  padding: 0;
}

.hub-icon svg,
.hub-icon img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
  /* simple-icons são pretos — inverte pra branco em qualquer container colorido */
  display: block;
}

/* Posições orgânicas — distâncias variadas (mix close/medium/far do centro).
   Uns ficam mais perto do logo, outros lá nas bordas. Sensação natural. */
.hub-icon--insta {
  top: 4%;
  left: 30%;
  animation-delay: 0s;
  background: linear-gradient(135deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888);
  border-color: transparent;
}

/* FAR top */
.hub-icon--x {
  top: 26%;
  right: 18%;
  animation-delay: -0.6s;
  background: #000;
}

/* MEDIUM-close */
.hub-icon--facebook {
  top: 26%;
  right: 18%;
  animation-delay: -1.2s;
  background: #1877f2;
  border-color: transparent;
}

/* MEDIUM */
.hub-icon--whatsapp {
  top: 38%;
  right: 4%;
  animation-delay: -1.8s;
  background: #25d366;
  border-color: transparent;
}

/* FAR right */
.hub-icon--kwai {
  bottom: 16%;
  left: 4%;
  animation-delay: -2.4s;
  background: linear-gradient(135deg, #ff8a00, #ff4b1f);
}

/* FAR left-bottom */
.hub-icon--linkedin {
  top: 12%;
  left: 58%;
  animation-delay: -3s;
  background: #0a66c2;
  border-color: transparent;
}

/* CLOSE top */
.hub-icon--tiktok {
  bottom: 24%;
  right: 22%;
  animation-delay: -3.6s;
  background: #000;
}

/* CLOSE-medium */
.hub-icon--youtube {
  top: 32%;
  left: 14%;
  animation-delay: -4.2s;
  background: #ff0000;
  border-color: transparent;
}

/* FAR bottom */
.hub-icon--telegram {
  top: 58%;
  left: 18%;
  animation-delay: -4.8s;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  border-color: transparent;
}

/* CLOSE-medium */
.hub-icon--flickr {
  top: 58%;
  left: 18%;
  animation-delay: -4.8s;
  background: #fff;
  border-color: transparent;
}

.hub-icon--flickr img {
  filter: none;
}

.hub-icon--academia {
  bottom: 2%;
  right: 34%;
  animation-delay: -5.4s;
  background: #ffffff;
  border-color: rgba(255, 215, 0, 0.55);
}

.hub-icon--academia img {
  width: 42px;
  height: 42px;
  filter: none;
  object-fit: contain;
}

@media (max-width: 720px) {
  .hub-icon--academia {
    bottom: 0;
    right: 28%;
  }
}

@keyframes hub-icon-float {

  /* movimento mais sutil — Max pediu mais suave */
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  33% {
    transform: translateY(-4px) translateX(2px);
  }

  66% {
    transform: translateY(2px) translateX(-2px);
  }
}

.hub-icon:hover {
  transform: translateY(-10px) scale(1.12);
  z-index: 8;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 215, 0, 0.25);
  animation-play-state: paused;
}

.hub-icon:hover svg {
  transform: scale(1.1);
}

.hub-icon svg {
  color: #fff;
}

/* Tooltip nome da rede */
.hub-icon::after {
  content: attr(data-net);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.85);
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    bottom 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-icon:hover::after {
  opacity: 1;
  bottom: -32px;
}

@media (max-width: 540px) {
  .hub-orbiter {
    max-width: 360px;
  }

  .hub-icon {
    width: 50px;
    height: 50px;
  }

  .hub-icon svg {
    width: 22px;
    height: 22px;
  }

  .hub-center {
    width: 90px;
    height: 90px;
  }

  .hub-center span {
    font-size: 1.8rem;
  }
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================
   v3 — TAGS DE FORMATO (com ícone + glass)
   ============================================================= */
.tag-fmt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 7px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-body);
  white-space: nowrap;
  align-self: flex-start;
  position: relative;
  isolation: isolate;
}

.tag-fmt::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tag-fmt svg {
  width: 11px;
  height: 11px;
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.tag-fmt--reel::before {
  background: linear-gradient(135deg, #ff3344, #ff6688);
}

.tag-fmt--story::before {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.tag-fmt--carrossel::before {
  background: linear-gradient(135deg, #1a3aff, #4a66ff);
}

.tag-fmt--post::before {
  background: linear-gradient(135deg, #00b347, #009739);
}

.tag-fmt--video::before {
  background: linear-gradient(135deg, #ff8c00, #ff3344);
}

.tag-fmt--texto::before {
  background: linear-gradient(135deg, #6b7280, #374151);
}

.tag-fmt--hub::before {
  background: linear-gradient(135deg, var(--gold), #ffea7a);
}

.tag-fmt--longform::before {
  background: linear-gradient(135deg, #06b6d4, #1a3aff);
}

.tag-fmt strong {
  color: var(--gold);
  margin-left: 2px;
  font-weight: 700;
}

/* =============================================================
   v3 — LOCKED CARD (Netflix-premium / "tigrinho" gating)
   ============================================================= */
.card--locked,
.top10-item.is-locked .top10-card,
.spot-side.is-locked,
.bento-tile.is-locked,
.longform-card.is-locked {
  position: relative;
  cursor: pointer;
}

.card--locked .card-bg,
.top10-item.is-locked .top10-card[style*='background-image'],
.spot-side.is-locked,
.bento-tile.is-locked,
.longform-card.is-locked .longform-cover {
  filter: blur(14px) saturate(0.7) brightness(0.55);
  transform: scale(1.05);
  transition: filter 0.4s var(--ease-out);
}

.card--locked::before,
.spot-side.is-locked::before,
.bento-tile.is-locked::before,
.top10-item.is-locked .top10-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 215, 0, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(5, 9, 38, 0.4), rgba(5, 9, 38, 0.85));
  z-index: 3;
  pointer-events: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
}

.lock-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(255, 215, 0, 0.18),
    0 0 32px rgba(255, 215, 0, 0.4);
  animation: lock-pulse 2.4s ease-in-out infinite;
}

.lock-icon svg {
  width: 24px;
  height: 24px;
}

@keyframes lock-pulse {

  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(255, 215, 0, 0.18),
      0 0 32px rgba(255, 215, 0, 0.4);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(255, 215, 0, 0.05),
      0 0 48px rgba(255, 215, 0, 0.6);
  }
}

.lock-count {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.lock-count strong {
  color: var(--gold);
}

.lock-cta {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* End-cap card: prateleira CTA pra cadastrar */
.endcap {
  flex: 0 0 auto;
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%,
      rgba(255, 215, 0, 0.25),
      transparent 60%),
    linear-gradient(165deg, rgba(255, 215, 0, 0.18), rgba(26, 58, 255, 0.12)),
    var(--ink-2);
  border: 1.5px solid var(--gold);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  text-align: center;
  gap: 14px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
  isolation: isolate;
}

@media (min-width: 720px) {
  .endcap {
    width: 240px;
  }
}

.endcap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 80%,
      rgba(74, 102, 255, 0.4),
      transparent 60%);
  opacity: 0.6;
  z-index: 0;
  animation: endcap-shimmer 4s ease-in-out infinite;
}

@keyframes endcap-shimmer {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.endcap>* {
  position: relative;
  z-index: 1;
}

.endcap:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(255, 215, 0, 0.25),
    0 0 0 2px var(--gold);
}

.endcap-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.endcap-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.endcap-cta {
  margin-top: 4px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =============================================================
   v3.1 — Section background variety (warm/cool zones)
   ============================================================= */
.spot {
  background: radial-gradient(ellipse 1200px 600px at 70% 20%,
      rgba(255, 215, 0, 0.06),
      transparent 60%);
}

.top10 {
  background: radial-gradient(ellipse 900px 500px at 20% 50%,
      rgba(74, 102, 255, 0.08),
      transparent 60%);
}

.stories {
  background: radial-gradient(ellipse 1100px 400px at 80% 80%,
      rgba(168, 85, 247, 0.06),
      transparent 60%);
}

.bento {
  background: radial-gradient(ellipse 1000px 500px at 30% 30%,
      rgba(255, 215, 0, 0.05),
      transparent 60%);
}

.shelf#bolsonaro-shelf {
  display: none !important;
}

.longform {
  background: radial-gradient(ellipse 1100px 500px at 70% 70%,
      rgba(74, 102, 255, 0.06),
      transparent 60%);
}

.cadastro {
  background: radial-gradient(ellipse 1300px 700px at 50% 50%,
      rgba(255, 215, 0, 0.1),
      transparent 65%);
}

/* Section divider — fina linha gradient entre seções */
.shelves>section:not(:first-child)::before,
.shelf::before,
.top10::before,
.stories::before,
.bento::before,
.longform::before,
.spot::before {
  content: '';
  display: block;
  height: 1px;
  max-width: 1200px;
  margin: 0 auto 60px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.12) 50%,
      transparent);
}

.spot::before {
  display: none;
}

/* =============================================================
   v3.7 — CINEMATIC REVEAL (per-element, blur fade-in)
   Inspirado em Apple TV+ / Netflix tile reveal.
   Cada elemento detecta seu próprio entrar-em-viewport e anima.
   ============================================================= */
.cine-reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  filter: blur(10px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.cine-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stories-track {
  scroll-behavior: smooth;
}

/* (regras antigas de .story-ring/.story-img/.story-label removidas — V2 mini-cards agora) */

/* =============================================================
   v3.1 — FLOATING NOTIFICATIONS (social proof)
   ============================================================= */
.float-notif-stack {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 320px;
}

.float-notif-stack[hidden] {
  display: none !important;
}

.float-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  background: rgba(10, 17, 64, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  font-size: 0.82rem;
  color: var(--text);
  pointer-events: auto;
  transform: translateX(-120%);
  opacity: 0;
  animation:
    notif-in 0.5s var(--ease-spring) forwards,
    notif-out 0.5s var(--ease-out) forwards 5.5s;
  max-width: 100%;
}

@keyframes notif-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes notif-out {
  to {
    transform: translateX(-120%);
    opacity: 0;
  }
}

.float-notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-glow), var(--gold));
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.95rem;
}

.float-notif-text {
  flex: 1;
  line-height: 1.3;
}

.float-notif-text strong {
  color: var(--gold);
  font-weight: 700;
}

.float-notif-text span {
  color: var(--text-soft);
  font-size: 0.74rem;
  display: block;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .float-notif-stack {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* =============================================================
   v3.1 — INFLUENCER PRO card (richer)
   ============================================================= */
.whatsapp-banner {
  display: block;
  width: min(896px, calc(100% - (var(--gutter) * 2)));
  margin: clamp(28px, 4vw, 56px) auto 0;
  border-radius: clamp(18px, 2.2vw, 30px);
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: rgba(5, 9, 38, 0.55);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateZ(0);
  transition:
    transform 0.24s var(--ease-spring),
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.whatsapp-banner:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 30px 84px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(37, 211, 102, 0.28);
}

.whatsapp-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.influencer-pro {
  position: relative;
  z-index: 1;
  padding: 48px var(--gutter) 120px;
}

.influencer-pro-wrap {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.influencer-pro-card {
  position: relative;
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 30%,
      rgba(255, 215, 0, 0.22),
      transparent 50%),
    radial-gradient(circle at 20% 80%,
      rgba(74, 102, 255, 0.25),
      transparent 50%),
    linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--border);
  display: grid;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 980px) {
  .influencer-pro-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.influencer-pro-card::before,
.influencer-pro-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.influencer-pro-card::before {
  width: 460px;
  height: 460px;
  top: -200px;
  right: -160px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.22;
  filter: blur(40px);
  animation: blob 20s ease-in-out infinite;
}

.influencer-pro-card::after {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
  opacity: 0.22;
  filter: blur(40px);
  animation: blob 26s ease-in-out infinite reverse;
}

.ip-side-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-family: var(--font-body);
}

.ip-side-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.ip-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-wrap: balance;
  text-transform: uppercase;
}

.ip-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ip-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 460px;
  margin-bottom: 32px;
}

.ip-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.ip-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 28px;
  flex-wrap: wrap;
}

.ip-meta strong {
  color: var(--text);
}

.ip-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-mute);
}

.ip-visual {
  position: relative;
  aspect-ratio: 1/1;
  min-height: 380px;
}

.ip-phone {
  position: absolute;
  width: 60%;
  aspect-ratio: 9/19;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 6px var(--ink),
    0 0 0 8px var(--border-strong);
  background-size: cover;
  background-position: center;
  top: 5%;
  left: 22%;
  animation: phone-bob 6s ease-in-out infinite;
  z-index: 2;
}

.ip-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4));
}

@keyframes phone-bob {
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

.ip-stat-bubble {
  position: absolute;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-body);
  z-index: 3;
  animation: bubble-bob 5s ease-in-out infinite;
}

.ip-stat-bubble strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1;
}

.ip-stat-bubble span {
  font-size: 0.74rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ip-stat-bubble--1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.ip-stat-bubble--2 {
  top: 50%;
  right: 0;
  animation-delay: 1.5s;
}

.ip-stat-bubble--3 {
  bottom: 8%;
  left: 8%;
  animation-delay: 3s;
}

@keyframes bubble-bob {
  50% {
    transform: translateY(-10px);
  }
}

/* =============================================================
   v3.4 — CARD ENTRY ANIMATIONS (stagger on scroll)
   Modern, fast, subtle. Cards rise + scale-in com delay sequencial.
   ============================================================= */
.card-reveal-init {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =============================================================
   v3.4 — TAG ICONS (SVG dentro dos pills)
   Substitui o quadradinho de cor por ícone real do formato.
   ============================================================= */
.card-tag {
  padding: 5px 12px 5px 6px;
}

.card-tag::before {
  display: none;
}

.card-tag .tag-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff3344, #ff6688);
  color: #fff;
}

.card-tag .tag-ico svg {
  width: 11px;
  height: 11px;
}

.card-tag--blue .tag-ico {
  background: linear-gradient(135deg, #1a3aff, #4a66ff);
}

.card-tag--green .tag-ico {
  background: linear-gradient(135deg, #00b347, #009739);
}

.card-tag--red .tag-ico {
  background: linear-gradient(135deg, #ff3344, #a855f7);
}

/* Para spot-feature e top10 */
.spot-feature__tag,
.top10-card-tag,
.bento-tile-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spot-feature__tag .tag-ico {
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 4px;
}

.spot-feature__tag .tag-ico svg {
  width: 10px;
  height: 10px;
}

/* =============================================================
   v3.4 — STAT ICON CHIPS (substitui emojis 👁 📥 🔄)
   ============================================================= */
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.stat-chip svg {
  width: 14px;
  height: 14px;
  opacity: 0.75;
  flex-shrink: 0;
}

.stat-chip strong {
  color: var(--text);
  font-weight: 700;
}

/* =============================================================
   v3.4 — Header Cadastre-se pulse (chamada sutil)
   ============================================================= */
.btn-pill--accent {
  animation: cta-pulse 9s ease-in-out infinite;
}

@keyframes cta-pulse {

  0%,
  88%,
  100% {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }

  92% {
    box-shadow:
      0 0 0 8px rgba(255, 215, 0, 0.15),
      0 8px 24px rgba(255, 215, 0, 0.45);
    transform: scale(1.04);
  }

  96% {
    box-shadow:
      0 0 0 14px rgba(255, 215, 0, 0),
      0 8px 24px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
}

/* =============================================================
   v3.4 — MARQUEE strip um pouco mais visível
   ============================================================= */
.marquee {
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 215, 0, 0.04) 20%,
      rgba(255, 215, 0, 0.04) 80%,
      transparent);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.78);
}

.marquee-track span::before {
  background: var(--gold);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* =============================================================
   v3.4 — Hero stats com divider
   ============================================================= */
.hero-stats {
  gap: 0;
  align-items: stretch;
}

.hero-stat {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

@media (max-width: 600px) {
  .hero-stat {
    padding: 0 16px 0 0;
    margin-right: 16px;
  }
}

/* =============================================================
   MOBILE STABILITY — remove tremores de animações contínuas
   ============================================================= */
@media (max-width: 768px) {
  .whatsapp-banner {
    width: calc(100% - 28px);
    margin-top: 14px;
    border-radius: 18px;
  }

  .influencer-pro {
    padding-top: 28px !important;
  }

  .parallax-y,
  .influencer-pro-card,
  .tweets-section,
  .wstack,
  .hub {
    transform: none !important;
    will-change: auto !important;
  }

  .influencer-pro-card::before,
  .influencer-pro-card::after,
  .ip-phone,
  .ip-stat-bubble,
  .tweets-blob,
  .tweets-col__list,
  .wstack-amb,
  .wstack-words__list,
  .hub-orbiter::before,
  .hub-orbiter::after,
  .hub-center,
  .hub-center::before,
  .hub-center::after,
  .hub-lines line,
  .hub-icon {
    animation: none !important;
    will-change: auto !important;
  }

  .tweets-blobs {
    display: none !important;
  }

  .tweets-grid {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .tweets-col {
    overflow: visible !important;
  }

  .tweets-col__list {
    transform: none !important;
  }

  .wstack-words {
    display: none !important;
  }

  .dj-group-cta {
    width: 100%;
    align-items: stretch;
  }

  .dj-group-cta p {
    text-align: center;
    font-size: 1rem;
  }

  .dj-group-cta--section p {
    text-align: left;
  }

  .dj-group-cta a {
    width: 100%;
    min-width: 0;
  }

  .hub-center {
    transform: translate(-50%, -50%) !important;
  }

  .hub-icon:hover {
    transform: none !important;
  }

  .djnew-mockup-body .cats-tiles {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding-top: 24px;
    padding-bottom: 24px;
    overflow: visible !important;
  }

  .djnew-mockup-body .cats-tiles-grid,
  .djnew-mockup-body section .cats-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .djnew-cat-mobile-select {
    display: none !important;
  }

  .cat-tile,
  .cat-tile--featured {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 150px;
  }

  .cat-tile-name {
    font-size: clamp(1.1rem, 7vw, 1.55rem) !important;
  }
}

/* =============================================================
   v3.4 — MOBILE PRIORITY — refinamentos pra <768px
   ============================================================= */
@media (max-width: 768px) {
  :root {
    --gutter: 18px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    height: 360px;
  }

  .float-card {
    width: 140px;
  }

  .float-card-2 {
    width: 160px;
  }

  .float-card-3 {
    width: 170px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .spot-grid {
    grid-template-columns: 1fr !important;
  }

  .spot-feature {
    aspect-ratio: 16/10;
  }

  .spot-feature__title {
    font-size: 1.3rem;
  }

  .top10-rank {
    font-size: 6rem;
  }

  .top10-card {
    width: 160px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 140px !important;
  }

  .bento-tile-1 {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .bento-tile-3 {
    grid-column: span 2 !important;
  }

  .bento-tile-1 .bento-tile-title {
    font-size: 1.3rem !important;
  }

  .longform-grid {
    gap: 28px;
  }

  .cadastro-card {
    padding: 32px 20px;
  }

  .cadastro-pitch h2 {
    font-size: 1.8rem;
  }

  .qs-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .ip-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .ip-visual {
    min-height: 320px;
  }

  .ip-phone {
    width: 50%;
  }

  .ip-stat-bubble {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .ip-stat-bubble strong {
    font-size: 1.2rem;
  }

  .float-notif-stack {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .float-notif {
    font-size: 0.78rem;
    padding: 10px 14px 10px 10px;
  }

  .float-notif-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .head-actions .btn-pill {
    display: none;
  }

  /* só hambúrguer no super-pequeno */
  .head-actions .btn-icon[aria-label='Buscar'] {
    display: none;
  }

  .modal-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-preview {
    width: min(80%, 240px);
    margin: 24px auto;
  }

  .download-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================================
   v3.2 — PALETA VARIADA (light sections quebram o azul)
   ============================================================= */

/* Tokens claros */
:root {
  --cream: #f5f1e6;
  --cream-deep: #ebe5d2;
  --cream-text: #1a1a2e;
  --gray-cool: #e8ebf3;
  --gray-cool-2: #d8dde9;
  --gray-text: #1a1f3d;
}

/* === STORIES → light warm cream === */
.stories {
  background: linear-gradient(180deg,
      var(--cream) 0%,
      var(--cream-deep) 100%) !important;
  color: var(--cream-text);
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.stories::before {
  display: none;
}

.stories .section-eyebrow {
  color: var(--brand-deep);
}

.stories .section-eyebrow::before {
  background: var(--brand-deep);
}

.stories .section-title {
  color: var(--cream-text);
}

.stories .section-link {
  color: rgba(0, 0, 0, 0.55);
}

.stories .section-link:hover {
  color: var(--brand);
}

.videos-section {
  padding-bottom: 18px !important;
}

.videos-section .dj-group-cta--shelf {
  margin-top: 14px;
}

.videos-section+.fmt-shelves {
  padding-top: 48px !important;
}

.stories .story-label {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

/* legacy ring rule removed — V2 mini-cards */
.stories .story-img {
  border-color: var(--cream);
}

/* === LONG-FORM → light cool gray (editorial) === */
.longform {
  background: linear-gradient(180deg,
      var(--gray-cool) 0%,
      var(--gray-cool-2) 100%) !important;
  color: var(--gray-text);
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.longform::before {
  display: none;
}

.longform .section-eyebrow {
  color: var(--brand-deep);
}

.longform .section-eyebrow::before {
  background: var(--brand-deep);
}

.longform .section-title {
  color: var(--gray-text);
}

.longform .section-link {
  color: rgba(0, 0, 0, 0.55);
}

.longform .section-link:hover {
  color: var(--brand);
}

.longform .longform-title {
  color: var(--gray-text);
}

.longform .longform-excerpt {
  color: rgba(0, 0, 0, 0.65);
}

.longform .longform-meta {
  color: rgba(0, 0, 0, 0.5);
}

.longform .longform-card:hover .longform-title {
  color: var(--brand);
}

.longform .longform-tag {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

/* === SPOTLIGHT → tom mais quente / dourado === */
.spot {
  background:
    radial-gradient(ellipse 1400px 700px at 50% 0%,
      rgba(255, 215, 0, 0.1),
      transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-2)) !important;
}

/* === TOP 10 → mesmo background do HUB === */
.top10 {
  background:
    radial-gradient(900px 480px at 30% 50%,
      rgba(26, 58, 255, 0.1),
      transparent 65%),
    radial-gradient(700px 360px at 80% 80%,
      rgba(255, 215, 0, 0.06),
      transparent 65%) !important;
}

/* === BENTO → meia luz com toque verde === */
.bento {
  background:
    radial-gradient(ellipse 1000px 600px at 70% 50%,
      rgba(0, 179, 71, 0.08),
      transparent 60%),
    radial-gradient(ellipse 800px 500px at 20% 30%,
      rgba(255, 215, 0, 0.06),
      transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-2)) !important;
}

/* === BOLSONARO shelf → tom verde-amarelo (Brasil) === */
.shelf#bolsonaro-shelf {
  background:
    radial-gradient(ellipse 1100px 500px at 40% 50%,
      rgba(0, 179, 71, 0.1),
      transparent 60%),
    radial-gradient(ellipse 800px 400px at 80% 50%,
      rgba(255, 215, 0, 0.08),
      transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink-3)) !important;
}

/* === CADASTRO → drama: azul forte com gold === */
.cadastro {
  background:
    radial-gradient(ellipse 1300px 800px at 50% 50%,
      rgba(255, 215, 0, 0.16),
      transparent 65%),
    radial-gradient(ellipse 900px 500px at 20% 80%,
      rgba(74, 102, 255, 0.18),
      transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink)) !important;
}

/* === QUEM SOMOS → escuro neutro === */
.qs {
  background:
    radial-gradient(ellipse 1200px 700px at 60% 30%,
      rgba(74, 102, 255, 0.06),
      transparent 60%),
    var(--ink) !important;
}

/* === SIGA PL → mais profundo === */
.siga {
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%,
      rgba(255, 215, 0, 0.08),
      transparent 60%),
    var(--ink) !important;
}

/* Smooth transitions entre seções claro→escuro */
.stories::after,
.longform::after {
  content: '';
  display: block;
  position: relative;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 0, 0, 0.05),
      transparent);
  margin-top: 60px;
}

/* === Destaques fixos: evita mudança de altura nas seções === */
.wstack-title em,
.wstack-title em.is-pulse {
  font-family: var(--font-display) !important;
  font-size: 1em !important;
  font-style: normal !important;
  line-height: inherit !important;
  display: inline !important;
  min-width: 0 !important;
  text-align: inherit !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

@media (max-width: 680px) {
  .wstack-title {
    font-size: clamp(2.35rem, 12.5vw, 3.25rem);
    line-height: 1.15;
    max-width: 100%;
    text-wrap: balance;
  }
}

@media (max-width: 900px) {
  .tweets-head__all {
    display: none !important;
  }

  .tweets-mobile-link {
    display: flex;
    justify-content: center;
    max-width: var(--container);
    margin: 22px auto 0;
  }

  .tweets-grid {
    grid-template-columns: 1fr !important;
    height: 660px !important;
    overflow: hidden !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent) !important;
    mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent) !important;
  }

  .tweets-grid>.tweets-col:nth-child(2),
  .tweets-grid>.tweets-col:nth-child(3) {
    display: none !important;
  }

  .tweets-col {
    overflow: hidden !important;
  }

  .tweets-col__list {
    gap: 18px !important;
    animation: tweets-scroll-up 46s linear infinite !important;
    will-change: transform !important;
  }

  .tweets-col .tweet-card {
    min-height: 198px;
  }
}

@media (max-width: 520px) {
  .tweets-grid {
    height: 620px !important;
  }

  .tweets-col .tweet-card {
    min-height: 188px;
  }
}

.djnew-mockup-body .qs .qs-em-cycle,
.djnew-mockup-body .qs .qs-em-cycle[class*='qs-em-cycle--'],
.djnew-mockup-body .qs .qs-em-cycle.is-fading {
  font-family: 'Bungee', 'Big Shoulders Display', Impact, sans-serif !important;
  font-size: 1em !important;
  font-style: normal !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  opacity: 1 !important;
  min-height: 0.95em !important;
  transform-origin: left center !important;
  transition: none !important;
  will-change: transform, text-shadow, filter !important;
  animation: qs-highlight-breathe 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite !important;
  contain: paint !important;
}

@keyframes qs-highlight-breathe {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: brightness(1);
    text-shadow: 5px 5px 0 #ffd700, 5px 5px 14px rgba(255, 215, 0, 0.25);
  }

  45% {
    transform: translate3d(0, -2px, 0) scale(1.018);
    filter: brightness(1.08);
    text-shadow: 7px 7px 0 #ffd700, 7px 7px 20px rgba(255, 215, 0, 0.38);
  }

  62% {
    transform: translate3d(0, 1px, 0) scale(0.998);
  }
}

@media (prefers-reduced-motion: reduce) {

  .djnew-mockup-body .qs .qs-em-cycle,
  .djnew-mockup-body .qs .qs-em-cycle[class*='qs-em-cycle--'],
  .djnew-mockup-body .qs .qs-em-cycle.is-fading {
    animation: none !important;
    transform: none !important;
  }
}

/* === Aviso obrigatorio de Termos e Privacidade === */
body.has-policy-consent {
  padding-bottom: 148px;
}

.dj-policy-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  background:
    radial-gradient(circle at 18% 0%, rgba(13, 44, 163, 0.24), transparent 34%),
    linear-gradient(180deg, #07113a 0%, #030823 100%);
  color: #fff;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.42);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dj-policy-consent[hidden] {
  display: none !important;
}

.dj-policy-consent__box {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.dj-policy-consent__box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.dj-policy-consent__box p {
  margin: 0 auto 14px;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.dj-policy-consent__box a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dj-policy-consent__accept {
  appearance: none;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffdc45, #f7bd22);
  color: #080808;
  cursor: pointer;
  min-width: 112px;
  min-height: 44px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 199, 33, 0.24);
}

.dj-policy-consent__accept:hover {
  filter: brightness(1.04);
}

.dj-policy-consent__accept:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  body.has-policy-consent {
    padding-bottom: 190px;
  }

  .dj-policy-consent {
    padding: 16px 14px 18px;
  }

  .dj-policy-consent__box strong {
    font-size: 0.98rem;
  }

  .dj-policy-consent__box p {
    font-size: 0.86rem;
  }

  .dj-policy-consent__accept {
    width: min(220px, 100%);
  }
}

/* Última camada: carrosseis de vídeos/cards com setas claras e trilho full-bleed. */
.stories-arrow,
.fmt-arrow,
.stories-arrow:hover,
.fmt-arrow:hover,
.stories-arrow:focus,
.fmt-arrow:focus {
  display: inline-flex !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(5, 9, 38, 0.08) !important;
  color: #050926 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
  opacity: 1 !important;
}

.stories-arrow svg,
.fmt-arrow svg {
  width: 21px !important;
  height: 21px !important;
}

.stories-arrow svg path,
.fmt-arrow svg path {
  stroke: #050926 !important;
}

.stories-arrow:hover,
.fmt-arrow:hover,
.stories-arrow:focus,
.fmt-arrow:focus {
  transform: translateY(-50%) scale(1.1) !important;
}

.stories-arrow--prev {
  left: 14px !important;
}

.stories-arrow--next {
  right: 14px !important;
}

.fmt-shelves {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fmt-shelves__head,
.fmt-shelf__head {
  max-width: var(--container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}

.fmt-shelf {
  max-width: none !important;
  width: 100% !important;
}

.fmt-track-wrap {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: transparent !important;
}

.fmt-track-wrap::before,
.fmt-track-wrap::after {
  display: none !important;
}

.fmt-track {
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
  background: transparent !important;
}

.fmt-arrow--prev {
  left: 18px !important;
}

.fmt-arrow--next {
  right: 18px !important;
}

@media (max-width: 640px) {
  .tweets-section {
    padding: 88px 18px 78px !important;
  }

  .tweets-head {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 28px !important;
    gap: 0 !important;
  }

  .tweets-head>div {
    width: 100% !important;
    min-width: 0 !important;
  }

  .tweets-head__eyebrow {
    justify-content: center !important;
    width: 100% !important;
    gap: 9px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.22em !important;
    white-space: nowrap !important;
    margin-bottom: 10px !important;
  }

  .tweets-head__eyebrow::before {
    width: 20px !important;
    flex: 0 0 20px !important;
  }

  .tweets-head__brand {
    justify-content: center !important;
    width: 100% !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .tweets-head__logo {
    width: 42px !important;
    height: 42px !important;
    border-radius: 11px !important;
    flex: 0 0 42px !important;
  }

  .tweets-head__title {
    font-size: clamp(1.6rem, 9vw, 2rem) !important;
    line-height: 0.95 !important;
    white-space: nowrap !important;
  }

  .tweets-head__sub {
    max-width: 340px !important;
    margin: 14px auto 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  .tweets-grid {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    height: 560px !important;
  }

  .tweets-col,
  .tweets-col__list {
    width: 100% !important;
  }

  .tweets-col__list {
    gap: 14px !important;
  }

  .tweets-col .tweet-card {
    width: 100% !important;
    min-height: 166px !important;
    padding: 18px 16px 14px !important;
    border-radius: 14px !important;
  }

  .tweet-card__text {
    margin: 8px 0 10px !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
  }

  .tweet-card__use-cta {
    gap: 8px !important;
    padding-top: 12px !important;
  }

  .tweet-card__copy-btn,
  .tweet-card__use-btn {
    min-height: 34px !important;
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
  }

  .tweets-mobile-link {
    max-width: 340px !important;
    margin: 18px auto 0 !important;
  }
}

@media (max-width: 380px) {
  .tweets-section {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .tweets-head,
  .tweets-grid,
  .tweets-mobile-link {
    max-width: 320px !important;
  }

  .tweets-head__title {
    font-size: 1.55rem !important;
  }

  .tweets-head__eyebrow {
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
  }

  .tweet-card__use-cta {
    flex-wrap: wrap !important;
  }

  .tweet-card__copy-btn,
  .tweet-card__use-btn {
    flex: 1 1 100% !important;
    justify-content: center !important;
  }
}

.djnew-mockup-body {
  position: relative;
  z-index: 10;
}

.top10 {
  padding-top: 0px !important;
}

@media (min-width: 992px) {
  .djnew-hero {
    min-height: 125vh !important;
  }
}

/* Curator.io Dark Theme Override */
#curator-feed-default-feed-layout .crt-post-c {
  background-color: #081131 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

#curator-feed-default-feed-layout .crt-post-content-text,
#curator-feed-default-feed-layout .crt-post-name,
#curator-feed-default-feed-layout .crt-post-date {
  color: #ffffff !important;
}

#curator-feed-default-feed-layout .crt-post-header,
#curator-feed-default-feed-layout .crt-post-footer {
  background: transparent !important;
}

#curator-feed-default-feed-layout .crt-logo {
  display: none !important;
}

#curator-feed-default-feed-layout .crt-post {
  background: transparent !important;
}


/* Adjustments requested: Move hero text right & widen cta */
@media (min-width: 1101px) {
  .djnew-hero__content {
    padding-left: 80px !important;
  }
}

.djnew-hero__cta {
  max-width: 340px !important;
}