/* ----------------------------------------------------------
   Clube do Genésio — landing page
   Brand palette pulled from references (Oficina red, Cycling
   Club cream + navy, graffiti wordmark)
----------------------------------------------------------- */

:root {
  --bg: #0b0b0b;
  --bg-elev: #141414;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --ink: #f5f1ea;
  --ink-dim: rgba(245, 241, 234, 0.62);
  --ink-faint: rgba(245, 241, 234, 0.38);

  /* Brand sections */
  --red: #d7261f;          /* Oficina */
  --red-deep: #8a1410;
  --cream: #f0e6c8;        /* Cycling club */
  --navy: #1a2547;         /* Cycling club */
  --bone: #ece6d8;         /* Bike fitter */

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: 'tnum' 1;
  letter-spacing: 0.04em;
}
.display {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.graffiti {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- App scaffolding ---------- */

.app {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 760px) { .container { padding: 0 40px; } }

/* ---------- Top bar ---------- */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(11,11,11,0.92), rgba(11,11,11,0.6) 70%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.topbar.scrolled {
  background: rgba(11,11,11,0.92);
  border-bottom: 1px solid var(--line);
}
.topbar__mark {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__mark .g {
  font-family: 'Permanent Marker', cursive;
  font-size: 24px;
  line-height: 1;
  position: relative;
  color: var(--ink);
}
/* X cross is injected inline via JSX */
.topbar__mark .label {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #111;
  border: none;
  transition: transform .15s ease;
  white-space: nowrap;
}
.topbar__cta:hover { transform: translateY(-1px); }
.topbar__cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1cc46e;
  box-shadow: 0 0 0 0 rgba(28,196,110,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(28,196,110,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(28,196,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(28,196,110,0); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 110px 0 60px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 880px) {
  .hero {
    min-height: 100svh;
    padding: 130px 0 70px;
    justify-content: center;
  }
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(215,38,31,0.18), transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(26,37,71,0.35), transparent 60%),
    var(--bg);
  z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  z-index: 0;
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero__eyebrow .pin {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}

.hero__title {
  margin: 0;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 13vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__title .small {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 4.2vw, 38px);
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin-bottom: 4px;
}
.hero__title .graffiti {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  text-transform: none;
  font-size: clamp(72px, 19vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  position: relative;
  color: var(--ink);
  transform: rotate(-2deg);
  transform-origin: left bottom;
  padding-right: 18px;
}
.hero__title .graffiti .x {
  position: absolute;
  top: -0.18em;
  right: -0.05em;
  color: var(--red);
  font-size: 0.62em;
  transform: rotate(-15deg);
  text-shadow: 0 0 18px rgba(215,38,31,0.5);
}

.hero__sub {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__sub .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-faint);
}

.hero__lede {
  max-width: 560px;
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.5;
  color: var(--ink-dim);
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: transform .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--ink);
  color: #111;
  border-color: var(--ink);
}
.btn--solid:hover { background: var(--red); color: var(--ink); border-color: var(--red); }
.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--ink);
}
.btn--red:hover { background: #b81e18; border-color: #b81e18; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Mascot — positioned wrapper for the transparent edited PNG */
.hero__mascot {
  position: absolute;
  top: 52%;
  right: clamp(-220px, -12vw, -120px);
  transform: translateY(-50%);
  width: clamp(390px, 42vw, 600px);
  z-index: 1;
  opacity: 0.92;
  pointer-events: none;
}
.mascot-lockup {
  --ring-speed: 28s;
  --mascot-inset: 12.5%;
  --mascot-label-size: clamp(11px, 1.45vw, 18px);
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.mascot-lockup::before {
  content: '';
  position: absolute;
  inset: 18%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%,
      rgba(245, 241, 234, 0.7) 0 32%,
      rgba(245, 241, 234, 0.4) 52%,
      rgba(245, 241, 234, 0.14) 68%,
      rgba(245, 241, 234, 0) 82%);
  filter: blur(18px);
  transform: scale(1.04);
}
.mascot-lockup::after {
  content: '';
  position: absolute;
  inset: 23%;
  z-index: 1;
  border-radius: 50%;
  background: rgba(240, 230, 200, 0.18);
  filter: blur(38px);
  transform: scale(1.18);
}
.mascot-img {
  position: absolute;
  inset: var(--mascot-inset);
  display: block;
  width: calc(100% - (var(--mascot-inset) * 2));
  height: calc(100% - (var(--mascot-inset) * 2));
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,0.4));
  z-index: 2;
}
.mascot-ring-svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  z-index: 3;
  overflow: visible;
  color: var(--red);
  animation: spin var(--ring-speed) linear infinite;
  transform-origin: 50% 50%;
}
.mascot-ring-svg text {
  fill: currentColor;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}
.mascot-side-label {
  position: absolute;
  top: 40%;
  z-index: 4;
  color: var(--red);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--mascot-label-size);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-align: center;
  transform: translateY(-50%);
}
.mascot-side-label--left { left: 21%; }
.mascot-side-label--right { right: 21%; }
.hero__mascot .mascot-ring-svg {
  filter: drop-shadow(0 8px 16px rgba(215,38,31,0.22));
}
@media (min-width: 881px) and (max-width: 1120px) {
  .hero__mascot {
    top: 50%;
    right: -130px;
    width: 340px;
    opacity: 0.82;
  }
}
@media (max-width: 880px) {
  .hero__mascot {
    position: absolute;
    top: 82px;
    right: -145px;
    transform: none;
    width: 360px;
    opacity: 0.22;
  }
}

.mascot-ring {
  position: absolute;
  inset: 0;
  animation: spin 38s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mascot-face {
  position: absolute;
  inset: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8%;
}
.eyes {
  display: flex;
  gap: 8%;
  width: 90%;
  justify-content: center;
}
.eye {
  width: 38%;
  aspect-ratio: 1 / 1.35;
  background: var(--cream);
  border-radius: 50%;
  border: 3px solid #111;
  position: relative;
  overflow: hidden;
}
.eye::after {
  content: '';
  position: absolute;
  inset: 22% 18% 22% 50%;
  background: #111;
  border-radius: 50%;
}
.mouth {
  width: 50%;
  aspect-ratio: 2.2 / 1;
  background: var(--cream);
  border: 3px solid #111;
  border-radius: 0 0 999px 999px / 0 0 999px 999px;
  border-top: none;
  position: relative;
}
.mouth::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -3px; height: 3px;
  background: #111;
}

/* Hero bottom strip */
.hero__strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hero__strip .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__strip .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__strip .value {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__strip .item:nth-child(2),
.hero__strip .item:nth-child(3) { display: none; }
@media (min-width: 760px) {
  .hero__strip .item:nth-child(2),
  .hero__strip .item:nth-child(3) { display: flex; }
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg);
}
.marquee__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5.5vw, 56px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee__item.dim { color: var(--ink-faint); -webkit-text-stroke: 1px var(--ink); color: transparent; }
.marquee__star {
  width: 18px; height: 18px;
  background: var(--red);
  flex: none;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ---------- Section base ---------- */

.section {
  padding: 80px 0;
  position: relative;
}
@media (min-width: 760px) { .section { padding: 120px 0; } }

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 38px;
}
@media (min-width: 880px) {
  .section__head {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.section__num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.5;
}
.section__title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0;
  text-wrap: balance;
}
.section__title .em {
  color: var(--red);
}
.section__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 460px;
  text-wrap: pretty;
}

/* ---------- Brand doors (three cards) ---------- */

.doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) {
  .doors { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.door {
  --door-fg: var(--ink);
  --door-bg: var(--bg-elev);
  --door-accent: var(--red);
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--door-bg);
  color: var(--door-fg);
  border: 1px solid var(--line);
  isolation: isolate;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.door:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.door:hover .door__cover { transform: scale(1.04); }
.door:hover .door__cta { background: var(--door-accent); color: var(--door-fg); border-color: var(--door-accent); }

.door__cover {
  position: relative;
  height: 220px;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.door__cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
}

.door__index {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.18);
}

.door__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.door__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.door__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin: 0;
}
.door__title .accent { color: var(--door-accent); }

.door__desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}

.door__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
}
.tag .d { width: 5px; height: 5px; border-radius: 50%; background: var(--door-accent); }

.door__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-top: 6px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}

/* Door 1 — Oficina (dark red, workshop) */
.door--oficina {
  --door-accent: var(--red);
}
.door--oficina .door__cover {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #1c1010, #0e0707);
}
.door--oficina .door__cover-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* ===== Oficina logo lockup ===== */
.logo-oficina {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  max-width: 320px;
  width: 100%;
}
.logo-oficina__bar {
  height: 5px;
  background: var(--red);
  width: 100%;
}
.logo-oficina__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 0;
}
.logo-oficina .row1 {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.logo-oficina .oficina,
.logo-oficina .genesio {
  font-size: 30px;
  color: var(--red);
  letter-spacing: 0.005em;
}
.logo-oficina .do {
  font-size: 13px;
  color: var(--ink);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  margin: 0 2px;
  position: relative;
  top: -2px;
}
.logo-oficina .row2 {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.logo-oficina .row2 .amp {
  font-weight: 400;
  margin: 0 1px;
}

/* ===== Bike Fitter logo lockup ===== */
.logo-fit {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-fit__mark {
  position: relative;
  width: 90px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-fit__grid {
  position: absolute;
  inset: -10px -16px -10px -8px;
  width: calc(100% + 24px);
  height: calc(100% + 20px);
  pointer-events: none;
}
.logo-fit__g {
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  z-index: 2;
  position: relative;
  text-transform: lowercase;
  letter-spacing: -0.05em;
}
.logo-fit__word {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.logo-fit__name {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.logo-fit__sub {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Door 2 — Bike Fitter (light, technical construction lines) */
.door--fit {
  --door-accent: var(--red);
  background: var(--bone);
  color: #111;
  border-color: rgba(0,0,0,0.1);
}
.door--fit .door__cover {
  background: #fff;
}
.door--fit .door__cover-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.door__fit-logo-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.door--fit .door__kicker { color: rgba(0,0,0,0.55); }
.door--fit .door__desc { color: rgba(0,0,0,0.62); }
.door--fit .tag {
  border-color: rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.65);
}
.door--fit .door__cta {
  border-color: rgba(0,0,0,0.2);
  color: #111;
}
.door--fit:hover .door__cta { background: var(--red); border-color: var(--red); color: var(--ink); }

/* Door 3 — Pedal (navy, cycling club mascot) */
.door--pedal {
  --door-accent: var(--cream);
  background: var(--navy);
  color: var(--cream);
  border-color: rgba(255,255,255,0.06);
}
.door--pedal .door__cover {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(240,230,200,0.08), transparent 60%),
    linear-gradient(180deg, #1f2c52, #131c38);
  height: 260px;
}
.door--pedal .door__cover-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
}
.door__mascot-lockup {
  --ring-speed: 20s;
  --mascot-inset: 19%;
  --mascot-label-size: 13px;
  width: min(96%, 240px);
  flex: none;
  transform: none;
}
.door__mascot-lockup::before {
  inset: 18%;
  background:
    radial-gradient(circle at 48% 42%,
      rgba(245, 241, 234, 0.82) 0 30%,
      rgba(245, 241, 234, 0.5) 52%,
      rgba(245, 241, 234, 0.16) 70%,
      rgba(245, 241, 234, 0) 84%);
  filter: blur(16px);
}
.door__mascot-lockup::after {
  inset: 22%;
  filter: blur(34px);
}
.door__mascot-lockup .mascot-ring-svg text {
  font-size: 14px;
  letter-spacing: 0.07em;
}
.door__mascot-img {
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.36));
}

.door--pedal .door__title { color: var(--cream); }
.door--pedal .door__title .accent { color: var(--red); font-family: 'Permanent Marker', cursive; }
.door--pedal .door__kicker { color: rgba(240,230,200,0.7); }
.door--pedal .door__desc { color: rgba(240,230,200,0.75); }
.door--pedal .tag { border-color: rgba(240,230,200,0.25); color: rgba(240,230,200,0.85); }
.door--pedal .tag .d { background: var(--red); }
.door--pedal .door__cta { border-color: rgba(240,230,200,0.35); color: var(--cream); }
.door--pedal:hover .door__cta { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* ---------- About / Quem é o Genesio ---------- */

.about {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
}

.about__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 944/673;
  position: relative;
  border: 1px solid var(--line);
  background: #0e0e0e;
}
.about__photo img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about__photo .corner {
  position: absolute;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.16em;
  padding: 6px 10px;
  background: rgba(0,0,0,0.45);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.about__photo .corner.tl { top: 14px; left: 14px; }
.about__photo .corner.br { bottom: 14px; right: 14px; }

.about__text h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  margin: 0 0 22px;
}
.about__text h2 .accent { color: var(--red); }
.about__text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 16px;
  max-width: 560px;
  text-wrap: pretty;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.about__stats .stat {
  display: flex;
  flex-direction: column;
}
.about__stats .stat .num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  color: var(--ink);
}
.about__stats .stat .num .em { color: var(--red); }
.about__stats .stat .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

/* ---------- Services strip ---------- */

.services {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
}
@media (min-width: 760px) {
  .services__list { grid-template-columns: repeat(2, 1fr); }
}
.svc {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.svc:hover { background: rgba(255,255,255,0.02); }
.svc .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
}
.svc .name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.svc .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Contact / footer-cta ---------- */

.contact {
  background: var(--red);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,0,0,0.25), transparent 60%),
    repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.contact__head {
  position: relative;
  max-width: 720px;
  margin-bottom: 36px;
}
.contact__title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.02;
  margin: 14px 0 20px;
}
.contact__title .graffiti {
  font-family: 'Permanent Marker', cursive;
  text-transform: none;
  display: inline-block;
  transform: rotate(-3deg) translateY(2px);
  margin: 0 4px;
  line-height: 0.9;
  font-size: 0.95em;
}
.contact__desc {
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  max-width: 520px;
  opacity: 0.9;
  text-wrap: pretty;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .contact__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.contact__card {
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, background .2s, border-color .2s;
  cursor: pointer;
}
.contact__card:hover {
  transform: translateY(-3px);
  background: rgba(0,0,0,0.46);
  border-color: rgba(255,255,255,0.35);
}
.contact__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__chip {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 10px;
}
.contact__card-arrow {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.contact__card:hover .contact__card-arrow {
  background: rgba(255,255,255,0.32);
  transform: translateX(2px);
}
.contact__card-name {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.contact__card-sub {
  font-size: 13px;
  opacity: 0.78;
  margin-top: 6px;
}
.contact__card-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.contact__socials {
  position: relative;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 760px) {
  .contact__socials { flex-direction: row; align-items: center; gap: 22px; }
}
.contact__socials-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
.contact__socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.contact__social:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--ink-dim);
  font-size: 13px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer h4 {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a:hover { color: var(--ink); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* small helpers */
.hidden-mobile { display: none; }
@media (min-width: 760px) { .hidden-mobile { display: inline; } }

/* ============ Splash screen ============ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(215,38,31,0.18), transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(26,37,71,0.35), transparent 60%),
    var(--bg);
  color: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  animation: splashFadeIn 250ms ease-out both;
}

.splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}

.splash__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(245,241,234,0.55) 1px, transparent 1px),
    radial-gradient(rgba(245,241,234,0.3) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: overlay;
}
.splash__vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(245,241,234,0.05), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.5), transparent 60%);
}

/* ---- Skyline ---- */
.splash__skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: clamp(38vh, 46vh, 52vh);
  display: block;
  pointer-events: none;
  transform: translateY(40px);
  opacity: 0;
  animation: splashSkylineUp 1200ms cubic-bezier(.16,1,.3,1) 200ms forwards;
}
.splash__hill { stroke: none; }
.splash__hill--far  { fill: rgba(245,241,234,0.08); }
.splash__hill--mid  { fill: rgba(245,241,234,0.13); }
.splash__hill--near { fill: rgba(245,241,234,0.26); }
.splash__cristo rect { fill: rgba(245,241,234,0.5); }
.splash__cable {
  stroke: rgba(245,241,234,0.22);
  stroke-width: 1;
}
.splash__stars circle {
  fill: var(--ink);
  opacity: 0.45;
  animation: splashStarTwinkle 2400ms ease-in-out infinite;
}
.splash__stars circle:nth-child(2n) { animation-delay: 600ms; opacity: 0.3; }
.splash__stars circle:nth-child(3n) { animation-delay: 1200ms; opacity: 0.55; }

/* ---- Content stack ---- */
.splash__content {
  position: relative;
  z-index: 2;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(6vh, 10vh, 14vh);
}

.splash__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  animation: splashFadeUp 700ms cubic-bezier(.2,.7,.2,1) 400ms forwards;
}

.splash__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--cream);
}

.splash__small {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(16px, 3.2vw, 28px);
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(10px);
  animation: splashFadeUp 700ms cubic-bezier(.2,.7,.2,1) 600ms forwards;
}

.splash__graffiti {
  position: relative;
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(72px, 17vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  transform: rotate(-2deg);
  padding-right: 0.18em;
}
.splash__wordmark {
  display: inline-flex;
  color: var(--ink);
  white-space: nowrap;
}
.splash__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.18em) rotate(-5deg) scale(0.88);
  filter: blur(2px);
  animation: splashLetterWrite 280ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(780ms + (var(--i) * 115ms));
}
.splash__x {
  position: absolute;
  top: -0.22em;
  right: -0.08em;
  font-family: 'Permanent Marker', cursive;
  color: var(--red);
  font-size: 0.62em;
  text-shadow: 0 0 18px rgba(215,38,31,0.55);
  transform: scale(0) rotate(40deg);
  transform-origin: center;
  animation: splashStampX 400ms cubic-bezier(.34,1.56,.64,1) 1800ms forwards;
}

/* ---- Hubs row ---- */
.splash__hubs {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.splash__hub {
  opacity: 0;
  transform: translateY(8px);
  animation: splashFadeUp 600ms cubic-bezier(.2,.7,.2,1) forwards;
}
.splash__hub[data-i="0"] { animation-delay: 2000ms; }
.splash__hub[data-i="1"] { animation-delay: 2200ms; }
.splash__hub[data-i="2"] { animation-delay: 2400ms; }
.splash__sep {
  color: var(--red);
  font-size: 1.1em;
  line-height: 1;
  opacity: 0;
  transform: scale(0.4);
  animation: splashDotPop 350ms cubic-bezier(.34,1.56,.64,1) forwards;
}
.splash__sep[data-i="0"] { animation-delay: 2100ms; }
.splash__sep[data-i="1"] { animation-delay: 2300ms; }

/* ---- Tagline ---- */
.splash__tagline {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  opacity: 0;
  animation: splashFadeIn 500ms ease-out 2600ms forwards;
}

/* ---- Skip hint ---- */
.splash__skip {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: splashFadeIn 500ms ease-out 2200ms forwards;
  pointer-events: none;
  z-index: 3;
}

/* ---- Exit ---- */
.splash--exit {
  animation: splashExit 400ms cubic-bezier(.65,0,.35,1) forwards;
}

/* ---- Keyframes ---- */
@keyframes splashSkylineUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes splashLetterWrite {
  0% {
    opacity: 0;
    transform: translateY(0.18em) rotate(-5deg) scale(0.88);
    filter: blur(2px);
  }
  68% {
    opacity: 1;
    transform: translateY(-0.03em) rotate(1deg) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
    filter: blur(0);
  }
}
@keyframes splashStampX {
  0%   { transform: scale(0)   rotate(40deg);  opacity: 0; }
  60%  { transform: scale(1.2) rotate(-16deg); opacity: 1; }
  100% { transform: scale(1)   rotate(-12deg); opacity: 1; }
}
@keyframes splashDotPop {
  0%   { transform: scale(0.4); opacity: 0; }
  70%  { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}
@keyframes splashStarTwinkle {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.85; }
}
@keyframes splashExit {
  from { opacity: 1; transform: translateY(0)    scale(1); }
  to   { opacity: 0; transform: translateY(-6%)  scale(1.03); }
}

/* ---- Reduced motion: preserve cascade timing, swap motion for fades ---- */
@media (prefers-reduced-motion: reduce) {
  .splash__skyline {
    animation-name: splashFadeIn !important;
    transform: none !important;
  }
  .splash__wordmark {
    opacity: 1 !important;
  }
  .splash__letter {
    animation-name: splashFadeIn !important;
    transform: none !important;
    filter: none !important;
  }
  .splash__x {
    animation-name: splashFadeIn !important;
    transform: rotate(-12deg) !important;
  }
  .splash__small,
  .splash__eyebrow,
  .splash__hub {
    animation-name: splashFadeIn !important;
    transform: none !important;
  }
  .splash__sep {
    animation-name: splashFadeIn !important;
    transform: none !important;
  }
  .splash--exit {
    animation-name: splashFadeIn !important;
    animation-direction: reverse !important;
  }
  .splash__stars circle { animation: none !important; }
}

/* ---- Responsive tweaks ---- */
@media (max-width: 480px) {
  .splash__content { gap: 14px; margin-bottom: 8vh; }
  .splash__hubs    { gap: 10px; }
  .splash__skyline { height: 42vh; }
}
