/* ═══════════════════════════════════════════════════════════
   VBAS — style.css
   Sistema baseado em grid de 8px.
   Escala: --s-1(8) --s-2(16) --s-3(24) --s-4(32)
           --s-5(40) --s-6(48) --s-8(64) --s-10(80)
           --s-12(96) --s-14(112)
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* compensa header fixo em âncoras */
}

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Cores */
  --bg:   #0c0c0c;
  --fg:   #f4f2ee;
  --dim:  rgba(244,242,238,0.85);
  --sub:  rgba(244,242,238,0.55);
  --mid:  #181818;
  --line: rgba(244,242,238,0.08);
  --gold: #c8a84b;

  /* Tipografia */
  --ff-head: 'Oswald', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container:     1200px;
  --gutter:        2.5rem;   /* 40px */
  --nav-h:         72px;

  /* Escala de espaçamento (8px) */
  --s-1:  0.5rem;   /*  8px */
  --s-2:  1rem;     /* 16px */
  --s-3:  1.5rem;   /* 24px */
  --s-4:  2rem;     /* 32px */
  --s-5:  2.5rem;   /* 40px */
  --s-6:  3rem;     /* 48px */
  --s-8:  4rem;     /* 64px */
  --s-10: 5rem;     /* 80px */
  --s-12: 6rem;     /* 96px */
  --s-14: 7rem;     /* 112px */
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 1rem;       /* 16px — base padrão de produto */
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.7;      /* mais preciso que 1.85; adequado para UI */
}

/* ─── FOCO (acessibilidade) ──────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   NAVEGAÇÃO
   ══════════════════════════════════════════════════════════ */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav#nav.scrolled {
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--line);
}

/* Logo: 52px cabe em 72px com 10px de margem vertical */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Links: margin:auto centra entre logo e CTA via flexbox */
.nav-links {
  display: flex;
  gap: var(--s-5);
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.nav-links a {
  font-size: 0.6875rem;  /* 11px */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--fg);
  padding: 0.625rem var(--s-3);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: var(--s-1);
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--fg); transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════════
   MENU MOBILE
   ══════════════════════════════════════════════════════════ */
.mob-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--s-3);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mob-menu.open { transform: none; }
.mob-menu a {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-menu a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 var(--gutter) var(--s-10); /* 80px bottom */
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.88) 100%
  );
}
.hero-bg-word {
  position: absolute;
  bottom: -0.1em; right: -0.05em;
  font-family: var(--ff-head);
  font-size: clamp(14rem, 32vw, 32rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(244,242,238,0.04);
  pointer-events: none; user-select: none;
  line-height: 1; z-index: 1;
}
.hero-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.15s forwards;
}
h1.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.35s forwards;
}
h1.hero-title i { font-style: normal; color: var(--gold); }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
  border-top: 1px solid rgba(244,242,238,0.15);
  padding-top: var(--s-4);
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.6s forwards;
}
.hero-desc {
  max-width: 400px;
  font-size: 0.9375rem; /* 15px */
  line-height: 1.7;
  color: rgba(244,242,238,0.85);
}
.hero-actions {
  display: flex; flex-direction: row;
  gap: var(--s-2); align-items: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   BOTÕES
   ══════════════════════════════════════════════════════════ */
.btn-main {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--fg);
  padding: 0.875rem var(--s-5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-main:hover { background: var(--gold); color: var(--bg); }

.btn-outline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  background: transparent;
  border: 1.5px solid rgba(244,242,238,0.4);
  padding: 0.875rem var(--s-5);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--fg); background: rgba(244,242,238,0.06); }

.btn-link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--fg); }

/* Variantes do CTA (fundo claro, botões maiores) */
.btn-cta-primary {
  padding: 1rem var(--s-8);
  font-size: 0.75rem;
  background: var(--gold);
  color: var(--bg);
}
.btn-cta-primary:hover { background: #b8962f; color: var(--bg); }

.btn-cta-secondary {
  padding: 1rem var(--s-8);
  font-size: 0.75rem;
  border-color: var(--bg);
  color: var(--bg);
}
.btn-cta-secondary:hover {
  border-color: var(--bg);
  background: rgba(12,12,12,0.07);
  color: var(--bg);
}

/* ══════════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: var(--s-2) 0;
  background: var(--mid);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sub);
  padding: 0 var(--s-6);
}
.tick-star {
  color: var(--gold);
  margin-right: var(--s-1);
}

/* ══════════════════════════════════════════════════════════
   UTILITÁRIOS DE LAYOUT
   ══════════════════════════════════════════════════════════ */
section { position: relative; z-index: 1; }

.inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sec-pad { padding: var(--s-14) 0; } /* 112px */

.sec-header { margin-bottom: var(--s-8); } /* 64px */

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-2);
}

.sec-title {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ══════════════════════════════════════════════════════════
   MÉTODO
   ══════════════════════════════════════════════════════════ */
#method { background: var(--bg); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8); /* 64px */
  align-items: start;
}
.method-title {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.method-body {
  color: var(--dim);
  font-size: 0.9375rem;
  margin-bottom: var(--s-2);
}
.method-link {
  display: inline-block;
  margin-top: var(--s-3);
}
.method-visual {
  aspect-ratio: 3/4;
  background: var(--mid);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ph-logo {
  font-family: var(--ff-head);
  font-size: 5rem; font-weight: 700;
  color: rgba(244,242,238,0.06);
  letter-spacing: 0.05em;
}
.ph-caption {
  position: absolute;
  bottom: var(--s-3); left: var(--s-3);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sub);
}

/* ══════════════════════════════════════════════════════════
   PILARES
   ══════════════════════════════════════════════════════════ */
#pillars { background: var(--mid); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: var(--s-5); /* 40px — padronizado */
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.pillar:nth-child(3n)  { border-right: none; }
.pillar:nth-child(n+4) { border-bottom: none; }
.pillar:hover { background: rgba(244,242,238,0.025); }
.pillar-num {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: var(--s-3);
}
.pillar-title {
  font-family: var(--ff-head);
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  margin-bottom: var(--s-2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pillar-text {
  font-size: 0.9375rem;
  color: var(--dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   PARA QUEM
   ══════════════════════════════════════════════════════════ */
#for-whom { background: var(--bg); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
.card {
  padding: var(--s-5); /* 40px — padronizado */
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.card:nth-child(2n)  { border-right: none; }
.card:nth-child(n+3) { border-bottom: none; }
.card:hover { background: var(--mid); }
.card-num {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--sub);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: var(--s-3);
}
.card-title {
  font-family: var(--ff-head);
  font-size: 1.125rem; /* 18px — consistente com pillar-title */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--s-2);
}
.card-text {
  font-size: 0.9375rem;
  color: var(--dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   PROFESSORES
   ══════════════════════════════════════════════════════════ */
#professors { background: var(--mid); }
/* Carousel outer: arrow | viewport | arrow */
.prof-carousel-outer {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.prof-viewport {
  flex: 1;
  overflow: hidden;
}
.prof-track {
  display: flex;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.prof-card {
  flex-shrink: 0;
  background: var(--mid);
  padding: var(--s-5);
  border-right: 1px solid var(--line);
  box-sizing: border-box;
  /* width set in JS */
}
.prof-card:last-child { border-right: none; }

/* Arrows: plain < > in gray */
.prof-nav {
  background: none;
  border: none;
  color: #777;
  font-size: 1.75rem;
  line-height: 1;
  padding: var(--s-1) var(--s-1);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
  font-family: var(--ff-body);
  user-select: none;
}
.prof-nav:hover:not(:disabled) { color: var(--fg); }
.prof-nav:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

/* Dots: centered below carousel */
.prof-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: var(--s-3);
}
.prof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(244,242,238,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.prof-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}
.prof-visual {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e1e1e, #2a2826);
  border: 1px solid rgba(200,168,75,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  position: relative; overflow: hidden;
}
.prof-initials {
  font-family: var(--ff-head);
  font-size: 4rem; font-weight: 700;
  color: rgba(244,242,238,0.08);
  letter-spacing: 0.08em;
}
.prof-visual-tag {
  position: absolute;
  bottom: var(--s-2); left: var(--s-2);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sub);
  background: var(--bg);
  padding: 0.25rem 0.625rem;
}
.prof-name {
  font-family: var(--ff-head);
  font-size: 1.625rem; /* 26px */
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: var(--s-1);
}
.prof-role {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-3);
}
.prof-bio {
  font-size: 0.9375rem;
  color: var(--dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   HORÁRIOS
   ══════════════════════════════════════════════════════════ */
#schedule { background: var(--bg); }
.sched-header { margin-bottom: var(--s-6); }
.sched-wrapper { overflow-x: auto; }
.sched-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
}
.sched-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sub);
  padding: var(--s-2) var(--s-3);
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--mid);
  white-space: nowrap;
}
.sched-table th:last-child { border-right: none; }
.sched-table td {
  font-size: 0.875rem; /* 14px */
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid rgba(244,242,238,0.05);
  border-right: 1px solid rgba(244,242,238,0.05);
  color: var(--dim);
}
.sched-table td:last-child  { border-right: none; }
.sched-table tr:last-child td { border-bottom: none; }
.sched-table td:first-child { font-weight: 600; color: var(--fg); }
.sched-table tr:hover td { background: rgba(244,242,238,0.025); }
.sched-dash { color: rgba(244,242,238,0.2); }
.sched-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.sched-tag {
  display: inline-block;
  font-size: 0.5625rem; /* 9px */
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.125rem 0.5rem;
  margin-left: var(--s-1);
  vertical-align: middle;
}
.sched-note {
  font-size: 0.75rem;
  color: var(--sub);
  letter-spacing: 0.06em;
  margin-top: var(--s-3);
}
td.com-kimono {
  background: rgba(200,168,75,0.09);
  color: rgba(244,242,238,0.95);
  font-weight: 500;
}
td.sem-kimono {
  background: rgba(244,242,238,0.03);
  color: rgba(244,242,238,0.6);
}

/* ══════════════════════════════════════════════════════════
   PLANOS
   ══════════════════════════════════════════════════════════ */
#plans { background: var(--mid); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3); /* 24px */
  align-items: stretch;
}
.plan {
  background: var(--mid);
  padding: var(--s-5); /* 40px */
  position: relative;
  text-align: center;
  display: flex; flex-direction: column;
  border: 1.5px solid rgba(200,200,200,0.18);
}
.plan.hot {
  background: var(--fg);
  color: var(--bg);
  border: none;
  margin-top: calc(-1 * var(--s-4)); /* -32px */
  padding-top: calc(var(--s-5) + var(--s-4)); /* 40+32=72px */
  padding-bottom: var(--s-5);
}
.plan-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-3);
}
.plan-name {
  font-family: var(--ff-head);
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.plan-price {
  font-family: var(--ff-head);
  font-size: 3rem; /* 48px */
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s-1);
}
.plan-price sup { font-size: 1rem; vertical-align: super; font-weight: 500; }
.plan-period {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
  display: block;
  margin-bottom: var(--s-4);
}
.plan.hot .plan-period { color: rgba(12,12,12,0.45); }
.plan-list {
  list-style: none;
  margin-bottom: var(--s-5);
  flex: 1;
}
.plan-list li {
  font-size: 0.875rem;
  color: var(--dim);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  gap: var(--s-1); justify-content: center;
}
.plan.hot .plan-list li {
  color: rgba(12,12,12,0.75);
  border-color: rgba(12,12,12,0.08);
}
.plan-list li::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-plan {
  display: block; text-align: center;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.875rem var(--s-4);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.plan:not(.hot) .btn-plan {
  border: 1.5px solid rgba(200,200,200,0.25);
  color: var(--fg);
}
.plan:not(.hot) .btn-plan:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}
.plan.hot .btn-plan { background: var(--bg); color: var(--fg); }
.plan.hot .btn-plan:hover { background: var(--gold); color: var(--bg); }
.plans-note {
  margin-top: var(--s-8);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--sub);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   BANNER UNIFORME
   ══════════════════════════════════════════════════════════ */
.uniform-banner {
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-5);
  flex-wrap: wrap;
}
.uniform-banner__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.uniform-banner__btn {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: transparent;
  border: 1.5px solid var(--bg);
  padding: 0.5rem var(--s-3);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.uniform-banner__btn:hover { background: var(--bg); color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   DEPOIMENTOS
   ══════════════════════════════════════════════════════════ */
#testimonials { background: var(--bg); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.test-card {
  background: var(--bg);
  padding: var(--s-5); /* 40px — padronizado */
  transition: background 0.25s;
}
.test-card:hover { background: #111; }
.test-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--s-3);
}
.test-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--dim);
  font-style: italic;
  margin-bottom: var(--s-4);
}
.test-author {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
}
.test-author strong {
  display: block;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
}

/* ══════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════ */
#cta {
  text-align: center;
  position: relative; overflow: hidden;
  padding: var(--s-14) 0; /* 112px */
  background: var(--fg);
  color: var(--bg);
}
.cta-title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 13vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: var(--s-5);
  color: var(--bg);
}
.cta-title i {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(12,12,12,0.65);
  max-width: 420px;
  margin: 0 auto var(--s-6);
  line-height: 1.65;
}
#cta .label {
  text-align: center;
  margin-bottom: var(--s-4);
}
.cta-actions {
  display: flex; gap: var(--s-2);
  justify-content: center; flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   LOCALIZAÇÃO
   ══════════════════════════════════════════════════════════ */
#location { background: var(--mid); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8); /* 64px */
  align-items: start;
}
.location-title {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  line-height: 1.0;
}
.location-address {
  font-size: 1rem;
  font-style: normal;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.location-actions {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: var(--s-3);
}
.map-wrapper { width: 100%; }
.map-embed {
  width: 100%; height: 520px;
  border: 1px solid var(--line);
  filter: grayscale(100%) contrast(1.15) invert(0.88);
  display: block;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--line);
  padding: var(--s-4) var(--gutter);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: var(--s-3); flex-wrap: wrap;
  background: var(--bg);
}
.footer-brand {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--fg);
}
.footer-brand .accent { color: var(--gold); }
.footer-copy {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sub);
}
.footer-links { display: flex; gap: var(--s-4); }
.footer-links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sub);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   MOTION REDUZIDO
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-tag, h1.hero-title, .hero-bottom { animation: none; opacity: 1; }
  .ticker-track { animation: none; }
  .mob-menu { transition: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVO — 960px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .method-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .method-visual { aspect-ratio: 16/9; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(3n)  { border-right: 1px solid var(--line); }
  .pillar:nth-child(2n)  { border-right: none; }
  .pillar:nth-child(4)   { border-bottom: 1px solid var(--line); }
  .pillar:nth-child(n+5) { border-bottom: none; }


  .plans-grid { grid-template-columns: 1fr; }
  .plan.hot { margin-top: 0; padding-top: var(--s-5); } /* remove efeito flutuante no mobile */

  .location-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVO — 768px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Carousel: 1 card per slide on mobile — width set by JS */
  .prof-card { border-right: none; border-bottom: 1px solid var(--line); }
  .prof-card:last-child { border-bottom: none; }
  .prof-nav { font-size: 1.25rem; padding: var(--s-1) 0.25rem; }

  :root { --gutter: 1.5rem; }

  nav#nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  #hero { padding: 0 1.5rem var(--s-8); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: var(--s-4); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .sec-pad { padding: var(--s-10) 0; } /* 80px */
  .sec-header { margin-bottom: var(--s-6); }

  /* Cards em 1 coluna: resetar bordas */
  .cards-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 1px solid var(--line); }
  .card:last-child { border-bottom: none; }

  .test-grid { grid-template-columns: 1fr; }

  .map-embed { height: 360px; }

  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVO — 560px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }

  .mob-menu a { font-size: 2rem; }
  .cta-title { font-size: clamp(3rem, 16vw, 3.5rem); }
  .hero-actions { width: 100%; }
  .btn-main, .btn-outline { width: 100%; text-align: center; }
}
