/* ============================================
   BMQ Sports — Design tokens
   ============================================ */
:root {
  --navy: #070346;
  --navy-2: #0c0860;
  --navy-deep: #04022e;
  --red: #c20f0f;
  --red-2: #e01515;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --muted: #6b6b6b;
  --line: #e6e6ea;
  --bg: #ffffff;
  --bg-alt: #f6f6f7;
  --bg-soft: #faf9f7;
  --surface: #ffffff;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 40px;

  --shadow-1: 0 1px 2px rgba(7, 3, 70, .04), 0 8px 24px rgba(7, 3, 70, .06);
  --shadow-2: 0 20px 60px rgba(7, 3, 70, .15);

  --t-fast: .25s cubic-bezier(.2, .8, .2, 1);
  --t-med: .45s cubic-bezier(.2, .8, .2, 1);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  /* fonts: Nunito as a freely available analog to Gotham Rounded */
  --font-display: "Nunito", "Gotham Rounded", system-ui, sans-serif;
  --font-body: "Nunito", "Gotham Rounded", system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg: #0a0730;
  --bg-alt: #07052a;
  --bg-soft: #100c44;
  --surface: #13104a;
  --ink: #f5f4ff;
  --ink-soft: #c9c6e8;
  --muted: #8a87b6;
  --line: rgba(255, 255, 255, .12);
  --navy: #070346;
}

/* reset-ish */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .35s ease, color .35s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* container */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============================================
   Type system
   ============================================ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .num {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .eyebrow .num { color: #fff; }
.eyebrow::before {
  content: "";
  width: 28px; height: 2px; background: currentColor;
}
.eyebrow.no-bar::before { display: none; }
.eyebrow.on-dark .num { color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.05;
  text-wrap: balance;
}
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4 { color: #fff; }

.h-display {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.02em;
}
.h-1 { font-size: clamp(38px, 5vw, 72px); font-weight: 800; }
.h-2 { font-size: clamp(28px, 3.4vw, 48px); font-weight: 800; }
.h-3 { font-size: clamp(22px, 2.2vw, 32px); font-weight: 700; }
.lead { font-size: clamp(18px, 1.4vw, 22px); color: var(--ink-soft); line-height: 1.5; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-2); }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-secondary:hover { background: transparent; color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
[data-theme="dark"] .btn-ghost { color: #fff; border-color: #fff; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
[data-theme="dark"] .btn-ghost:hover { background: #fff; color: var(--navy); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ============================================
   Header (glass)
   ============================================ */
.site-header {
  position: fixed;
  inset: 16px 16px auto 16px;
  z-index: 100;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 10px 40px rgba(7, 3, 70, .08);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
[data-theme="dark"] .site-header {
  background: rgba(15, 12, 70, .85);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.site-header.scrolled {
  background: var(--navy);
  border-color: rgba(255, 255, 255, .08);
}
.site-header.scrolled .brand { color: #fff; }
.site-header.scrolled .brand img { filter: brightness(0) invert(1); }
.site-header.scrolled .nav-links a { color: #fff; }
.site-header.scrolled .nav-links a:hover { background: rgba(255, 255, 255, .12); }
.site-header.scrolled .nav-cta { background: var(--red); }
.site-header.scrolled .nav-cta:hover { background: #fff !important; color: var(--navy) !important; }
.site-header.scrolled .nav-toggle { color: #fff; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 22px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy);
}
.brand img { height: 36px; width: auto; display: block; }
[data-theme="dark"] .brand { color: #fff; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  transition: background var(--t-fast), color var(--t-fast);
}
[data-theme="dark"] .nav-links a { color: #fff; }
.nav-links a:hover { background: rgba(7, 3, 70, .08); }
[data-theme="dark"] .nav-links a:hover { background: rgba(255, 255, 255, .08); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 22px !important;
}
.nav-cta:hover { background: var(--red) !important; }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--navy);
}
[data-theme="dark"] .nav-toggle { color: #fff; }

/* ============================================
   Hero (cinematic slider)
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #000;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }

.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 3, 70, .35) 0%, rgba(7, 3, 70, .2) 40%, rgba(7, 3, 70, .9) 100%),
    linear-gradient(90deg, rgba(7, 3, 70, .75) 0%, rgba(7, 3, 70, .3) 60%, rgba(7, 3, 70, 0) 100%);
}
.hero-media image-slot {
  width: 100%;
  height: 100%;
}
/* zoom-in kenburns on active slide */
.hero-slide.is-active .hero-media image-slot {
  animation: kenburn 12s ease-out forwards;
}
@keyframes kenburn {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 14vh;
  pointer-events: none; /* let image-slot below receive drag/click */
}
.hero-content .hero-actions,
.hero-content .hero-actions a,
.hero-content .hero-actions button { pointer-events: auto; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--red);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  max-width: 20ch;
  margin: 0 0 24px;
  color: #fff;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--red-2);
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero entry transition */
.hero-slide .hero-eyebrow,
.hero-slide .hero-title,
.hero-slide .hero-sub,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.hero-slide.is-active .hero-eyebrow { transition-delay: .15s; opacity: 1; transform: none; }
.hero-slide.is-active .hero-title   { transition-delay: .25s; opacity: 1; transform: none; }
.hero-slide.is-active .hero-sub     { transition-delay: .4s;  opacity: 1; transform: none; }
.hero-slide.is-active .hero-actions { transition-delay: .55s; opacity: 1; transform: none; }

/* hero chrome */
.hero-chrome {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 var(--gutter) 32px;
  z-index: 3;
  pointer-events: none;
}
.hero-chrome-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
}
.hero-progress {
  display: flex; gap: 10px;
}
.hero-progress button {
  background: transparent; border: 0; padding: 0;
  color: rgba(255, 255, 255, .55);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  display: flex; align-items: center; gap: 12px;
  transition: color var(--t-fast);
}
.hero-progress button .bar {
  display: inline-block;
  width: 56px; height: 2px;
  background: rgba(255, 255, 255, .25);
  position: relative; overflow: hidden;
  border-radius: 2px;
}
.hero-progress button .bar::after {
  content: "";
  position: absolute; inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-progress button.is-active { color: #fff; }
.hero-progress button.is-active .bar::after {
  animation: heroBar 6.5s linear forwards;
}
@keyframes heroBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-arrows { display: flex; gap: 10px; }
.hero-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.hero-arrow:hover { background: #fff; color: var(--navy); border-color: #fff; }

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  color: rgba(255, 255, 255, .65);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  z-index: 3;
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll::after {
  content: ""; width: 56px; height: 1px; background: rgba(255, 255, 255, .5);
}

/* ============================================
   Section primitives
   ============================================ */
section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .left { display: flex; flex-direction: column; gap: 22px; }
.section-head .right { color: var(--ink-soft); font-size: clamp(16px, 1.15vw, 19px); line-height: 1.6; padding-top: 4px; }
[data-theme="dark"] .section-head .right { color: var(--ink-soft); }

@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

/* alternating section bg */
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead, .section-dark p { color: rgba(255, 255, 255, .8); }
.section-dark .eyebrow .num { color: #fff; }

/* ============================================
   Diferencial
   ============================================ */
.differential-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.differential-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
  background: var(--bg-alt);
}
.differential-media image-slot { border-radius: var(--radius-l); }
.differential-media .badge {
  position: absolute;
  top: 20px; left: 20px;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
.differential-body p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
@media (max-width: 860px) {
  .differential-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Marquee (red)
   ============================================ */
.marquee {
  background: var(--red);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 36px);
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track span::after {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   Modalidades
   ============================================ */
.modal-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .modal-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modal-cats { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  overflow: hidden;
}
[data-theme="dark"] .cat-card { background: var(--surface); }
.cat-card:hover { border-color: var(--navy); }
.cat-card.is-open {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.cat-card .cat-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.cat-card .cat-count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}
.cat-card.is-open .cat-count { color: rgba(255, 255, 255, .7); }
.cat-card h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  margin: 12px 0 0;
  color: inherit;
}
.cat-card.is-open h3 { color: #fff; }
.cat-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid; place-items: center;
  flex: 0 0 38px;
  color: var(--navy);
  transition: all var(--t-fast);
}
.cat-card.is-open .cat-toggle { background: var(--red); color: #fff; transform: rotate(45deg); }

.cat-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin-top .4s ease;
  margin-top: 0;
}
.cat-card.is-open .cat-list { max-height: 600px; margin-top: 24px; }
.cat-list ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  font-size: 14px;
}
.cat-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* ============================================
   Serviços
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.service-card .img-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.service-card .img-bg::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 3, 70, 0) 30%, rgba(7, 3, 70, .92) 100%);
}
.service-card .img-bg image-slot { width: 100%; height: 100%; }
.service-card .num,
.service-card h3,
.service-card p { pointer-events: none; }
.service-card .arrow { pointer-events: auto; cursor: pointer; }
.service-card .num {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .15em;
  z-index: 2;
}
.service-card .arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  display: grid; place-items: center;
  z-index: 2;
  transition: all var(--t-fast);
}
.service-card:hover .arrow { background: var(--red); border-color: var(--red); transform: rotate(-45deg); }
.service-card h3 {
  position: relative; z-index: 2;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  margin: 0 0 8px;
}
.service-card p {
  position: relative; z-index: 2;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  margin: 0;
}

/* ============================================
   Pilares (professores) — dark section
   ============================================ */
.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .pilares { grid-template-columns: 1fr; } }
.pilar {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-m);
  padding: 36px 32px;
  position: relative;
}
.pilar .pilar-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 24px;
}
.pilar h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 12px;
}
.pilar p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Por que contratar
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
@media (max-width: 860px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit {
  background: var(--bg);
  padding: 40px 32px;
}
.benefit .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.benefit h3 {
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--navy);
}
.benefit p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Founder quote — dark card with red quotes
   ============================================ */
.founder {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--navy);
  color: #fff;
}
.founder-card {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.founder-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .15);
  flex: 0 0 120px;
}
.founder-photo image-slot { border-radius: 50%; }
.founder-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.founder-meta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.founder-meta strong { color: var(--red-2); display: block; font-size: 15px; margin-bottom: 4px; }
.giant-quote {
  position: absolute;
  top: -20px; right: 20px;
  font-family: Georgia, serif;
  font-size: 380px;
  line-height: 1;
  color: var(--red);
  opacity: .3;
  pointer-events: none;
}
@media (max-width: 720px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .founder-photo { margin: 0 auto; }
  .giant-quote { font-size: 220px; right: -20px; top: -40px; }
}

/* ============================================
   Counter bar (numbers)
   ============================================ */
.counter-bar {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 860px) { .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.counter-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.counter-item + .counter-item::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, .15);
}
@media (max-width: 860px) { .counter-item + .counter-item::before { display: none; } }
.counter-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.counter-num .plus { color: var(--red-2); }
.counter-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

/* ============================================
   História + MEC
   ============================================ */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.history-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
}
.history-media image-slot { border-radius: var(--radius-l); }
.history-timeline {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.history-timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.history-timeline li:last-child { border-bottom: 1px solid var(--line); }
.history-timeline .year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
}
.history-timeline strong { display: block; font-weight: 800; font-family: var(--font-display); color: var(--navy); margin-bottom: 4px; }
[data-theme="dark"] .history-timeline strong { color: #fff; }
.history-timeline p { margin: 0; color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) { .history-grid { grid-template-columns: 1fr; } }

.mec-banner {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.mec-banner h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  margin: 0 0 16px;
}
.mec-banner p { color: rgba(255, 255, 255, .9); margin: 0; max-width: 60ch; font-size: 17px; }
.mec-seal {
  width: 180px; height: 180px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  flex: 0 0 180px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}
.mec-seal image-slot { width: 100%; height: 100%; border-radius: 50%; }
@media (max-width: 720px) {
  .mec-banner { grid-template-columns: 1fr; text-align: center; }
  .mec-seal { margin: 0 auto; }
}

/* ============================================
   Blog
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.blog-cover {
  aspect-ratio: 4/3;
}
.blog-cover image-slot { width: 100%; height: 100%; }
.blog-body {
  padding: 22px 22px 26px;
  display: flex; flex-direction: column; flex: 1; gap: 14px;
}
.blog-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0;
  flex: 1;
}
.blog-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================
   Contato + footer
   ============================================ */
.contact {
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 96px);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info ul { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-info li {
  display: flex; gap: 16px; align-items: center;
  font-size: 17px;
}
.contact-info li .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  flex: 0 0 44px;
}
.contact-info li strong { display: block; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
[data-theme="dark"] .contact-info li strong { color: #fff; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 16px;
}
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
[data-theme="dark"] .field label { color: #fff; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--navy); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* footer */
footer.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 800;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { color: rgba(255, 255, 255, .7); font-size: 15px; transition: color var(--t-fast); }
.foot-grid a:hover { color: #fff; }
.foot-brand p { font-size: 14px; line-height: 1.6; max-width: 36ch; }
.foot-bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  z-index: 95;
  transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); }

/* ============================================
   Mobile nav
   ============================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .site-header.mobile-open { border-radius: 28px; }
  .site-header.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    margin-top: 8px;
  }
  .site-header.mobile-open .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .nav { flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .site-header { inset: 10px 10px auto 10px; }
  .hero { min-height: 640px; }
  .hero-content { padding-bottom: 120px; }
  .hero-scroll { display: none; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* image-slot defaults — fill parent so the drop target == the visible box */
image-slot {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ebe9e3, #d8d6cf);
  --is-text-color: rgba(7, 3, 70, .6);
}
