/* ═══════════════════════════════════════════════════════
   JOÃO GOUVÊA — Design, Motion & Branding Esportivo
   Palette: Deep Navy Black · Electric Blue · Ice Blue
   Referência visual: Source2IT — azul elétrico premium
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* backgrounds — navy-black com leve tint azul */
  --bg:        #04070f;
  --bg2:       #070c17;
  --bg3:       #0b1220;
  --surface:   #0f1829;

  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.13);
  --white:     #e8edf8;
  --off:       #8a95b0;
  --muted:     #4a5270;

  /* accent primário — azul elétrico rico, não SaaS claro */
  --v:         #0ea5e9;
  --v-hi:      #38bdf8;
  --v-glow:    rgba(14,165,233,0.30);

  /* accent2 — azul mais profundo / indigo elétrico para gradientes */
  --t:         #2563eb;
  --t-hi:      #60a5fa;
  --t-glow:    rgba(37,99,235,0.25);

  --ease:      cubic-bezier(0.16,1,0.3,1);
  --font:      'Inter', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; color: var(--t-hi); }
.br-desk { display: block; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 999;
  background: linear-gradient(90deg, var(--v), var(--t-hi));
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--v-glow);
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 7px; height: 7px; border-radius: 50%;
  background: var(--t-hi); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--ease), background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(56,189,248,0.35); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: transform 0.4s var(--ease), opacity 0.3s;
}
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo {
  display: block; font-size: 32px; font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--v-hi), var(--t-hi));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px; animation: loaderPulse 1.4s ease-in-out infinite alternate;
}
@keyframes loaderPulse { from { opacity: 0.6; } to { opacity: 1; } }
.loader__bar {
  width: 180px; height: 1px; background: var(--surface); margin: 0 auto; overflow: hidden;
}
.loader__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--v), var(--t-hi));
  animation: loaderFill 1.4s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-weight: 600;
  font-size: 14px; letter-spacing: 0.02em; cursor: pointer;
  border: none; transition: all 0.28s var(--ease); white-space: nowrap;
}
.btn--primary {
  background: var(--v);
  background: linear-gradient(135deg, var(--v), #0369a1);
  color: #fff; box-shadow: 0 0 28px var(--v-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px var(--v-glow), 0 8px 24px rgba(0,0,0,0.4);
}
.btn--ghost {
  background: transparent; color: var(--white); border: 1px solid var(--border-hi);
}
.btn--ghost:hover {
  border-color: rgba(56,189,248,0.5); color: var(--t-hi);
  background: rgba(37,99,235,0.06);
}
.btn--outline {
  background: transparent; color: var(--t-hi);
  border: 1px solid rgba(56,189,248,0.25); font-size: 13px; padding: 10px 20px;
}
.btn--outline:hover {
  background: rgba(37,99,235,0.08); border-color: rgba(56,189,248,0.6);
}
.btn--lg { padding: 18px 40px; font-size: 15px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s, border-color 0.4s, transform 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4,7,15,0.82); backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
}
.nav.hidden { transform: translateY(-110%); }
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px;
}
.nav__logo {
  font-size: 16px; font-weight: 900; letter-spacing: -0.5px; margin-right: auto;
}
.nav__logo span { color: var(--t-hi); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 13px; font-weight: 500; color: var(--off);
  transition: color 0.2s; letter-spacing: 0.01em; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--t-hi); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: all 0.32s var(--ease); transform-origin: center;
}
.nav__burger.open span:first-child  { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:last-child   { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(4,7,15,0.97);
  backdrop-filter: blur(24px);
  z-index: 800; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  clip-path: circle(0% at calc(100% - 40px) 34px);
  transition: clip-path 0.65s var(--ease);
}
.mobile-menu.open { clip-path: circle(160% at calc(100% - 40px) 34px); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 36px; }
.mobile-link {
  font-size: 30px; font-weight: 800; letter-spacing: -1.5px; color: var(--off);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }

/* ── SECTION COMMONS ── */
.section-header { max-width: 600px; margin-bottom: 72px; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t-hi); margin-bottom: 18px;
}
.section-title {
  font-size: clamp(32px, 4vw, 54px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.07; margin-bottom: 18px;
}
.section-sub { color: var(--off); font-size: 16px; line-height: 1.7; }
.tag {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border-hi); color: var(--t-hi); margin-bottom: 12px;
}

/* ── REVEAL ── */
.reveal-up, .reveal-right {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right { transform: translateX(28px); }
.reveal-up.visible, .reveal-right.visible { opacity: 1; transform: none; }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
/* ambient glow orbs */
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(120px);
  animation: glowDrift 12s ease-in-out infinite alternate;
}
.hero__glow--a {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
  animation-duration: 14s;
}
.hero__glow--b {
  width: 500px; height: 500px;
  bottom: -80px; left: 10%;
  background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 70%);
  animation-duration: 18s; animation-delay: -6s;
}
@keyframes glowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.06); }
  100% { transform: translate(-20px, 30px) scale(0.96); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(4,7,15,0.96) 40%,
    rgba(4,7,15,0.6) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 72px; align-items: center;
  padding-top: 64px; padding-bottom: 64px;
}

.hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t-hi); margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(52px, 7vw, 96px); font-weight: 900;
  letter-spacing: -4px; line-height: 0.97; margin-bottom: 28px;
  background: linear-gradient(160deg, #ffffff 40%, #a0a0c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title em {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(120deg, var(--v-hi), var(--t-hi));
  -webkit-background-clip: text; background-clip: text;
}
.hero__sub {
  font-size: 17px; color: var(--off); line-height: 1.75; max-width: 500px;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats {
  display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--border);
}
.hero__stat strong {
  font-size: 38px; font-weight: 900; letter-spacing: -2px; color: var(--white);
}
.hero__stat span { font-size: 22px; font-weight: 700; color: var(--t-hi); }
.hero__stat small { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 0.02em; }

/* Photo */
.hero__photo { position: relative; }

/* ── anéis animados ── */
.hero__rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 0; pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(14,165,233,0.18);
  animation: ringPulse 4s ease-out infinite;
}
.ring--1 { width: 220px; height: 220px; animation-delay: 0s; }
.ring--2 { width: 340px; height: 340px; animation-delay: 1s;  border-color: rgba(14,165,233,0.12); }
.ring--3 { width: 460px; height: 460px; animation-delay: 2s;  border-color: rgba(14,165,233,0.07); }
.ring--4 { width: 580px; height: 580px; animation-delay: 3s;  border-color: rgba(37,99,235,0.05); }
@keyframes ringPulse {
  0%   { transform: scale(0.82); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(1.12); opacity: 0; }
}
.hero__photo-frame {
  position: relative; width: 100%; aspect-ratio: 3/4;
  background: transparent; border: none; border-radius: 0; overflow: visible;
}
.hero__photo-frame img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain; object-position: bottom;
}
.hero__photo-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; z-index: 1;
}
.hero__photo-placeholder span {
  font-size: 60px; font-weight: 900; letter-spacing: -4px;
  background: linear-gradient(135deg, var(--v-hi), var(--t-hi));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__photo-placeholder small {
  font-size: 11px; color: var(--muted); text-align: center; line-height: 1.6;
}
.hero__photo-frame img:not([style*="display:none"]) + .hero__photo-placeholder { display: none; }

.hero__badge {
  position: absolute; padding: 8px 14px; border-radius: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  background: rgba(11,11,23,0.88); backdrop-filter: blur(16px);
  border: 1px solid var(--border-hi); color: var(--white);
  animation: floatBadge 5s ease-in-out infinite;
  white-space: nowrap;
}
.hero__badge--1 { top: 24px; right: -22px; animation-delay: 0s; }
.hero__badge--2 {
  top: 48%; right: -30px; animation-delay: 1.6s;
  color: var(--t-hi); border-color: rgba(56,189,248,0.2);
}
.hero__badge--3 { bottom: 24px; right: -18px; animation-delay: 0.9s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}


/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-strip {
  overflow: hidden; padding: 22px 0; position: relative;
  background: linear-gradient(90deg, var(--t) 0%, #0c4a9e 50%, var(--v) 100%);
}
.marquee-strip::before, .marquee-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--t), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, var(--v), transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 26px;
  white-space: nowrap; animation: marqueeScroll 32s linear infinite;
}
.marquee-track span { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.marquee-track .dot { color: rgba(255,255,255,0.35); font-size: 7px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ══════════════════════════════════════════════
   WORK WALL
══════════════════════════════════════════════ */
.work { padding: 120px 0 0; background: var(--bg); }
.work-wall {
  overflow: hidden; padding: 48px 0 120px;
  display: flex; flex-direction: column; gap: 14px;
}
.work-row { overflow: hidden; }
.work-track { display: flex; gap: 14px; width: max-content; }
.work-row--left  .work-track { animation: wallLeft  35s linear infinite; }
.work-row--right .work-track { animation: wallRight 35s linear infinite; }
@keyframes wallLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes wallRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.work-card {
  width: 230px; height: 288px; flex-shrink: 0; border-radius: 10px;
  overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.work-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(160deg, rgba(14,165,233,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.work-card:hover {
  transform: scale(1.045) translateY(-4px);
  box-shadow: 0 0 40px var(--t-glow), 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(56,189,248,0.2);
}
.work-card:hover::after { opacity: 1; }
.work-card img { position: absolute; inset: 0; z-index: 1; }
.work-card img[src]:not([src=""]) + .work-card__ph { display: none; }
.work-card__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--surface), var(--bg3));
}
.work-card__ph span {
  font-size: 36px; font-weight: 900; color: rgba(255,255,255,0.05);
  font-variant-numeric: tabular-nums;
}


/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { padding: 120px 0; background: var(--bg2); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card {
  padding: 40px 32px; border: 1px solid var(--border);
  background: transparent; position: relative; overflow: hidden;
  transition: background 0.35s, border-color 0.35s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { background: var(--surface); border-color: rgba(14,165,233,0.2); }
.service-card:hover::before { opacity: 1; }
.service-card__num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 20px; font-variant-numeric: tabular-nums;
}
.service-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 12px;
  letter-spacing: -0.3px; line-height: 1.3;
}
.service-card p { font-size: 14px; color: var(--off); line-height: 1.7; margin-bottom: 24px; }
.service-card__line {
  height: 1px; width: 32px;
  background: linear-gradient(90deg, var(--v), var(--t));
  transition: width 0.4s var(--ease);
}
.service-card:hover .service-card__line { width: 100%; }


/* ══════════════════════════════════════════════
   AI VISUALS
══════════════════════════════════════════════ */
.ai-visuals {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--bg);
}
.ai-visuals__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.ai-visuals__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ai-visuals__text p:not(.section-eyebrow) {
  color: var(--off); font-size: 15px; line-height: 1.75; margin-bottom: 20px;
}
.ai-visuals__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.ai-visuals__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--off);
}
.ai-visuals__list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--t-hi); flex-shrink: 0;
  box-shadow: 0 0 8px var(--t-glow);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ai-card {
  border-radius: 10px; overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--border);
  aspect-ratio: 4/5;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.ai-card:hover { border-color: rgba(56,189,248,0.25); transform: translateY(-3px); }
/* último card ocupa largura toda */
.ai-card--wide { grid-column: span 2; aspect-ratio: 16/7; }

.ai-card img { position: absolute; inset: 0; z-index: 1; }
.ai-card img[src]:not([src=""]) + .ai-card__ph { display: none; }
.ai-card__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--surface), var(--bg3));
}
.ai-card__ph span { font-size: 32px; font-weight: 900; color: rgba(255,255,255,0.05); }


/* ══════════════════════════════════════════════
   SITES
══════════════════════════════════════════════ */
.sites { padding: 120px 0; background: var(--bg2); }
.sites__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.site-card {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  background: var(--bg3);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.site-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--v-glow);
}
.site-card__preview {
  position: relative; aspect-ratio: 9/16; background: var(--surface); overflow: hidden;
}
.site-card__preview img { object-position: top; }
.site-card__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg3) 100%);
}
.site-card__ph span { font-size: 18px; font-weight: 700; color: var(--muted); }
.site-card__ph small { font-size: 10px; color: var(--muted); opacity: 0.5; text-align: center; }
.site-card__preview img { z-index: 1; position: relative; }
.site-card img[src]:not([src=""]) + .site-card__ph { display: none; }
.site-card__info { padding: 22px 24px; }
.site-card__info h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.site-card__info p { font-size: 13px; color: var(--muted); line-height: 1.65; }


/* ══════════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════════ */
.statement {
  position: relative; padding: 140px 0; overflow: hidden;
  background: var(--bg);
}
.statement__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(14,165,233,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(37,99,235,0.10) 0%, transparent 60%);
}
.statement__inner { position: relative; text-align: center; }
.statement__quote {
  font-size: clamp(24px, 3.5vw, 46px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.18; margin-bottom: 72px;
  color: var(--white);
}
.statement__stats { display: flex; justify-content: center; gap: 80px; }
.statement__stats strong {
  font-size: 56px; font-weight: 900; letter-spacing: -3px; color: var(--white);
}
.statement__stats span { font-size: 28px; color: var(--t-hi); font-weight: 700; }
.statement__stats small { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: 0.04em; }


/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 140px 0; background: var(--bg2); position: relative; overflow: hidden;
}
.contact__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(14,165,233,0.12) 0%, transparent 60%);
}
.contact__inner { position: relative; text-align: center; max-width: 680px; margin: 0 auto; }
.contact__title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 900;
  letter-spacing: -3px; line-height: 1.03; margin-bottom: 24px;
}
.contact__sub { color: var(--off); font-size: 16px; line-height: 1.75; margin-bottom: 48px; max-width: 520px; margin-left: auto; margin-right: auto; }
.contact__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  padding: 48px 0; border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer__logo { font-size: 22px; font-weight: 900; letter-spacing: -1px; }
.footer__logo em { font-style: normal; color: var(--t-hi); }
.footer p { font-size: 13px; color: var(--muted); }
.footer__copy { font-size: 11px; color: var(--border-hi); }


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 640px;
    text-align: center;
  }
  /* foto aparece acima do texto no tablet/mobile */
  .hero__photo {
    display: flex;
    justify-content: center;
    order: -1;
    margin-bottom: 36px;
  }
  .hero__photo-frame {
    width: min(280px, 70vw);
    aspect-ratio: 3/4;
  }
  /* badges ficam dentro do frame, não para fora */
  .hero__badge--1 { top: 12px; right: 8px; }
  .hero__badge--2 { top: 48%; right: 8px; }
  .hero__badge--3 { bottom: 12px; right: 8px; }

  .hero__text { order: 1; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .section-header { text-align: left; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .ai-visuals__inner { grid-template-columns: 1fr; }
  .sites__grid { grid-template-columns: repeat(2, 1fr); }
  .statement__stats { gap: 40px; }
  .br-desk { display: inline; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .sites__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .statement__stats { gap: 28px; flex-wrap: wrap; }
  .hero__badge { display: none; }
  .section-header { margin-bottom: 48px; }
  .work-card { width: 160px; height: 200px; }

  /* hero foto menor em mobile */
  .hero__photo-frame { width: min(220px, 60vw); }
  .hero__content { padding-top: 32px; padding-bottom: 48px; }
  .hero__title { font-size: clamp(44px, 13vw, 72px); letter-spacing: -3px; }
  .hero__sub { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .contact__ctas { flex-direction: column; align-items: center; }
  .contact__ctas .btn { width: 100%; justify-content: center; }
  .statement__stats { flex-direction: column; gap: 20px; }
  .hero__photo-frame { width: min(200px, 55vw); }
}
