/* =========================================================================
   FUTEBOL FREESTYLE — Street Lime Edition (v3)
   ========================================================================= */

:root {
  /* core palette */
  --ink: #08090d;
  --ink-2: #101218;
  --ink-3: #181b22;
  --paper: #f4f3ed;
  --paper-warm: #ecebe2;
  --paper-line: rgba(8,9,13,0.10);
  --paper-line-2: rgba(8,9,13,0.18);
  --ink-line: rgba(244,243,237,0.08);
  --ink-line-2: rgba(244,243,237,0.18);
  --muted-light: #6f6f6f;
  --muted-dark: rgba(244,243,237,0.6);

  /* signature lime (substitui o flame antigo) */
  --accent: #d4ff00;
  --accent-2: #b4e000;
  --accent-deep: #92b700;
  --accent-soft: rgba(212,255,0,0.14);
  --accent-glow: rgba(212,255,0,0.35);
  /* alias mantido pra compatibilidade com classes que usavam --flame */
  --flame: var(--accent);
  --flame-deep: var(--accent-deep);
  --flame-soft: var(--accent-soft);
  --gold: #ffd400;

  --font-display: 'Big Shoulders Display', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1320px;
  --max-wide: 1480px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--ink); }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; }

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

/* Chevron stack — usado em brand, loader, decoração */
.chev-stack {
  display: inline-flex; flex-direction: column; align-items: stretch; gap: 3px;
  width: 26px;
}
.chev-stack i {
  display: block; width: 100%; height: 6px;
  background: var(--accent);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}
.chev-stack i:nth-child(2) { opacity: 0.75; }
.chev-stack i:nth-child(3) { opacity: 0.45; }

/* =========================================================================
   Loader
   ========================================================================= */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#loader.gone { opacity: 0; visibility: hidden; }
.loader-mark { position: relative; text-align: center; }
.loader-mark .chev-stack {
  width: 60px; gap: 7px; margin: 0 auto 24px;
}
.loader-mark .chev-stack i {
  height: 14px;
  animation: chevPulse 1.1s ease-in-out infinite;
}
.loader-mark .chev-stack i:nth-child(2) { animation-delay: 0.12s; }
.loader-mark .chev-stack i:nth-child(3) { animation-delay: 0.24s; }
@keyframes chevPulse {
  0%, 100% { transform: translateX(-14px); opacity: 0.2; }
  50%      { transform: translateX(14px);  opacity: 1; }
}
.loader-mark .label {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.16em;
  color: var(--paper);
  text-transform: uppercase;
}

/* =========================================================================
   Typography utilities
   ========================================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 6px; background: var(--accent);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.h-display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-section em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--accent);
}
.center { text-align: center; }
.lead {
  font-size: 19px;
  line-height: 1.6;
  max-width: 60ch;
  opacity: 0.82;
}

/* Text reveal (split letters via JS) */
.split-line { display: block; overflow: hidden; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-char {
  display: inline-block;
  transform: translateY(110%) rotate(8deg);
  opacity: 0;
  will-change: transform, opacity;
}
.split-ready .split-char {
  transition: transform 1s var(--ease-out), opacity .9s ease;
  transform: translateY(0) rotate(0);
  opacity: 1;
}

/* =========================================================================
   Header
   ========================================================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  background: rgba(8,9,13,0.55);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
#site-header.scrolled {
  padding: 12px 0;
  background: rgba(8,9,13,0.92);
  border-bottom-color: var(--ink-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--paper);
  text-transform: uppercase;
}
.brand .chev-stack { width: 22px; gap: 2px; }
.brand .chev-stack i { height: 5px; }
.brand-text { line-height: 1; display: flex; flex-direction: column; }
.brand-text small {
  font-family: var(--font-body); font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; color: var(--accent); margin-top: 5px;
}

#desktop-nav ul { display: flex; gap: 2px; list-style: none; align-items: center; }
#desktop-nav a {
  position: relative;
  display: inline-block;
  padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  color: rgba(244,243,237,0.78);
  letter-spacing: 0.02em;
  border-radius: 999px;
}
#desktop-nav a:not(.cta)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
#desktop-nav a:not(.cta):hover::after,
#desktop-nav a.active::after { transform: scaleX(1); }
#desktop-nav a:hover { color: var(--paper); }
#desktop-nav a.active { color: var(--paper); }
#desktop-nav a.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--ink);
  padding: 11px 22px; font-weight: 800;
}
#desktop-nav a.cta::before {
  content: ""; width: 14px; height: 5px; background: var(--ink);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}
#desktop-nav a.cta:hover { background: var(--paper); }

#hamburger {
  display: none;
  width: 44px; height: 44px;
  background: rgba(244,243,237,0.06); border: 1px solid var(--ink-line-2);
  border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
#hamburger span {
  width: 20px; height: 2px;
  background: var(--paper); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

#mobile-menu {
  position: fixed; inset: 0; z-index: 499;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
#mobile-menu.open { opacity: 1; pointer-events: auto; }
#mobile-menu ul { list-style: none; text-align: center; }
#mobile-menu li { margin: 14px 0; }
#mobile-menu a {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}
#mobile-menu a:hover { color: var(--accent); }

/* Social rail vertical (fixa à direita, desktop) */
.social-rail {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 400;
  display: flex; flex-direction: column; gap: 14px;
}
.social-rail a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--paper);
  background: rgba(244,243,237,0.04);
  border: 1px solid var(--ink-line-2);
  border-radius: 50%;
  transition: all .25s var(--ease-out);
}
.social-rail a:hover {
  background: var(--accent); color: var(--ink); border-color: var(--accent);
  transform: translateX(-3px) scale(1.06);
  box-shadow: 0 10px 24px var(--accent-glow);
}
@media (max-width: 1100px) { .social-rail { display: none; } }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .6s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateX(110%); }
.btn-primary {
  background: var(--accent); color: var(--ink);
  box-shadow: 0 14px 30px var(--accent-glow);
}
.btn-primary:hover { background: var(--paper); color: var(--ink); box-shadow: 0 18px 40px rgba(0,0,0,0.45); }
.btn-outline {
  background: transparent; color: var(--paper); border-color: var(--ink-line-2);
}
.btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-outline-ink {
  background: transparent; color: var(--ink); border-color: var(--paper-line-2);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ghost-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper);
}
.btn-ghost-link::after {
  content: "→"; font-size: 16px; transition: transform .25s var(--ease-out);
}
.btn-ghost-link:hover { color: var(--accent); }
.btn-ghost-link:hover::after { transform: translateX(8px); }
.btn-ghost-link.ink { color: var(--ink); }
.btn-ghost-link.ink:hover { color: var(--accent-deep); }

/* =========================================================================
   Section base & themes
   ========================================================================= */
section { padding: 140px 0; position: relative; }
section.dark { background: var(--ink); color: var(--paper); }
section.dark-2 { background: var(--ink-2); color: var(--paper); }
section.light { background: var(--paper); color: var(--ink); }
section.light .eyebrow { color: var(--accent-deep); }
section.light .eyebrow::before { background: var(--accent-deep); }
section.light .h-display em, section.light .h-section em { color: var(--accent-deep); }
section.light .h-display, section.light .h-section { color: var(--ink); }
section.light .lead { color: var(--ink); opacity: 0.75; }

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 22px 0;
  opacity: 0.95;
}
.marquee-track {
  display: inline-flex; gap: 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track .accent { color: var(--accent); }
.marquee-track .star {
  display: inline-block; width: 22px; height: 12px;
  background: var(--accent);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
.marquee-reverse .marquee-track { animation-direction: reverse; }

/* =========================================================================
   HOME — Cinematic full-bleed Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding: 120px 0 80px;
  background: var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  filter: contrast(1.1) saturate(0.92) brightness(0.78);
  will-change: transform;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(212,255,0,0.12), transparent 55%),
    linear-gradient(180deg, rgba(8,9,13,0.55) 0%, rgba(8,9,13,0.35) 35%, rgba(8,9,13,0.92) 100%),
    linear-gradient(90deg, rgba(8,9,13,0.65) 0%, transparent 40%, transparent 60%, rgba(8,9,13,0.55) 100%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -2vw; left: -2vw; right: -2vw;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 380px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: rgba(244,243,237,0.05);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative; z-index: 4;
  padding-bottom: 60px;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
}
.hero-eyebrow-row .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 14px var(--accent-glow); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-eyebrow-row .sep { width: 18px; height: 1px; background: var(--ink-line-2); }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(76px, 13vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero-headline .line { display: block; }
.hero-headline .accent-line {
  position: relative; display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--accent);
  letter-spacing: -0.01em;
  padding: 0 0.2em;
}

/* Lâmina lime diagonal (referência ao site antigo) */
.hero-blade {
  position: absolute;
  right: 4vw; top: 50%; transform: translateY(-50%) rotate(-7deg);
  z-index: 3;
  background: var(--accent);
  color: var(--ink);
  padding: 38px 70px 38px 56px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  pointer-events: none;
}
.hero-blade span { display: block; }
.hero-blade .blade-chev {
  margin-top: 14px;
  display: flex; gap: 5px;
}
.hero-blade .blade-chev i {
  display: block; width: 28px; height: 11px;
  background: var(--ink);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}
.hero-blade .blade-chev i:nth-child(2) { opacity: 0.55; }
.hero-blade .blade-chev i:nth-child(3) { opacity: 0.25; }
@media (max-width: 1100px) {
  .hero-blade { position: relative; right: auto; top: auto; transform: rotate(-4deg); margin: 40px 0 0; align-self: flex-start; }
}

.hero-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin: 36px 0 0;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 700;
}
.hero-meta .divider { width: 30px; height: 1px; background: var(--ink-line-2); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; align-items: center; }

.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 4;
  border-top: 1px solid var(--ink-line);
  background: rgba(8,9,13,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-ticker-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--ink-line);
}
.hero-ticker-item {
  padding: 22px 26px;
  border-right: 1px solid var(--ink-line);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-ticker-item .num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.hero-ticker-item .num em {
  font-style: normal; color: var(--accent);
  font-family: var(--font-display);
}
.hero-ticker-item .lbl {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted-dark);
}
@media (max-width: 980px) {
  .hero-ticker-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-ticker-item:nth-child(2) { border-right: none; }
  .hero-ticker-item:nth-child(n+3) { border-top: 1px solid var(--ink-line); }
  .hero-ticker-item .num { font-size: 28px; }
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 110px; transform: translateX(-50%);
  z-index: 5;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted-dark);
  pointer-events: none;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollCue 1.6s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}
@media (max-width: 980px) { .scroll-cue { display: none; } }

/* =========================================================================
   STATS (gigantes)
   ========================================================================= */
.stats-wall {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}
section.dark .stats-wall, section.dark-2 .stats-wall { border-color: var(--ink-line); }
.stat-block {
  padding: 70px 30px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-block + .stat-block { border-left: 1px solid var(--paper-line); }
section.dark .stat-block + .stat-block,
section.dark-2 .stat-block + .stat-block { border-color: var(--ink-line); }
.stat-block::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent); transform: translateX(-50%);
  transition: width .8s var(--ease-out);
}
.stat-block.in::before { width: 60%; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.025em;
}
.stat-num .suffix { color: var(--accent); }
.stat-label {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.7;
}

/* =========================================================================
   About block (foto magazine + texto)
   ========================================================================= */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.about-media-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.about-media-stack img:nth-child(1) {
  top: 0; left: 0; width: 68%; height: 78%; z-index: 2;
  clip-path: inset(0 0 0 0);
}
.about-media-stack img:nth-child(2) {
  bottom: 0; right: 0; width: 54%; height: 58%; z-index: 1;
  outline: 4px solid var(--accent);
  outline-offset: -4px;
}
.about-media-stack::before {
  content: "EST. 2008";
  position: absolute;
  top: -10px; right: -20px;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 800;
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.9;
  z-index: 0;
  letter-spacing: -0.02em;
}
.about-text p {
  font-size: 18px; line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.86;
}
.about-text p strong { font-weight: 700; opacity: 1; }
.pullquote {
  position: relative;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
  margin-bottom: 14px;
  opacity: 1;
}
.pullquote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-deep);
}

/* =========================================================================
   Section head
   ========================================================================= */
.section-head { margin-bottom: 80px; }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head.split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

/* =========================================================================
   Services grid (home) — cards com background image
   ========================================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
  border: 1px solid var(--ink-line);
  transition: transform .55s var(--ease-out), border-color .35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,255,0,0.35); }
.service-card-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.service-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.65) contrast(1.05) brightness(0.5);
  transform: scale(1.05);
  transition: filter .7s var(--ease-out), transform 1.4s var(--ease-out);
}
.service-card-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(212,255,0,0.10), transparent 60%),
    linear-gradient(180deg, rgba(8,9,13,0.15) 0%, rgba(8,9,13,0.92) 100%);
  transition: background .5s ease, opacity .5s ease;
}
.service-card:hover .service-card-bg img {
  filter: grayscale(0) contrast(1.05) brightness(0.8) saturate(1.08);
  transform: scale(1.12);
}
.service-card:hover .service-card-bg::after {
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(212,255,0,0.22), transparent 55%),
    linear-gradient(180deg, rgba(8,9,13,0.1) 0%, rgba(8,9,13,0.94) 100%);
}
.service-card-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 26px 24px 26px;
  color: var(--paper);
}
.service-card-num {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  align-self: flex-start;
  position: relative;
  padding-left: 18px;
}
.service-card-num::before {
  content: ""; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 70%;
  background: var(--accent);
}
.service-card-bottom { margin-top: auto; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 40px); font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--paper);
  transition: transform .35s var(--ease-out);
}
.service-card:hover h3 { transform: translateY(-2px); }
.service-card p {
  font-size: 13.5px; line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 20px;
  max-width: 28ch;
}
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.service-card .arrow::after {
  content: "→";
  transition: transform .35s var(--ease-out);
  display: inline-block;
}
.service-card:hover .arrow::after { transform: translateX(10px); }
.service-card::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 3px; width: 0; background: var(--accent);
  transition: width .6s var(--ease-out);
  z-index: 3;
}
.service-card:hover::after { width: 100%; }

/* =========================================================================
   Styles grid — Os estilos (sobre.php) — sem imagens, editorial
   ========================================================================= */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.style-card {
  position: relative;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  padding: 32px 32px 30px;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  overflow: hidden;
}
.style-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0.35);
  transform-origin: top;
  transition: transform .5s var(--ease-out);
}
.style-card:hover {
  transform: translateY(-4px);
  border-color: var(--paper-line-2);
  box-shadow: 0 22px 40px -28px rgba(8,9,13,0.35);
}
.style-card:hover::before { transform: scaleY(1); }

.style-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.style-card-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: -0.03em;
}
.style-card-ico {
  font-size: 26px;
  color: var(--ink);
  opacity: 0.35;
  transition: opacity .3s ease, transform .35s var(--ease-out), color .3s ease;
}
.style-card:hover .style-card-ico {
  opacity: 1;
  color: var(--accent-deep);
  transform: translateX(-2px) rotate(-6deg);
}
.style-card h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 42px); font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.style-card-tag {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.style-card p:not(.style-card-tag) {
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
}

@media (max-width: 780px) {
  .styles-grid { grid-template-columns: 1fr; }
  .style-card { padding: 26px 24px 24px; }
  .style-card-num { font-size: 36px; }
}

/* =========================================================================
   Language switcher — Google Translate
   ========================================================================= */
.lang-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  background: rgba(244,243,237,0.06);
  border: 1px solid var(--ink-line-2);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.lang-trigger:hover {
  background: rgba(244,243,237,0.1);
  border-color: var(--accent-glow);
  transform: translateY(-1px);
}
.lang-trigger i { font-size: 13px; color: var(--accent); }
.lang-trigger .lang-code { line-height: 1; }

.lang-overlay {
  position: fixed; inset: 0;
  z-index: 100000;
  background: rgba(8,9,13,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lang-overlay.is-open { opacity: 1; pointer-events: auto; }
.lang-modal {
  width: 100%; max-width: 480px; max-height: 80vh;
  background: var(--ink-2);
  border: 1px solid var(--ink-line-2);
  border-radius: 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform .3s var(--ease-out);
  color: var(--paper);
}
.lang-overlay.is-open .lang-modal { transform: scale(1); }
.lang-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ink-line);
}
.lang-modal-head h3 {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0;
}
.lang-modal-head h3 i { color: var(--accent); font-size: 16px; }
.lang-modal-close {
  background: none; border: none;
  color: rgba(244,243,237,0.6);
  font-size: 28px; line-height: 1;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-modal-close:hover {
  background: rgba(244,243,237,0.08);
  color: var(--paper);
}
.lang-reset {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 22px 0;
  padding: 11px 14px;
  width: calc(100% - 44px);
  background: rgba(212,255,0,0.10);
  border: 1px solid rgba(212,255,0,0.35);
  border-radius: 10px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background .2s, border-color .2s;
}
.lang-reset:hover {
  background: rgba(212,255,0,0.18);
  border-color: var(--accent);
}
.lang-reset .lang-flag {
  width: 22px; height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.lang-modal-search {
  padding: 14px 22px;
  border-bottom: 1px solid var(--ink-line);
}
.lang-modal-search input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(244,243,237,0.05);
  border: 1px solid var(--ink-line-2);
  border-radius: 10px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.lang-modal-search input:focus { border-color: var(--accent-glow); }
.lang-modal-search input::placeholder { color: rgba(244,243,237,0.4); }

.lang-modal-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 10px;
}
.lang-modal-list::-webkit-scrollbar { width: 8px; }
.lang-modal-list::-webkit-scrollbar-thumb {
  background: rgba(244,243,237,0.15);
  border-radius: 4px;
}
.lang-item {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: none; border: none;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-align: left;
}
.lang-item:hover { background: rgba(244,243,237,0.06); }
.lang-item.is-active {
  background: rgba(212,255,0,0.12);
  color: var(--accent);
}
.lang-flag {
  width: 24px; height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 auto;
  background: rgba(244,243,237,0.06);
}
.lang-name { flex: 1; }
.lang-check { color: var(--accent); font-weight: 800; }

.goog-te-banner-frame, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; }
.goog-tooltip { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }

/* =========================================================================
   Image rail — faixa horizontal scroll automático
   ========================================================================= */
.image-rail {
  padding: 60px 0 80px;
  overflow: hidden;
  background: var(--ink);
}
.image-rail-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: rail-scroll 50s linear infinite;
}
.image-rail-track:hover { animation-play-state: paused; }
.image-rail-item {
  position: relative;
  width: 320px; height: 220px;
  flex: 0 0 auto;
  overflow: hidden;
}
.image-rail-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05);
  transition: transform .6s var(--ease-out);
}
.image-rail-item:hover img { transform: scale(1.08); }
.image-rail-item .tag {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--accent); color: var(--ink);
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
}
@keyframes rail-scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   Gallery magazine (assimétrica)
   ========================================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease-out);
  filter: contrast(1.05) brightness(0.92);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: contrast(1.1) saturate(1.06) brightness(1);
}
.gallery-item .label {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  z-index: 2;
  color: var(--paper);
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform .5s var(--ease-out), opacity .35s ease;
}
.gallery-item:hover .label { transform: translateY(0); opacity: 1; }
.gallery-item .label small {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.gallery-item .label small::before {
  content: ""; display: inline-block;
  width: 14px; height: 1px;
  background: var(--accent);
}
.gallery-item .label strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.5vw, 24px); font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(8,9,13,0.45) 70%, rgba(8,9,13,0.88) 100%);
  pointer-events: none;
  transition: opacity .35s ease;
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid transparent;
  z-index: 3;
  transition: border-color .35s ease;
  pointer-events: none;
}
.gallery-item:hover::before { border-color: rgba(212,255,0,0.3); }
.gallery-item.tall  { grid-column: span 4; grid-row: span 5; }
.gallery-item.wide  { grid-column: span 8; grid-row: span 3; }
.gallery-item.med   { grid-column: span 4; grid-row: span 3; }
.gallery-item.small { grid-column: span 4; grid-row: span 2; }
.gallery-item.hero-thumb { grid-column: span 8; grid-row: span 4; }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
  .gallery-item.tall  { grid-column: span 3; grid-row: span 4; }
  .gallery-item.wide  { grid-column: span 6; grid-row: span 3; }
  .gallery-item.med   { grid-column: span 3; grid-row: span 3; }
  .gallery-item.small { grid-column: span 3; grid-row: span 2; }
  .gallery-item.hero-thumb { grid-column: span 6; grid-row: span 4; }
}

/* =========================================================================
   Brands strip
   ========================================================================= */
.brands-strip {
  padding: 80px 0 90px;
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
}
.brands-strip::before,
.brands-strip::after {
  content: ""; position: absolute; left: 50%;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}
.brands-strip::before { top: -18px; }
.brands-strip::after  { bottom: -18px; }
.brands-head {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 14px;
  width: 100%; justify-content: center;
}
.brands-head::before,
.brands-head::after {
  content: ""; flex: 0 0 auto;
  width: 28px; height: 1px;
  background: rgba(212,255,0,0.5);
}
.brands-list {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 0;
}
.brand-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 30px); font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: rgba(244,243,237,0.42);
  transition: color .3s ease, transform .35s var(--ease-out), letter-spacing .3s ease;
  position: relative;
  padding: 0 32px;
  line-height: 1;
}
.brand-item + .brand-item::before {
  content: ""; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 18px;
  background: rgba(244,243,237,0.16);
}
.brand-item:hover {
  color: var(--accent);
  transform: translateY(-3px);
  letter-spacing: 0.04em;
}

/* =========================================================================
   Service page
   ========================================================================= */
.svc-hero {
  padding: 180px 0 100px;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.svc-hero-bg-text {
  position: absolute;
  top: 50%; left: -2%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 420px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: rgba(244,243,237,0.045);
  text-transform: uppercase;
  pointer-events: none;
}
.svc-hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
}
.svc-hero-image {
  aspect-ratio: 4/5; max-height: 580px;
  overflow: hidden;
  position: relative;
}
.svc-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08); }
.svc-hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(212,255,0,0.18), transparent 50%);
  pointer-events: none;
}

.svc-content {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 80px; padding: 120px 0;
}
.svc-content .lead-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.svc-content p {
  font-size: 18px; line-height: 1.7;
  margin-bottom: 22px;
  opacity: 0.86;
}
.svc-content p strong { font-weight: 700; opacity: 1; }

.svc-features {
  padding: 120px 0;
  background: var(--paper);
  color: var(--ink);
}
.svc-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.svc-feature {
  padding: 40px 30px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  position: relative;
  transition: transform .35s var(--ease-out), border-color .25s ease;
}
.svc-feature:hover { transform: translateY(-6px); border-color: var(--accent-deep); }
.svc-feature-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent-deep);
  background: var(--paper);
  margin-bottom: 24px;
  border: 1.5px solid var(--ink);
}
.svc-feature h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-feature p { font-size: 14px; line-height: 1.6; opacity: 0.7; }

/* =========================================================================
   Blog list
   ========================================================================= */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: transparent;
  transition: transform .45s var(--ease-out);
  position: relative;
}
.blog-card:hover { transform: translateY(-10px); }
.blog-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(244,243,237,0.04);
  margin-bottom: 24px;
  position: relative;
  border: 1px solid transparent;
  transition: border-color .35s ease;
}
.blog-card:hover .blog-card-image { border-color: rgba(212,255,0,0.25); }
section.light .blog-card-image { background: var(--paper-warm); }
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
  filter: contrast(1.04);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,9,13,0.3), transparent 50%);
  pointer-events: none;
}
.blog-card-num {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  line-height: 1;
  color: var(--ink);
  background: var(--accent);
  letter-spacing: 0.18em;
  padding: 7px 10px 6px;
  z-index: 2;
}
.blog-card-meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.blog-card-meta .category { color: var(--accent); }
.blog-card-meta .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  transition: color .2s ease;
}
.blog-card:hover h3 { color: var(--accent); }
.blog-card p {
  font-size: 14px; line-height: 1.55;
  opacity: 0.7;
}

/* =========================================================================
   Single post
   ========================================================================= */
.post-hero {
  padding: 180px 0 60px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  top: 50%; right: -10%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 24vw, 380px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(244,243,237,0.04);
  text-transform: uppercase;
  pointer-events: none;
}
.post-hero .container { max-width: 860px; position: relative; z-index: 2; }
.post-meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.8;
}
.post-meta .category { color: var(--accent); }
.post-meta .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; }
.post-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.post-image {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 32px;
}
.post-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: contrast(1.05);
}
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 80px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--paper);
  opacity: 0.92;
}
.post-body p { margin-bottom: 28px; }
.post-body p strong { color: var(--accent); font-weight: 700; }
.post-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  float: left;
  line-height: 0.86;
  margin: 6px 12px 0 0;
  color: var(--accent);
}

.post-tags {
  max-width: 760px; margin: 40px auto 0; padding: 30px 32px 0;
  border-top: 1px solid var(--ink-line);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.post-tags .tag {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(244,243,237,0.06);
  color: var(--paper);
  border-radius: 999px;
}

.post-nav { background: var(--paper); color: var(--ink); padding: 80px 0; }
.post-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.post-nav-card {
  display: block; padding: 36px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  transition: border-color .2s ease, transform .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.post-nav-card::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 4px; height: 100%; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease-out);
}
.post-nav-card:hover { transform: translateY(-4px); border-color: var(--accent-deep); }
.post-nav-card:hover::before { transform: scaleY(1); }
.post-nav-card small {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-deep);
}
.post-nav-card h4 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: -0.005em;
}
.post-nav-card.next { text-align: right; }
.post-nav-card.next::before { left: auto; right: 0; }

/* =========================================================================
   Contact
   ========================================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { font-size: 18px; line-height: 1.6; margin-bottom: 32px; opacity: 0.85; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-channel {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: rgba(244,243,237,0.04);
  border: 1px solid var(--ink-line);
  transition: background .2s ease, border-color .2s ease, transform .25s var(--ease-out);
}
.contact-channel:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateX(6px);
}
.contact-channel i {
  font-size: 22px; color: var(--accent);
  width: 32px; text-align: center;
}
.contact-channel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-channel span { font-size: 13px; opacity: 0.75; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink-line-2);
  color: var(--paper);
  transition: all .25s var(--ease-out);
}
.social-row a:hover {
  background: var(--accent); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px var(--accent-glow);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form .label-text {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 16px 18px;
  background: rgba(244,243,237,0.04);
  border: 1px solid var(--ink-line-2);
  font: inherit; color: var(--paper);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f4f3ed' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(244,243,237,0.07);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { margin-top: 12px; align-self: flex-start; position: relative; }
.contact-form .btn .btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(8,9,13,0.25); border-top-color: var(--ink);
  border-radius: 50%; display: none;
  animation: spin .8s linear infinite;
}
.contact-form .btn.is-busy .btn-label { opacity: 0.5; }
.contact-form .btn.is-busy .btn-spinner { display: inline-block; }
.contact-form .btn:disabled { cursor: not-allowed; transform: none; }
.form-feedback { font-family: var(--font-body); font-size: 13px; min-height: 18px; color: #4ade80; }
.form-feedback.error { color: #ff6b6b; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================================
   CTA Band
   ========================================================================= */
.cta-band {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background: var(--accent);
  color: var(--ink);
  overflow: hidden;
}
.cta-band::before {
  content: "FUTEBOL FREESTYLE";
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 320px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: rgba(8,9,13,0.08);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band .eyebrow { color: var(--ink); }
.cta-band .eyebrow::before { background: var(--ink); }
.cta-band h2 { color: var(--ink); margin-bottom: 30px; }
.cta-band h2 em { color: var(--paper); }
.cta-band p { font-size: 18px; max-width: 56ch; margin: 0 auto 40px; opacity: 0.85; }
.cta-band .btn-primary { background: var(--ink); color: var(--accent); box-shadow: 0 16px 36px rgba(0,0,0,0.32); }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* =========================================================================
   Footer
   ========================================================================= */
#site-footer {
  background: var(--ink); color: var(--paper);
  padding: 100px 0 40px;
  border-top: 1px solid var(--ink-line);
}
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 200px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 40px;
}
.footer-mark em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--accent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; opacity: 0.75; }
.footer-col a:hover { color: var(--accent); opacity: 1; }
.footer-tag { font-size: 14px; opacity: 0.65; max-width: 32ch; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
  opacity: 0.6;
  flex-wrap: wrap; gap: 14px;
}

/* =========================================================================
   Reveal animation base
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .9s var(--ease-out) var(--reveal-delay, 0ms),
    transform .9s var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.mask-reveal { position: relative; overflow: hidden; }
.mask-reveal::before {
  content: ""; position: absolute; inset: 0; z-index: 5;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1s var(--ease-out);
}
.mask-reveal.in::before { transform-origin: right; transform: scaleX(0); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
  .stat-num { font-size: clamp(64px, 14vw, 140px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  section { padding: 100px 0; }
  .hero { padding: 110px 0 0; min-height: auto; }
  .hero-headline { font-size: clamp(64px, 14vw, 120px); }
  .about-block, .svc-hero-grid, .svc-content, .contact-grid {
    grid-template-columns: 1fr; gap: 50px;
  }
  .stats-wall, .svc-features-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .post-nav-grid { grid-template-columns: 1fr; }
  .image-rail-item { width: 240px; height: 170px; }
}
@media (max-width: 720px) {
  #desktop-nav { display: none; }
  #hamburger { display: flex; }
  section { padding: 80px 0; }
  .hero { padding: 100px 0 0; }
  .services-grid, .stats-wall, .blog-grid, .svc-features-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-wall .stat-block { border-left: none !important; }
  .stats-wall .stat-block + .stat-block { border-top: 1px solid var(--ink-line); }
  .footer-mark { font-size: clamp(48px, 14vw, 100px); margin-bottom: 40px; padding-bottom: 30px; }
  .container, .container-wide { padding: 0 22px; }
  .post-body p:first-of-type::first-letter { font-size: 60px; }
  .hero-blade { padding: 28px 44px 28px 36px; font-size: 24px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item { grid-column: span 1 !important; grid-row: auto !important; aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .image-rail-track { animation: none; }
  .split-char { transform: none !important; opacity: 1 !important; }
  .fs-ball-brand, .loader-logo .fs-ball, .loader-logo .fs-kleg { animation: none; }
}
