/* ============================================================
   TiParaElas — Folha de estilos da página inicial
   ============================================================ */

:root {
  /* Cores — paleta neutra */
  --c-bg: #FAFAF7;
  --c-bg-2: #F4F2EE;
  --c-surface: #FFFFFF;
  --c-ink: #1F1B2D;
  --c-ink-2: #3D3848;
  --c-muted: #76707E;
  --c-line: #EAE7E2;

  --c-primary: #5C4A6B;        /* ameixa empoeirada */
  --c-primary-700: #463854;
  --c-primary-50: #F1EDF3;

  --c-accent: #B8755F;         /* terracota suave */
  --c-accent-2: #C9A77B;       /* areia quente */
  --c-soft-rose: #D9A5A0;

  --grad-primary: linear-gradient(135deg, #5C4A6B 0%, #7A6685 100%);
  --grad-warm: linear-gradient(135deg, #B8755F 0%, #C9A77B 100%);
  --grad-soft: linear-gradient(170deg, #F6F2EE 0%, #EFEAEA 60%, #F1EFEC 100%);

  /* Tipografia */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Espaço & raio */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(31,27,45,.05), 0 2px 6px rgba(31,27,45,.03);
  --shadow: 0 6px 20px -8px rgba(31,27,45,.12), 0 3px 10px -4px rgba(31,27,45,.05);
  --shadow-lg: 0 18px 40px -16px rgba(31,27,45,.18), 0 8px 20px -12px rgba(31,27,45,.10);

  --container: 1200px;
  --header-h: 76px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; color: var(--c-ink); }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-lg { padding: 14px 24px; font-size: 15.5px; }

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(92, 74, 107, .5), 0 2px 6px -2px rgba(31,27,45,.15);
}
.btn-primary:hover { background: var(--c-primary-700); box-shadow: 0 10px 22px -10px rgba(92,74,107,.55), 0 4px 10px -4px rgba(31,27,45,.2); }

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover { background: var(--c-primary-50); color: var(--c-primary); border-color: var(--c-primary); }

.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-outline:hover { background: var(--c-ink); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--c-primary-700);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 242, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.is-scrolled {
  background: rgba(251, 247, 242, .92);
  border-bottom-color: var(--c-line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-mark { width: 36px; height: 36px; display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text .brand-ti { color: var(--c-primary); }
.brand-text .brand-para { color: var(--c-ink); }
.brand-text .brand-elas { color: var(--c-accent); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--c-ink-2);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--c-primary); background: var(--c-primary-50); }
.nav-link.is-active { color: var(--c-primary); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
  transform: translateX(-50%);
}
.nav-cta { display: flex; align-items: center; gap: 8px; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  background: var(--grad-soft);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}
.blob-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle at 30% 30%, rgba(184,117,95,.35), transparent 70%);
  top: -140px; right: -100px;
}
.blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle at 70% 60%, rgba(92,74,107,.3), transparent 70%);
  bottom: -160px; left: -100px;
  opacity: .6;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,27,45,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,27,45,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-2);
  backdrop-filter: blur(6px);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(184,117,95,.18);
}

.hero-title {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  margin-top: 18px;
  font-weight: 700;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--c-accent);
}
.hero-title .hl {
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6px;
  height: 12px;
  background: rgba(201, 167, 123, .35);
  border-radius: 8px;
  z-index: -1;
}

.hero-lede {
  /*max-width: 540px;*/
  width: 100%;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin-top: 18px;
  text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--c-muted);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta strong { color: var(--c-ink); font-weight: 700; }
.hero-meta-avatars { display: inline-flex; }
.hero-meta-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--c-bg);
  margin-left: -8px;
}
.hero-meta-avatars span:first-child { margin-left: 0; }
.hero-meta-divider {
  width: 1px;
  height: 18px;
  background: var(--c-line);
}

/* Hero card (right side) */
.hero-card {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform .4s ease;
}
.hero-card:hover .hero-photo { transform: rotate(0deg); }

.hero-photo-img {
  width: 100%;
  aspect-ratio: 4/4.6;
  overflow: hidden;
}
.hero-photo-img svg {
  width: 100%; height: 100%;
}

.hero-photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.94);
  color: var(--c-ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239,68,68,.25); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,.1); }
}

.hero-stat-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.hero-stat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-ink);
}
.hero-stat-label { font-size: 12.5px; color: var(--c-muted); }

/* ============================================================
   Counters
   ============================================================ */
.counters {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 0 0 60px;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--c-line);
}
.counter-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 6px 14px;
  position: relative;
}
.counter-card + .counter-card::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--c-line);
}
.counter-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--c-primary-50);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.counter-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}
.counter-label {
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
}

/* ============================================================
   Sections genéricos
   ============================================================ */
.section {
  padding: 80px 0;
  position: relative;
}
.section-alt {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title link"
    "sub   sub";
  gap: 8px 24px;
  margin-bottom: 40px;
  align-items: end;
}
.section-head > div { grid-area: title; }
.section-head .section-sub { grid-area: sub; max-width: none; }
.section-head .section-link { grid-area: link; align-self: end; }

.section-head-center {
  text-align: center;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "sub";
  justify-items: center;
}
.section-head-center .section-sub { margin: 0 auto; }

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.kicker-light { color: rgba(255,255,255,.78); }

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--c-accent);
}
.section-sub {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.55;
}
.section-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s, gap .2s;
}
.section-link:hover { background: var(--c-primary-50); gap: 8px; }

/* ============================================================
   Cards (ações)
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-cover {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c-bg-2);
  overflow: hidden;
}
.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(31,27,45,.12), transparent 55%);
}
.card-cover[data-cover="acao-1"] { background: linear-gradient(135deg, #5C4A6B, #7A6685); }
.card-cover[data-cover="acao-2"] { background: linear-gradient(135deg, #B8755F, #C9A77B); }
.card-cover[data-cover="acao-3"] { background: linear-gradient(135deg, #4D5A6B, #76707E); }

.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(255,255,255,.95);
  color: var(--c-ink);
}
.tag-violet { color: #5C4A6B; }
.tag-pink { color: #8E4A5A; }
.tag-amber { color: #8E5A3A; }

.card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card-meta {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  color: var(--c-muted);
  font-weight: 500;
}
.card-title {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  text-wrap: balance;
}
.card-desc {
  font-size: 14.5px;
  color: var(--c-ink-2);
  line-height: 1.55;
}
.card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatars { display: inline-flex; }
.avatars span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.card-foot-text {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
}
.card-arrow {
  margin-left: auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-primary-50);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.card-arrow:hover { background: var(--c-primary); color: #fff; transform: translateX(3px); }

/* ============================================================
   Inspirações
   ============================================================ */
.cards-inspire { gap: 28px; }

.card-inspire {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-inspire:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.inspire-cover {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.inspire-portrait { width: 100%; height: 100%; }
.inspire-portrait svg { width: 100%; height: 100%; }

.inspire-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inspire-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.inspire-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}
.inspire-quote {
  font-style: italic;
  color: var(--c-ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  padding-left: 12px;
  border-left: 2px solid var(--c-accent);
}
.inspire-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.inspire-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c-primary-50);
  color: var(--c-primary);
  font-weight: 600;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: #1F1B2D;
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .25;
}
.cta-band::before {
  width: 320px; height: 320px;
  background: #B8755F;
  top: -100px; right: -60px;
}
.cta-band::after {
  width: 280px; height: 280px;
  background: #5C4A6B;
  bottom: -100px; left: -40px;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
  text-wrap: balance;
}
.cta-title em {
  font-style: italic;
  color: var(--c-soft-rose);
}
.cta-lede {
  margin-top: 14px;
  color: rgba(255,255,255,.85);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 540px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
}

/* ============================================================
   Eventos
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.event-card:hover {
  border-color: rgba(91,26,142,.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.event-date {
  width: 72px;
  text-align: center;
  padding: 14px 6px;
  background: var(--c-primary-50);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.event-day {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-primary);
}
.event-month {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: 4px;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.event-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 999px;
}
.event-tag-online { background: rgba(92, 74, 107, .12); color: var(--c-primary); }
.event-tag-presencial { background: rgba(184, 117, 95, .14); color: #8E5A3A; }
.event-tag-hibrido { background: rgba(201, 167, 123, .22); color: #8E6E3A; }

.event-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 4px;
  text-wrap: balance;
}
.event-desc {
  font-size: 14.5px;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.event-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.event-speakers {
  display: inline-flex;
  align-items: center;
}
.event-speakers > span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.event-speakers > span:first-child { margin-left: 0; }
.event-speakers .more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-ink);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
}

/* ============================================================
   Depoimentos
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  border: 1px solid var(--c-line);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 0.5;
  color: var(--c-accent);
  height: 36px;
  letter-spacing: -0.04em;
  opacity: .7;
}
.testimonial blockquote {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--c-ink-2);
  font-weight: 500;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial figcaption strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-ink);
}
.testimonial-role {
  display: block;
  font-size: 12.5px;
  color: var(--c-muted);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #1F1B2D;
  color: #C8C2D2;
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,117,95,.16), transparent 70%);
  top: -200px; right: -100px;
  filter: blur(60px);
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand-footer .brand-text .brand-para { color: #fff; }
.footer-tag {
  margin-top: 14px;
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  max-width: 340px;
  line-height: 1.55;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--c-accent); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-col a:hover { color: var(--c-accent); }

.footer-news p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-form {
  display: flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 4px;
  align-items: center;
}
.footer-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.footer-form input::placeholder { color: rgba(255,255,255,.45); }
.footer-form button {
  padding: 10px 18px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  transition: transform .2s, background .2s;
}
.footer-form button:hover { transform: translateY(-1px); background: #A0644F; }

.footer-bottom {
  position: relative;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom a { transition: color .15s; }
.footer-bottom a:hover { color: var(--c-accent); }

/* ============================================================
   Parceiros
   ============================================================ */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
  padding: 8px 0;
}
.partners-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: .7;
  transition: opacity .2s;
}
.partners-strip a:hover { opacity: 1; }
.partners-strip img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { justify-self: center; max-width: 420px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-card + .counter-card::before { display: none; }
  .counters-grid .counter-card:nth-child(2)::before,
  .counters-grid .counter-card:nth-child(4)::before {
    content: "";
    position: absolute;
    left: 0; top: 12px; bottom: 12px;
    width: 1px;
    background: var(--c-line);
    display: block;
  }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-self: start; }
}

@media (max-width: 1024px) {
  .nav-list { gap: 2px; }
  .nav-link { padding: 8px 10px; font-size: 14px; }
  .nav { gap: 18px; }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }
  .header-inner {
    height: auto;
    min-height: var(--header-h);
    flex-wrap: wrap;
  }
  .nav {
    order: 3;
    flex-basis: 100%;
    position: static;
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    padding: 0;
    gap: 16px;
    box-shadow: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-top: 1px solid transparent;
    transition: max-height .3s ease, visibility 0s .3s;
  }
  .nav.is-open {
    max-height: 600px;
    padding-top: 16px;
    padding-bottom: 20px;
    border-top-color: var(--c-line);
    visibility: visible;
    transition: max-height .3s ease, visibility 0s 0s;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-link {
    padding: 12px 14px;
    font-size: 15.5px;
    border-radius: var(--radius);
  }
  .nav-cta {
    border-top: 1px solid var(--c-line);
    padding-top: 16px;
    flex-direction: row;
  }
  .nav-cta .btn { flex: 1; }
  .menu-toggle { display: inline-flex; }

  .hero { padding: 40px 0 80px; }
  .hero-title { font-size: clamp(34px, 8vw, 48px); }
  .section { padding: 64px 0; }
  .section-head {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "sub" "link";
    gap: 12px;
    margin-bottom: 28px;
  }
  .section-head .section-link { justify-self: start; padding-left: 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .event-card {
    grid-template-columns: auto 1fr;
    gap: 16px 18px;
  }
  .event-side {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { padding: 32px 0 64px; }
  .hero-stat-card { left: 50%; transform: translateX(-50%) rotate(-3deg); }
  .counters { margin-top: -28px; padding-bottom: 40px; }
  .counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 20px;
  }
  .counter-card { padding: 6px; }
  .counter-num { font-size: 30px; }
  .counter-card + .counter-card::before { display: none !important; }
  .counters-grid .counter-card:nth-child(2)::before,
  .counters-grid .counter-card:nth-child(4)::before { display: none !important; }
  .section { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom ul { justify-content: center; }
  .testimonial { padding: 28px 22px 22px; }
  .cta-band { padding: 56px 0; }
  .partners-strip { gap: 20px 28px; }
  .partners-strip img { max-height: 44px; max-width: 110px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
