/* ══════════════════════════════════════════════════════════
   SIMPLISERVICE — style.css  ·  Premium Edition v4
   ══════════════════════════════════════════════════════════ */

/* ─ RESET ─ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ─ TOKENS ─ */
:root {
  --red: #c85032;
  --red-dark: #9e3e26;
  --red-bright: #e05a38;
  --red-glow: rgba(200, 80, 50, 0.22);
  --red-soft: rgba(200, 80, 50, 0.07);
  --red-mid: rgba(200, 80, 50, 0.14);
  --gold: #c9a84c;
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --bg4: #1a1a1a;
  --glass: rgba(14, 14, 14, 0.72);
  --border: rgba(255, 255, 255, 0.06);
  --border2: rgba(255, 255, 255, 0.11);
  --border-hot: rgba(200, 80, 50, 0.35);
  --txt: #ede8e1;
  --txt2: #8a847e;
  --txt3: #524e4a;
  --font-d: "Cormorant Garamond", Georgia, serif;
  --font-b: "Outfit", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --circ: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 2px;
}

/* ─ BODY ─ */
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─ SCROLLBAR ─ */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}
::selection {
  background: var(--red);
  color: #fff;
}

/* ══════════════════════════════════════
   CURSOR
   ══════════════════════════════════════ */
.ss-cursor {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s var(--spring),
    height 0.35s var(--spring),
    background 0.2s,
    opacity 0.3s,
    border-color 0.25s;
}
.ss-cursor::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(200, 80, 50, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.ss-cursor.grow {
  width: 48px;
  height: 48px;
  background: rgba(200, 80, 50, 0.08);
  border-color: var(--red);
}
.ss-cursor.grow::after {
  opacity: 1;
}
@media (max-width: 768px) {
  .ss-cursor {
    display: none;
  }
}

/* ══════════════════════════════════════
   PLATAFORMA DE ENSINO
   ══════════════════════════════════════ */
.platform-showcase {
  --platform-paper: #f8f4ef;
  --platform-ink: #181513;
  --platform-muted: #6f655d;
  --platform-line: rgba(24, 21, 19, 0.12);
  --glass: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  padding: 150px var(--pad) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 80, 50, 0.16), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(201, 168, 76, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--platform-paper) 55%, #f3eee8 100%);
  color: var(--platform-ink);
}
.platform-wrap {
  position: relative;
  z-index: 2;
  max-width: min(1380px, calc(100vw - 56px));
  margin: 0 auto;
}
.platform-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(24, 21, 19, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 19, 0.02) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
}
.platform-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}
.platform-orb.orb-a {
  width: 420px;
  height: 420px;
  top: 70px;
  right: -120px;
  background: radial-gradient(circle, rgba(200, 80, 50, 0.2) 0%, rgba(200, 80, 50, 0.04) 42%, transparent 70%);
  animation: platformFloatA 9s ease-in-out infinite;
}
.platform-orb.orb-b {
  width: 340px;
  height: 340px;
  bottom: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.04) 42%, transparent 70%);
  animation: platformFloatB 11s ease-in-out infinite;
}
.platform-head {
  display: block;
}
.platform-tag {
  color: rgba(24, 21, 19, 0.6);
}
.platform-copy h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--platform-ink);
}
.platform-copy h1 em {
  font-style: italic;
  color: var(--red);
}
.platform-copy > p {
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--platform-muted);
}
.platform-lead {
  margin-top: 28px;
  max-width: 620px;
  padding: 22px 24px;
  border: 1px solid rgba(200, 80, 50, 0.16);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(200, 80, 50, 0.06));
  box-shadow: 0 30px 80px rgba(60, 36, 20, 0.08);
}
.platform-lead strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.platform-lead span {
  display: block;
  color: var(--platform-ink);
  line-height: 1.8;
}
.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.platform-outline {
  color: var(--platform-ink);
  border-color: rgba(24, 21, 19, 0.16);
  background: rgba(255, 255, 255, 0.75);
}
.platform-outline:hover {
  border-color: rgba(200, 80, 50, 0.35);
  background: rgba(200, 80, 50, 0.06);
  color: var(--red);
}
.platform-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.platform-kpi {
  min-height: 130px;
  padding: 22px 20px;
  border-radius: 26px;
  border: 1px solid var(--platform-line);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(60, 36, 20, 0.05);
}
.platform-kpi strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.62rem, 2.7vw, 2.28rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--platform-ink);
  margin-bottom: 8px;
}
.platform-kpi span {
  display: block;
  font-family: var(--font-b);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.62;
  color: #7b726b;
  font-size: 0.89rem;
}
.platform-stage {
  --mx: 0px;
  --my: 0px;
  position: relative;
  margin-top: 36px;
  min-height: 660px;
  perspective: 1400px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(24, 21, 19, 0.12);
  background:
    radial-gradient(circle at 12% 105%, rgba(201, 168, 76, 0.18), transparent 35%),
    linear-gradient(120deg, #111111 0%, #171717 55%, #1d1612 100%);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.22);
}
.platform-stage-glow {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%),
    radial-gradient(circle at 80% 20%, rgba(200, 80, 50, 0.18), transparent 36%);
  z-index: 1;
}
.platform-media,
.platform-float {
  transition:
    transform 0.55s var(--spring),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease);
  will-change: transform;
}
.platform-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #050505;
  z-index: 0;
}
.platform-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.platform-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 82%, rgba(0, 0, 0, 0.3), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.44) 100%);
  pointer-events: none;
}
.media-main {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--mx) * -0.02), calc(var(--my) * -0.02), 0) scale(1.01);
  z-index: 0;
}
.media-secondary {
  width: min(48%, 560px);
  height: 180px;
  right: 24px;
  bottom: 24px;
  left: auto;
  top: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 1;
  transform: translate3d(calc(var(--mx) * -0.03), calc(var(--my) * -0.01), 0);
}
.media-secondary::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.38) 100%);
}
.media-dark {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.media-dark::after {
  background:
    radial-gradient(140% 80% at 20% 10%, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.72) 90%);
}
.platform-nr1-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: min(56%, 620px);
  padding: 24px 26px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.72), rgba(20, 12, 8, 0.64));
  color: #fff;
  backdrop-filter: blur(10px) saturate(1.06);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.platform-nr1-card h3 {
  margin: 6px 0 8px;
  font-size: 1.2rem;
  font-family: var(--font-d);
}
.platform-nr1-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.96rem;
}
.platform-nr1-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.platform-nr1-tags span {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  color: #fff;
}
.media-side {
  left: 22px;
  bottom: 72px;
  width: min(72%, 420px);
  height: 290px;
  transform: translate3d(calc(var(--mx) * 0.045), calc(var(--my) * 0.04), 0) rotateY(calc(var(--mx) * 0.01deg));
}
.platform-float {
  position: absolute;
  width: min(340px, 34%);
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(200, 80, 50, 0.14);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 65px rgba(60, 36, 20, 0.1);
  backdrop-filter: blur(16px);
  z-index: 3;
}
.platform-float.glassy {
  background: var(--glass);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}
.platform-float-label,
.platform-mini {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(24, 21, 19, 0.48);
  margin-bottom: 12px;
}
.platform-float strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.6rem;
  line-height: 1.04;
  color: var(--platform-ink);
  margin-bottom: 10px;
}
.platform-float p {
  color: var(--platform-muted);
  line-height: 1.65;
  font-size: 0.94rem;
}
.float-access {
  top: 24px;
  right: 24px;
  left: auto;
  transform: translate3d(calc(var(--mx) * -0.03), calc(var(--my) * 0.02), 0);
  animation: platformCardFloat 8s ease-in-out infinite;
}
.float-benefit {
  right: 24px;
  bottom: 218px;
  transform: translate3d(calc(var(--mx) * -0.04), calc(var(--my) * 0.02), 0);
  animation: platformCardFloat 9.5s ease-in-out infinite reverse;
}
.platform-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 55%);
  opacity: 0.45;
  pointer-events: none;
}
.platform-showcase .btn-outline {
  color: var(--platform-ink) !important;
  border-color: rgba(24, 21, 19, 0.2) !important;
  background: rgba(255, 255, 255, 0.94) !important;
}
.platform-showcase .btn-outline:hover {
  color: var(--red) !important;
  border-color: rgba(200, 80, 50, 0.4) !important;
  background: rgba(200, 80, 50, 0.08) !important;
}
.platform-actions .btn-outline {
  color: var(--platform-ink) !important;
  border-color: rgba(24, 21, 19, 0.25) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
}
.platform-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 82px;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.platform-band {
  position: relative;
  width: 100vw;
  left: auto;
  right: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 56px;
  padding: 40px 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(200, 80, 50, 0.2), transparent 38%),
    radial-gradient(circle at 18% 120%, rgba(201, 168, 76, 0.13), transparent 40%),
    linear-gradient(180deg, #0b0b0b 0%, #060606 58%, #030303 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 28px 60px rgba(0, 0, 0, 0.42),
    inset 0 -24px 54px rgba(0, 0, 0, 0.48);
}
.platform-band-inner {
  width: min(1120px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
.nr1-priority-band {
  margin-top: 10px;
  padding: 34px 0 24px;
}
.nr1-priority-band .platform-band-inner {
  width: min(1240px, calc(100vw - 56px));
}
.nr1-priority-cta {
  margin-top: 0;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.nr1-priority-cta::after {
  display: none;
}
.nr1-priority-cta .platform-mini {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.18em;
}
.nr1-priority-cta h2 {
  max-width: 860px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.02;
}
.nr1-priority-cta .platform-cta-copy {
  max-width: 820px;
}
.nr1-priority-kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.nr1-priority-kpis article {
  padding: 8px 0 8px 14px;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}
.nr1-priority-kpis strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.nr1-priority-kpis span {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.nr1-priority-cta .platform-cta-mark {
  width: auto;
  min-height: 0;
  padding: 0 0 6px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.nr1-priority-cta .platform-cta-mark strong {
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--red);
  letter-spacing: 0.03em;
}
.nr1-priority-band + .trail-section {
  padding-top: 78px;
}
.platform-panel {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: none;
}
.platform-story::before {
  display: none;
}
.platform-story:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.platform-panel-head h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  line-height: 1.04;
  color: var(--platform-ink);
  margin-bottom: 22px;
}
.platform-story > p {
  color: var(--platform-muted);
  line-height: 1.9;
  font-size: 1.08rem;
  max-width: 1080px;
  margin-bottom: 28px;
}
.platform-points {
  display: grid;
  gap: 16px;
}
.platform-point {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 22px 30px;
  border: 1px solid rgba(24, 21, 19, 0.1);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.36));
  border-radius: 20px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 0.32s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}
.platform-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background:
    linear-gradient(180deg, rgba(200, 80, 50, 0.34), rgba(200, 80, 50, 0.06));
  transform: translateX(-32px);
  transition: transform 0.32s var(--ease), opacity 0.28s var(--ease);
  opacity: 0.58;
}
.platform-point::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(200, 80, 50, 0.12), rgba(200, 80, 50, 0.01) 52%, transparent 76%);
  opacity: 0;
  transform: translateX(-10%);
  transition: opacity 0.28s var(--ease), transform 0.32s var(--ease);
  pointer-events: none;
}
.platform-point:hover {
  transform: translateX(6px);
  border-color: rgba(200, 80, 50, 0.28);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
  box-shadow:
    0 12px 24px rgba(38, 20, 10, 0.09),
    0 0 0 1px rgba(200, 80, 50, 0.12);
}
.platform-point:hover::before {
  transform: translateX(0);
}
.platform-point:hover::after {
  opacity: 0.65;
  transform: translateX(0);
}
.platform-point strong {
  display: block;
  color: var(--platform-ink);
  margin-bottom: 8px;
  transition: color 0.25s var(--ease), transform 0.3s var(--ease);
}
.platform-point:hover strong {
  color: #1f1712;
  transform: translateX(3px);
}
.platform-point span {
  color: var(--platform-muted);
  line-height: 1.7;
  font-size: 0.98rem;
  transition: transform 0.3s var(--ease), color 0.25s var(--ease);
}
.platform-point:hover span {
  transform: translateX(3px);
  color: #5a524b;
}
.platform-modules {
  display: grid;
  gap: 14px;
}
.platform-module {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(24, 21, 19, 0.1);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 0.35s var(--spring),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.platform-module:hover,
.platform-module.is-active {
  transform: translateY(-4px);
  border-color: rgba(200, 80, 50, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(200, 80, 50, 0.08));
  box-shadow: 0 18px 38px rgba(56, 34, 21, 0.08);
}
.platform-module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #161311;
  color: #fff;
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.platform-module h3 {
  font-size: 1.15rem;
  color: var(--platform-ink);
  margin-bottom: 8px;
}
.platform-module p {
  color: var(--platform-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}
.platform-cta {
  margin-top: 30px;
  padding: 34px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(200, 80, 50, 0.16);
  background:
    radial-gradient(circle at top right, rgba(200, 80, 50, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 232, 0.92));
  box-shadow: 0 28px 80px rgba(51, 31, 18, 0.08);
}
.platform-band .platform-cta {
  margin-top: 0;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.platform-cta h2 {
  max-width: 700px;
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  color: var(--platform-ink);
}
.platform-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.platform-cta-nr1 {
  position: relative;
  overflow: hidden;
  border: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(200, 80, 50, 0.24), transparent 36%),
    radial-gradient(circle at 16% 110%, rgba(201, 168, 76, 0.18), transparent 38%),
    linear-gradient(135deg, #080808 0%, #0d0d0d 52%, #170d08 100%);
  box-shadow:
    0 36px 94px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.platform-cta-nr1::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 38%, transparent 55%);
  transform: translateX(-100%);
  animation: nr1Sweep 6.5s ease-in-out infinite;
  pointer-events: none;
}
.platform-cta-nr1 .platform-mini {
  color: rgba(255, 255, 255, 0.56);
}
.platform-cta-nr1 h2 {
  max-width: 760px;
  color: #fff;
}
.platform-cta-core {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.platform-cta-core .nr1-highlight {
  color: var(--red);
  font-family: var(--font-b);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}
.platform-cta-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-top: 14px;
}
.platform-cta-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.platform-cta-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.26s var(--spring),
    color 0.26s var(--ease),
    border-color 0.26s var(--ease),
    background 0.26s var(--ease),
    box-shadow 0.32s var(--ease);
}
.platform-cta-tags span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(200, 80, 50, 0.28), rgba(255, 255, 255, 0.06));
  opacity: 0;
  transition: opacity 0.26s var(--ease);
  z-index: -1;
}
.platform-cta-tags span:hover,
.platform-cta-tags span:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(200, 80, 50, 0.78);
  background: rgba(200, 80, 50, 0.16);
  box-shadow:
    0 0 0 1px rgba(200, 80, 50, 0.28),
    0 0 16px rgba(200, 80, 50, 0.52),
    0 0 34px rgba(200, 80, 50, 0.28);
}
.platform-cta-tags span:hover::before,
.platform-cta-tags span:focus-visible::before {
  opacity: 1;
}
.platform-cta-tags span:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(200, 80, 50, 0.24),
    0 0 10px rgba(200, 80, 50, 0.36);
}
.platform-cta-side {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  justify-items: end;
}
.platform-cta-mark {
  width: 182px;
  min-height: 146px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(200, 80, 50, 0.45);
  background:
    radial-gradient(circle at 78% 24%, rgba(200, 80, 50, 0.24), transparent 48%),
    rgba(0, 0, 0, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.3);
}
.platform-cta-mark small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.64rem;
  margin-bottom: 8px;
}
.platform-cta-mark strong {
  display: block;
  color: #fff;
  font-family: var(--font-b);
  font-size: 2.4rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
}
.platform-cta .btn-outline {
  color: var(--platform-ink) !important;
  border-color: rgba(24, 21, 19, 0.24) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
}
.platform-cta .btn-outline:hover {
  color: var(--red) !important;
  border-color: rgba(200, 80, 50, 0.45) !important;
  background: rgba(200, 80, 50, 0.08) !important;
}
.platform-cta-nr1 .btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.36) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
.platform-cta-nr1 .btn-outline:hover {
  color: var(--red) !important;
  border-color: rgba(200, 80, 50, 0.65) !important;
  background: rgba(200, 80, 50, 0.12) !important;
}
@keyframes platformFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-18px, 24px, 0); }
}
@keyframes platformFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(20px, -16px, 0); }
}
@keyframes platformCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes platformGlassSweep {
  0% { transform: translateX(-120%); opacity: 0; }
  18% { opacity: 0.52; }
  45% { transform: translateX(130%); opacity: 0.22; }
  100% { transform: translateX(130%); opacity: 0; }
}
@keyframes nr1Sweep {
  0% { transform: translateX(-120%); opacity: 0; }
  20% { opacity: 0.6; }
  50% { transform: translateX(110%); opacity: 0.35; }
  100% { transform: translateX(110%); opacity: 0; }
}
@media (max-width: 1100px) {
  .platform-head,
  .platform-lower,
  .platform-cta {
    grid-template-columns: 1fr;
  }
  .platform-band {
    margin-top: 44px;
    padding: 34px 0;
  }
  .platform-band-inner {
    width: min(980px, calc(100vw - 40px));
  }
  .nr1-priority-band {
    margin-top: 4px;
    padding: 28px 0 16px;
  }
  .nr1-priority-band .platform-band-inner {
    width: min(1040px, calc(100vw - 28px));
  }
  .nr1-priority-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .platform-stage {
    min-height: 620px;
  }
}
@media (max-width: 768px) {
  .platform-showcase {
    padding: 120px 20px 0;
  }
  .platform-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
  .platform-kpis {
    grid-template-columns: 1fr;
  }
  .platform-stage {
    min-height: 0;
    display: grid;
    gap: 12px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .platform-band {
    margin-top: 24px;
    padding: 16px 0;
  }
  .nr1-priority-band {
    margin-top: 0;
    padding: 14px 0 8px;
  }
  .platform-band-inner {
    width: calc(100vw - 16px);
    padding: 0;
  }
  .nr1-priority-cta {
    padding: 6px 0;
    border-radius: 0;
  }
  .nr1-priority-cta h2 {
    font-size: clamp(1.9rem, 10.4vw, 2.6rem);
  }
  .nr1-priority-kpis {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .nr1-priority-kpis article {
    padding: 8px 0 8px 12px;
    border-radius: 0;
  }
  .nr1-priority-kpis strong {
    font-size: 0.86rem;
  }
  .nr1-priority-kpis span {
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .nr1-priority-band + .trail-section {
    padding-top: 56px;
  }
  .platform-stage-glow,
  .platform-orb,
  .platform-float::after {
    display: none;
  }
  .platform-media,
  .platform-float {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    animation: none;
    transform: none !important;
  }
  .media-main {
    order: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  }
  .platform-media::after {
    background:
      radial-gradient(circle at 20% 82%, rgba(0, 0, 0, 0.22), transparent 44%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.38) 100%);
  }
  .platform-nr1-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(8, 8, 8, 0.76), rgba(24, 13, 9, 0.68));
  }
  .platform-nr1-card h3 {
    font-size: 1.05rem;
    margin: 6px 0 8px;
  }
  .platform-nr1-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .platform-nr1-tags span {
    padding: 5px 9px;
    font-size: 0.72rem;
  }
  .float-access {
    order: 2;
    border-radius: 18px;
    padding: 16px 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 21, 19, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }
  .float-access strong {
    font-size: 1.24rem;
    line-height: 1.12;
  }
  .float-access p {
    font-size: 0.9rem;
    line-height: 1.58;
  }
  .media-secondary,
  .float-benefit {
    display: none;
  }
  .media-secondary {
    order: 2;
    width: 100%;
    height: auto;
    border-radius: 18px;
  }
  .media-secondary img {
    aspect-ratio: 16 / 7;
  }
  .platform-media img {
    aspect-ratio: 16 / 10;
  }
  .platform-panel,
  .platform-cta {
    padding: 24px 18px;
    border-radius: 28px;
  }
  .platform-panel.platform-story {
    padding: 0;
    border-radius: 0;
  }
  .platform-panel-head h2 {
    font-size: clamp(2.05rem, 9vw, 3.1rem);
  }
  .platform-story > p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .platform-point {
    padding: 18px 16px 18px 18px;
  }
  .platform-point:hover {
    transform: translateX(3px);
  }
  .platform-point:hover strong,
  .platform-point:hover span {
    transform: translateX(2px);
  }
  .platform-band .platform-cta {
    width: 100%;
  }
  .platform-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .platform-cta-nr1 h2 {
    font-size: clamp(1.95rem, 10.8vw, 2.7rem);
    line-height: 1.08;
  }
  .platform-cta-copy {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .platform-cta-tags {
    gap: 8px;
  }
  .platform-cta-tags span {
    font-size: 0.7rem;
    padding: 7px 10px;
  }
  .platform-cta-side {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
  }
  .platform-cta-mark {
    width: 100%;
    min-height: 118px;
    padding: 14px 16px;
  }
  .platform-cta-mark strong {
    font-size: 2.1rem;
  }
  .platform-cta-core {
    width: 100%;
    border-radius: 0;
    padding: 0;
  }
  .platform-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: stretch;
  }
  .platform-cta-nr1 .platform-cta-actions {
    justify-content: stretch;
  }
  .platform-cta-nr1 .platform-cta-actions a {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    padding-inline: 14px;
  }
  .platform-module {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }
  .platform-module-index {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

@media (max-width: 520px) {
  .platform-nr1-card {
    padding: 12px 12px 10px;
  }
  .platform-nr1-card h3 {
    font-size: 0.98rem;
    margin: 4px 0 6px;
  }
  .platform-nr1-card p {
    display: none;
  }
  .platform-nr1-tags {
    margin-top: 8px;
  }
  .platform-nr1-tags span {
    padding: 4px 8px;
    font-size: 0.66rem;
  }
  .float-access strong {
    font-size: 1.12rem;
  }
}

/* ══════════════════════════════════════
   LOADER
   ══════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}
.loader-logo {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.l-simpli {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--txt3);
  text-transform: uppercase;
}
.l-service {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.15em;
}
.loader-ring {
  width: 200px;
  height: 200px;
  animation: ringRotate 2.4s linear infinite;
}
#loaderArc {
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════
   NAV — VIDRO FUMÊ
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0 var(--pad);
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(24px) saturate(1.6) brightness(0.88);
  -webkit-backdrop-filter: blur(24px) saturate(1.6) brightness(0.88);
  border-bottom: 1px solid rgba(200, 80, 50, 0.1);
  box-shadow:
    0 1px 0 rgba(200, 80, 50, 0.08),
    0 4px 32px rgba(0, 0, 0, 0.4);
  transition:
    background 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
}
.nav.stuck {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(32px) saturate(1.8) brightness(0.82);
  -webkit-backdrop-filter: blur(32px) saturate(1.8) brightness(0.82);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 0 rgba(200, 80, 50, 0.2),
    0 8px 40px rgba(0, 0, 0, 0.55);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.logo-img:hover {
  opacity: 0.8;
}
.nav-items {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.35s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--txt);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border-hot);
  color: var(--red) !important;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
  flex-shrink: 0;
}
.nav-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff !important;
  transform: translateY(-1px);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--txt);
  transition:
    transform 0.35s,
    opacity 0.35s;
}
.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-mob {
  display: none;
  flex-direction: column;
  padding: 0 var(--pad);
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease),
    padding 0.5s var(--ease);
}
.nav-mob.open {
  max-height: 400px;
  padding-bottom: 28px;
  padding-top: 16px;
}
.mob-item {
  display: block;
  padding: 14px 0;
  font-size: 0.8rem;
  color: #ffff;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.mob-item:hover {
  color: var(--red);
}
.mob-item.cta {
  color: var(--red);
  margin-top: 16px;
  border-bottom: none;
  font-weight: 400;
}

/* ══════════════════════════════════════
   HOME EDITORIAL
   ══════════════════════════════════════ */
.home-editorial {
  position: relative;
  overflow: hidden;
  padding: 138px var(--pad) 74px;
  background:
    radial-gradient(circle at 82% 16%, rgba(200, 80, 50, 0.18), transparent 36%),
    radial-gradient(circle at 12% 108%, rgba(201, 168, 76, 0.12), transparent 40%),
    linear-gradient(180deg, #070707 0%, #040404 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.home-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.22;
  pointer-events: none;
}
.home-wrap {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
}
.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(214, 108, 72, 0.94);
  margin-bottom: 22px;
}
.home-kicker-line {
  width: 28px;
  height: 1px;
  background: rgba(214, 108, 72, 0.82);
}
.home-copy h1 {
  font-family: var(--font-d);
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f2ede8;
  margin-bottom: 24px;
}
.home-copy h1 em {
  font-style: italic;
  color: #d8683d;
}
.home-copy p {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(237, 232, 225, 0.74);
  max-width: 620px;
}
.home-copy p + p {
  margin-top: 14px;
}
.home-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.home-outline {
  color: #f2ede8 !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
.home-outline:hover {
  color: #fff !important;
  border-color: rgba(214, 108, 72, 0.58) !important;
  background: rgba(214, 108, 72, 0.16) !important;
}
.home-media {
  display: grid;
  gap: clamp(24px, 2.8vw, 36px);
}
.home-media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.home-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(214, 108, 72, 0.22);
  transform: translate(14px, 14px);
  pointer-events: none;
}
.home-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 56px);
  margin-top: 4px;
}
.home-stat {
  border-top: none;
  padding-top: 0;
}
.home-stat strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  font-weight: 500;
  color: #f2ede8;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.home-stat strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
}
.home-stat strong .suf {
  color: #d8683d;
  font-size: 0.62em;
  position: relative;
  top: -0.06em;
  margin-left: 4px;
}
.home-stat > span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 232, 225, 0.68);
}
@media (max-width: 1100px) {
  .home-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 768px) {
  .home-editorial {
    padding: 112px 20px 56px;
  }
  .home-kicker {
    margin-bottom: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }
  .home-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    margin-bottom: 18px;
  }
  .home-copy p {
    font-size: 0.95rem;
    line-height: 1.72;
  }
  .home-cta {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-cta a {
    width: 100%;
    justify-content: center;
  }
  .home-media {
    gap: 16px;
  }
  .home-media-frame::before {
    transform: translate(8px, 8px);
  }
  .home-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-stat strong {
    font-size: clamp(2.4rem, 13vw, 3.3rem);
    margin-bottom: 6px;
  }
  .home-stat > span {
    letter-spacing: 0.14em;
  }
}

/* ══════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow.center {
  display: flex;
  justify-content: center;
}
.eyebrow.center::before {
  display: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-d);
  font-weight: 400;
  line-height: 1.12;
}
h1 em,
h2 em,
h3 em {
  color: var(--red);
  font-style: italic;
}
.center {
  text-align: center;
}
.link-arrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    gap 0.25s,
    opacity 0.25s;
  white-space: nowrap;
}
.link-arrow:hover {
  gap: 12px;
  opacity: 0.8;
}

/* ─ BUTTONS ─ */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--red);
  color: #fff !important;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 80, 50, 0.4);
}
.btn-red:hover::before {
  opacity: 1;
}
.btn-red.small {
  padding: 10px 22px;
  font-size: 0.68rem;
}
.btn-red.large {
  padding: 17px 40px;
  font-size: 0.82rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border: 1px solid var(--border2);
  color: var(--txt) !important;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red) !important;
  background: var(--red-soft);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
}

/* ─ REVEAL ─ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px var(--pad) 80px;
  overflow: hidden;
  background-color: var(--bg);
}

/* Vídeo background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Overlay escuro sobre vídeo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.85) 0%,
    rgba(8, 8, 8, 0.7) 45%,
    rgba(8, 8, 8, 0.4) 70%,
    rgba(8, 8, 8, 0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px var(--pad) 80px;
  overflow: hidden;
  background-color: var(--bg);
}

/* vídeo principal */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.14) contrast(1.03) saturate(1.02);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* overlay principal */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.62) 0%,
    rgba(8, 8, 8, 0.46) 40%,
    rgba(8, 8, 8, 0.26) 72%,
    rgba(8, 8, 8, 0.14) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* brilho sutil */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 28% 50%,
    rgba(200, 80, 50, 0.035) 0%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
}

/* elementos acima do vídeo */
.hero-ss-card,
.hero-content,
.hero-stats,
.hero-scroll-hint {
  position: relative;
  z-index: 3;
}

/* ── HERO SS CARD — igual LBE, tamanho correto ── */
.hero-ss-card {
  position: absolute;
  right: clamp(382px, 2vw, 32px);
  top: 50%;
  transform: translateY(-50%) translateY(30px);
  z-index: 5;
  width: clamp(280px, 28vw, 360px);
  background: rgba(8, 7, 5, 0.92);
  border: 1px solid rgba(200, 80, 50, 0.25);
  border-radius: 3px;
  padding: 22px;
  box-shadow:
    0 0 60px rgba(200, 80, 50, 0.14),
    0 0 120px rgba(200, 80, 50, 0.07),
    0 24px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  opacity: 0;
  transition:
    opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.4s cubic-bezier(0.34, 1.06, 0.64, 1);
}

.hero-ss-card.visible {
  opacity: 1;
  transform: translateY(-50%);
}

/* Neon interno */
.hsc-neon {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 55% at 50% 80%,
    rgba(200, 80, 50, 0.1) 0%,
    transparent 70%
  );
}

/* Cantos decorativos */
.hsc-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--red);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.hsc-tl {
  top: 10px;
  left: 10px;
  border-width: 1.5px 0 0 1.5px;
}

.hsc-tr {
  top: 10px;
  right: 10px;
  border-width: 1.5px 1.5px 0 0;
}

.hsc-bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 1.5px 1.5px;
}

.hsc-br {
  bottom: 10px;
  right: 10px;
  border-width: 0 1.5px 1.5px 0;
}

/* Área da logo */
.hsc-logo-area {
  position: relative;
  width: 100%;
  background: rgba(238, 233, 224, 0.96);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  -webkit-mask-image: radial-gradient(
    ellipse 94% 90% at 50% 50%,
    black 50%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 94% 90% at 50% 50%,
    black 50%,
    transparent 100%
  );
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.07),
    0 0 30px rgba(200, 80, 50, 0.08);
}

.hsc-logo {
  width: 82%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.14));
}

/* Badge premium */
.hsc-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  z-index: 6;
  width: 88px;
  height: 88px;
  background: rgba(8, 7, 5, 0.97);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.hsc-badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 80, 50, 0.55);
  box-shadow:
    0 0 18px rgba(200, 80, 50, 0.28),
    inset 0 0 10px rgba(200, 80, 50, 0.06),
    0 0 0 6px rgba(8, 7, 5, 0.88);
}

.hsc-badge-ring-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(200, 80, 50, 0.2);
}

.hsc-badge-star {
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 14px rgba(200, 80, 50, 0.7);
  position: relative;
  z-index: 1;
}

.hsc-badge-txt {
  font-size: 0.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 80, 50, 0.8);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-right: clamp(320px, 34vw, 440px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 32px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: tagPulse 2.8s ease infinite;
}

@keyframes tagPulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 var(--red-glow);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 7px transparent;
  }
}

.tag-sep {
  color: var(--txt3);
  opacity: 0.3;
}

.hero-h1 {
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--txt);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.85;
  margin-bottom: 52px;
  font-weight: 300;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
}

/* STATS */
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 56px 0 0;
}

.hstat:first-child {
  padding-left: 0;
}

.hstat:last-child {
  padding-right: 0;
}

.hstat strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-d);
  font-size: clamp(3.6rem, 6.5vw, 6.4rem);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hstat strong .suf {
  font-size: 0.5em;
  font-weight: 300;
  opacity: 0.7;
}

.hstat-label {
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  margin-bottom: 22px;
}

.hstat-bar {
  height: 1px;
  background: var(--border);
  margin-top: auto;
  overflow: hidden;
  position: relative;
}

.hstat-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--red), transparent);
  transition: width 2.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hstat.counting .hstat-bar-fill {
  width: 100%;
}

.hstat-div {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    transparent
  );
  flex-shrink: 0;
  margin: 0 56px;
  align-self: stretch;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.sh-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: shDrop 2.2s ease infinite;
}

@keyframes shDrop {
  0% {
    opacity: 0;
    transform: scaleY(0.2) translateY(-40px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1) translateY(0);
  }
}

.hero-scroll-hint span {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  writing-mode: vertical-rl;
}

/* HERO RESPONSIVO */
@media (max-width: 1200px) {
  .hero-content {
    padding-right: clamp(280px, 30vw, 360px);
  }

  .hero-ss-card {
    width: clamp(240px, 26vw, 320px);
    right: clamp(24px, 4vw, 60px);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 120px var(--pad) 72px;
  }

  .hero-content {
    padding-right: 0;
    max-width: 760px;
  }

  .hero-ss-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 36px auto 0;
    width: min(100%, 360px);
  }

  .hero-ss-card.visible {
    transform: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 28px;
    padding-top: 44px;
  }

  .hstat {
    padding: 0;
  }

  .hstat-div {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 110px 20px 56px;
  }

  .hero-video-bg {
    object-position: center center;
    filter: brightness(1.08) contrast(1.02) saturate(1);
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.68) 0%,
      rgba(8, 8, 8, 0.52) 45%,
      rgba(8, 8, 8, 0.38) 100%
    );
  }

  .hero::after {
    background: radial-gradient(
      ellipse 90% 70% at 50% 30%,
      rgba(200, 80, 50, 0.025) 0%,
      transparent 70%
    );
  }

  .hero-tag {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }

  .hero-h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
    margin-bottom: 18px;
  }

  .hero-p {
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 44px;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .hero-ss-card {
    margin-top: 28px;
    padding: 18px;
  }

  .hsc-logo-area {
    padding: 28px 22px;
  }

  .hsc-badge {
    width: 74px;
    height: 74px;
    bottom: -16px;
    right: -12px;
  }

  .hstat strong {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hstat-label {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }
}
/* ══════════════════════════════════════
   TRILHA TIMELINE
   ══════════════════════════════════════ */
.trail-section {
  padding: 94px var(--pad);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.trail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
.trail-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 62px;
  position: relative;
  z-index: 1;
}
.trail-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.trail-eyebrow::before,
.trail-eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}
.trail-header h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 300;
  color: var(--txt);
  margin-bottom: 14px;
}
.trail-sub {
  font-size: 0.88rem;
  color: #ffff;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}
.trail-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.tl-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}
.tl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--red), var(--red-bright));
  transition: height 0.06s linear;
  box-shadow: 0 0 12px rgba(200, 80, 50, 0.5);
}
.tl-spark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 4px rgba(200, 80, 50, 0.2),
    0 0 20px rgba(200, 80, 50, 0.6);
  top: 0;
  transition: top 0.06s linear;
  opacity: 0;
  z-index: 2;
}
.tl-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 20px 0;
  z-index: 1;
}
.tl-right {
  flex-direction: row;
  justify-content: flex-start;
}
.tl-left {
  flex-direction: row;
  justify-content: flex-end;
}
.tl-center {
  flex-direction: column;
  align-items: center;
  padding: 28px 0 0;
}
.tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  z-index: 3;
  flex-shrink: 0;
}
.tl-dot span {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid rgba(200, 80, 50, 0.2);
  transition:
    border-color 0.5s,
    background 0.5s,
    box-shadow 0.5s;
}
.tl-row.lit .tl-dot span {
  border-color: var(--red);
  background: var(--red);
  box-shadow:
    0 0 0 5px rgba(200, 80, 50, 0.12),
    0 0 16px rgba(200, 80, 50, 0.4);
}
.tl-dot-final span {
  width: 30px;
  height: 30px;
  margin: -4px;
}
.tcard {
  width: calc(50% - 46px);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 22px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.tl-right .tcard {
  margin-left: calc(50% + 36px);
}
.tl-left .tcard {
  margin-right: calc(50% + 36px);
}
.tl-row.lit .tcard {
  opacity: 1;
  transform: translateY(0);
}
.tcard:hover {
  border-color: var(--border-hot);
  box-shadow: 0 0 40px rgba(200, 80, 50, 0.06);
}
.tcard-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(200, 80, 50, 0.1);
  line-height: 1;
  margin-bottom: 2px;
}
.tcard h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 8px;
}
.tcard p {
  font-size: 0.8rem;
  color: #ffff;
  line-height: 1.55;
  margin-bottom: 10px;
}
.tcard-tag {
  display: inline-block;
  padding: 2px 9px;
  background: var(--red-soft);
  border: 1px solid rgba(200, 80, 50, 0.18);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-radius: 2px;
}
.tcard-final-center {
  width: 360px;
  text-align: center;
  border-color: var(--border-hot);
  margin-top: 18px;
}
.tcard-final-center h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: var(--txt);
}
.tcard-final-center p {
  font-size: 0.8rem;
  color: var(--txt2);
  margin-bottom: 16px;
}
.trail-neon-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ══════════════════════════════════════
   SERVICES HIGHLIGHT — PREMIUM CARDS V4
   ══════════════════════════════════════ */
.services-highlight {
  padding: 100px var(--pad);
  background: var(--bg2);
}
.sh-wrap {
  max-width: var(--container);
  margin: 0 auto;
}
.sh-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}
.sh-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.fc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─ CARD BASE ─ */
.fc-card {
  position: relative;
  height: clamp(380px, 38vw, 540px);
  perspective: 1400px;
  cursor: pointer;
  border-radius: 3px;
  -webkit-tap-highlight-color: transparent;
}

/* Sparks canvas por card */
.fc-sparks-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  border-radius: 3px;
}

.fc-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.34, 1.06, 0.64, 1);
  border-radius: 3px;
}
@media (hover: hover) {
  .fc-card:hover .fc-inner {
    transform: rotateY(180deg);
  }
}
.fc-card.flipped .fc-inner {
  transform: rotateY(180deg);
}

.fc-front,
.fc-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
}

/* ─ FRENTE ─ */
.fc-front {
  background: linear-gradient(175deg, var(--bg3) 0%, #0a0908 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.fc-card:hover .fc-front,
.fc-card.flipped .fc-front {
  border-color: rgba(200, 80, 50, 0.25);
}

/* Borda neon superior no hover */
.fc-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.fc-card:hover .fc-border-glow {
  opacity: 1;
}

/* Área do ícone SVG */
.fc-icon-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px;
  overflow: hidden;
}

/* Glow radial atrás do ícone */
.fc-icon-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 80, 50, 0.14) 0%,
    transparent 70%
  );
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.fc-card:hover .fc-icon-glow {
  opacity: 1.4;
  transform: scale(1.2);
}

.fc-icon-svg {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
  transition:
    transform 0.4s var(--spring),
    filter 0.4s;
  filter: drop-shadow(0 0 8px rgba(200, 80, 50, 0.2));
}
.fc-card:hover .fc-icon-svg {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 0 18px rgba(200, 80, 50, 0.45));
}

/* Rodapé da frente */
.fc-foot {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--border);
  background: linear-gradient(to top, rgba(200, 80, 50, 0.04), transparent);
}
.fc-cat {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
  margin-bottom: 6px;
  display: block;
}
.fc-foot h3 {
  font-size: clamp(0.95rem, 1.6vw, 1.18rem);
  font-weight: 500;
  color: var(--txt);
  line-height: 1.25;
  margin-bottom: 8px;
}
.fc-desc {
  font-size: 0.76rem;
  color: var(--txt2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.fc-tap {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 80, 50, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-tap-arrow {
  transition: transform 0.25s;
}
.fc-card:hover .fc-tap-arrow {
  transform: translateX(4px);
}
@media (hover: hover) {
  .fc-tap {
    display: none;
  }
}

/* ─ VERSO ─ */
.fc-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #160d06 0%, #0a0704 100%);
  border: 1px solid rgba(200, 80, 50, 0.22);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
}
.fc-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.fc-back::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 80, 50, 0.3),
    transparent
  );
}

.fc-back-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 80, 50, 0.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 16px;
  background: rgba(200, 80, 50, 0.06);
  flex-shrink: 0;
}
.fc-back-icon svg {
  width: 100%;
  height: 100%;
}

.fc-back-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border: 1px solid rgba(200, 80, 50, 0.25);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  width: fit-content;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.fc-back-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}
.fc-back h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.fc-back p {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
}

.fc-back-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-shrink: 0;
}
.fc-back-list li {
  font-size: 0.92rem;
  color: rgba(200, 80, 50, 0.8);
  padding: 6px 0 6px 16px;
  position: relative;
  letter-spacing: 0.02em;
}
.fc-back-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(200, 80, 50, 0.5);
}

.fc-back-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    gap 0.25s;
}
.fc-back-cta:hover {
  background: rgba(200, 80, 50, 0.95);
  color: #fff;
  border-color: rgba(200, 80, 50, 0.98);
  gap: 12px;
}

.fc-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200, 80, 50, 0.3);
  color: var(--red);
  font-size: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 4, 0.9);
  cursor: pointer;
  z-index: 5;
  border-radius: 2px;
}
@media (hover: none) {
  .fc-close {
    display: flex;
  }
}

/* ══════════════════════════════════════
   PILARES
   ══════════════════════════════════════ */
.olympus-section {
  position: relative;
  padding: 110px 4% 0;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.olympus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 35% at 50% 0%,
      rgba(200, 80, 50, 0.09) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 25% at 10% 80%,
      rgba(200, 80, 50, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 25% at 90% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 0;
}
#olympus-stars,
#olympus-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#olympus-stars {
  z-index: 0;
}
#olympus-particles {
  z-index: 1;
}
.olympus-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 70px;
}
.olympus-eyebrow {
  font-family: var(--font-b);
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeDown 1s 0.2s ease forwards;
}
.olympus-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--txt);
  letter-spacing: 0.01em;
  line-height: 1.1;
  opacity: 0;
  animation: fadeDown 1s 0.4s ease forwards;
}
.olympus-title-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  opacity: 0;
  animation: fadeDown 0.8s 0.6s ease forwards;
}
.olympus-title-deco span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}
.olympus-title-deco span:last-child {
  background: linear-gradient(270deg, transparent, var(--red));
}
.olympus-title-deco svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
  opacity: 0.8;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pillars-grid {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: end;
}
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  animation: pillarRise 1.1s ease forwards;
  transition: z-index 0s;
}
.pillar:nth-child(1) {
  animation-delay: 0.55s;
}
.pillar:nth-child(2) {
  animation-delay: 0.75s;
}
.pillar:nth-child(3) {
  animation-delay: 0.95s;
}
.pillar:nth-child(4) {
  animation-delay: 1.15s;
}
@keyframes pillarRise {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pillar.active {
  z-index: 10;
}
.pillar__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 14px;
}
.pillar__divine-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 0;
  overflow: visible;
}
.pillar__divine {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(
    to top,
    rgba(200, 80, 50, 0.95) 0%,
    rgba(200, 80, 50, 0.5) 40%,
    rgba(200, 80, 50, 0.12) 75%,
    transparent 100%
  );
  transition:
    height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s;
  opacity: 0;
  z-index: 20;
}
.pillar__divine::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 100%;
  background: radial-gradient(
    ellipse 50% 100% at 50% 100%,
    rgba(200, 80, 50, 0.18) 0%,
    rgba(200, 80, 50, 0.08) 40%,
    transparent 100%
  );
  filter: blur(6px);
}
.pillar.active .pillar__divine {
  height: 180px;
  opacity: 1;
}
.pillar__capital {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: filter 0.5s;
  flex-shrink: 0;
}
.pillar.active .pillar__capital {
  filter: drop-shadow(0 0 12px rgba(200, 80, 50, 0.34));
}
.pillar__abacus {
  width: 88%;
  height: 13px;
  background: linear-gradient(180deg, #2a2a35, #17171f);
  border-top: 2px solid rgba(200, 80, 50, 0.55);
  border-left: 1px solid rgba(200, 80, 50, 0.12);
  border-right: 1px solid rgba(200, 80, 50, 0.12);
  border-radius: 2px 2px 0 0;
}
.pillar.active .pillar__abacus {
  border-top-color: var(--red);
  box-shadow: 0 0 14px rgba(200, 80, 50, 0.22);
}
.pillar__echinus {
  width: 78%;
  height: 18px;
  clip-path: polygon(8% 0, 92% 0, 85% 100%, 15% 100%);
  background: linear-gradient(180deg, #242432, #151520);
}
.pillar__card {
  position: relative;
  width: 100%;
  min-height: 640px;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 35, 0.96),
    rgba(16, 16, 22, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  padding: 26px 20px 20px;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}
.pillar.active .pillar__card {
  border-color: rgba(200, 80, 50, 0.18);
  box-shadow:
    0 0 32px rgba(200, 80, 50, 0.08),
    inset 0 0 0 1px rgba(200, 80, 50, 0.04);
}
.pillar__roman {
  position: absolute;
  right: 16px;
  top: 10px;
  font-family: var(--font-d);
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  pointer-events: none;
}
.pillar__label {
  font-family: var(--font-b);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.62rem;
  color: rgba(200, 80, 50, 0.85);
  margin-bottom: 10px;
}
.pillar__card h3 {
  font-family: var(--font-d);
  font-size: 1.02rem;
  line-height: 1.25;
  color: #f2ece4;
  margin: 0 0 24px;
}
.pillar__section-title {
  font-family: var(--font-b);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.6rem;
  color: rgba(200, 80, 50, 0.82);
  margin: 18px 0 10px;
}
.pillar__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.pillar__card li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 10px;
  color: rgba(237, 232, 225, 0.68);
  font-size: 0.95rem;
  line-height: 1.65;
}
.pillar__card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(200, 80, 50, 0.75);
}
.pillar__result {
  margin-top: 12px;
  padding: 16px 14px;
  border-left: 2px solid rgba(200, 80, 50, 0.45);
  background: linear-gradient(90deg, rgba(200, 80, 50, 0.08), transparent 90%);
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  line-height: 1.65;
}
.pillar__shaft {
  width: 44%;
  height: 96px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.06) 18%,
      rgba(255, 255, 255, 0.02) 36%,
      rgba(0, 0, 0, 0.18) 50%,
      rgba(255, 255, 255, 0.03) 62%,
      rgba(255, 255, 255, 0.06) 82%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    linear-gradient(180deg, #232330, #14141e 85%);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(0, 0, 0, 0.35);
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
  overflow: hidden;
}
.pillar__shaft::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  background: linear-gradient(
    to bottom,
    rgba(200, 80, 50, 0.12) 0%,
    rgba(200, 80, 50, 0.03) 60%,
    transparent 100%
  );
  transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar.active .pillar__shaft::after {
  height: 100%;
}
.pillar__base {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.pillar__base-step1 {
  width: 66%;
  height: 10px;
  background: linear-gradient(180deg, #1c1c26, #111118);
  border: 1px solid rgba(200, 80, 50, 0.12);
  border-top: none;
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}
.pillar__base-step2 {
  width: 82%;
  height: 12px;
  background: linear-gradient(180deg, #171720, #0d0d13);
  border: 1px solid rgba(200, 80, 50, 0.16);
  border-top: none;
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}
.pillar__base-step3 {
  width: 100%;
  height: 8px;
  background: linear-gradient(180deg, #0d0d13, rgba(200, 80, 50, 0.05));
  border-top: 1px solid rgba(200, 80, 50, 0.22);
  transition:
    border-top-color 0.35s,
    background 0.35s,
    box-shadow 0.35s;
}
.pillar.active .pillar__base-step1 {
  border-color: rgba(200, 80, 50, 0.25);
  box-shadow: 0 0 12px rgba(200, 80, 50, 0.05);
}
.pillar.active .pillar__base-step2 {
  border-color: rgba(200, 80, 50, 0.34);
  box-shadow: 0 0 16px rgba(200, 80, 50, 0.06);
}
.pillar.active .pillar__base-step3 {
  border-top-color: rgba(200, 80, 50, 0.6);
  background: linear-gradient(180deg, #0d0d13, rgba(200, 80, 50, 0.1));
  box-shadow: 0 0 18px rgba(200, 80, 50, 0.08);
}
.pillar__connector {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 16px);
  width: 18px;
  height: 42px;
  pointer-events: none;
  display: none;
}
.pillar:last-child .pillar__connector {
  display: none;
}
.pillar__connector::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(200, 80, 50, 0.06) 0%,
    rgba(200, 80, 50, 0.16) 55%,
    rgba(200, 80, 50, 0.03) 100%
  );
  opacity: 0.6;
}
.pillar__connector::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 10px 4px rgba(200, 80, 50, 0.45),
    0 0 24px 10px rgba(200, 80, 50, 0.12);
  top: -6px;
  opacity: 0;
}
.pillar.active > .pillar__connector::before {
  background: linear-gradient(
    to bottom,
    rgba(200, 80, 50, 0.08) 0%,
    rgba(200, 80, 50, 0.55) 50%,
    rgba(200, 80, 50, 0.85) 100%
  );
}
.pillar.active > .pillar__connector::after {
  opacity: 1;
  animation: sparkTravel 1.4s ease-in-out infinite;
}
@keyframes sparkTravel {
  0% {
    top: -6px;
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
  12% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  88% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    top: calc(100% + 6px);
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
}


/* ══════════════════════════════════════
   SOCIAL PROOF
   ══════════════════════════════════════ */
.social-proof {
  padding: 96px var(--pad) 90px;
  background: var(--bg2);
  overflow: hidden;
}
.sp-wrap {
  max-width: min(1320px, calc(100vw - (var(--pad) * 2)));
  margin: 0 auto;
  position: relative;
}
.sp-wrap h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  max-width: 860px;
  margin: 0 auto 22px;
}
.sp-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
}
.sp-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.sp-arrow:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
  transform: translateY(-1px);
}
.sp-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.sp-slider {
  overflow: hidden;
}
.sp-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
  align-items: stretch;
}
.sp-card {
  min-width: calc((100% - 36px) / 3);
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 28px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.sp-card:hover {
  border-color: var(--border-hot);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}
.sp-stars {
  color: var(--red);
  font-size: 0.82rem;
  letter-spacing: 3.4px;
  margin-bottom: 16px;
}
.sp-card blockquote {
  font-family: var(--font-d);
  font-size: 1rem;
  font-style: italic;
  color: var(--txt);
  line-height: 1.62;
  margin-bottom: 20px;
  font-weight: 400;
}
.sp-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.sp-av {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-hot);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}
.sp-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 3px;
}
.sp-author span {
  font-size: 0.8rem;
  color: var(--txt2);
}
.sp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.sp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1px solid var(--border2);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.sp-dot.on {
  background: var(--red);
  transform: scale(1.35);
  border-color: var(--red);
}
@media (max-width: 1280px) {
  .sp-card {
    min-width: calc((100% - 18px) / 2);
  }
}

/* ══════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════ */
.page-hero {
  padding: 160px var(--pad) 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 10% 80%,
    rgba(200, 80, 50, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.ph-wrap {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 28px;
}
.ph-wrap h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--txt);
  margin-bottom: 22px;
}
.ph-wrap p {
  font-size: 1rem;
  color: var(--txt2);
  max-width: 560px;
  line-height: 1.75;
}
.ph-line {
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 60%);
  margin-top: 64px;
}

/* ══════════════════════════════════════
   MVV — EDITORIAL ACESO
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   MVV — HORIZONTAL + FUNDO SOFISTICADO
   ══════════════════════════════════════ */
.mvv {
  padding: 84px var(--pad) 64px;
  background: #F5F2ED;
  position: relative;
  overflow: hidden;
}

/* Gradientes de calor */
.mvv::after {
  content: "";
  position: absolute;
  inset: 0;
   background:
    radial-gradient(ellipse 70% 55% at 95% 5%,  rgba(200, 88, 30, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 5%  95%, rgba(200, 88, 30, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Linhas verticais de fundo tipo grade editorial */
.mvv-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--pad);
  pointer-events: none;
  z-index: 0;
}
.mvv-bg-lines span {
  width: 1px;
  height: 100%;
background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(200, 88, 30, 0.07) 20%,
    rgba(200, 88, 30, 0.07) 80%,
    transparent 100%
  );
}

/* Conteúdo acima dos decos de fundo */
.mvv-wrap,
.mvv-footer-line {
  position: relative;
  z-index: 1;
}

.mvv-head {
  max-width: var(--container);
  margin: 0 auto 34px;
  position: relative;
  z-index: 1;
}
.mvv-head-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 88, 30, 0.78);
  margin-bottom: 14px;
}
.mvv-head-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(200, 88, 30, 0.58);
}
.mvv-head h2 {
  max-width: 860px;
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #171411;
  margin-bottom: 14px;
}
.mvv-head p {
  max-width: 760px;
  font-size: 0.94rem;
  line-height: 1.8;
  color: #615950;
}

/* Grid horizontal — 3 colunas + 2 divisores */
.mvv-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Divisor vertical entre colunas */
.mvv-divider {
  display: none;
}
.mvv-divider.line-visible {
  transform: none;
}

/* Item */
.mvv-item {
  padding: 32px 30px 74px;
  position: relative;
  cursor: default;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 88, 30, 0.15);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.3));
  box-shadow:
    0 16px 40px rgba(33, 22, 13, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}
.mvv-item:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 88, 30, 0.26);
  box-shadow:
    0 20px 44px rgba(33, 22, 13, 0.1),
    0 0 0 1px rgba(200, 88, 30, 0.1);
}

/* Fundo hover */
.mvv-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 80, 50, 0.1) 0%, transparent 72%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.mvv-item:hover::before {
  opacity: 1;
}

/* Numeral */
.mvv-numeral {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: #C8581E;
  opacity: 0.58;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: opacity 0.3s;
  user-select: none;
  align-self: flex-start;
  font-variant-numeric: tabular-nums;
}
.mvv-item:hover .mvv-numeral {
  opacity: 1;
}

/* Label */
.mvv-label {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 200;
  color: #df4e0a;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}
.mvv-item:hover .mvv-label {
  color: #E8895A;
}

/* Linha acento */
.mvv-accent-line {
  width: 24px;
  height: 1px;
  background: #C8581E;
  margin-bottom: 18px;
  transform-origin: left;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mvv-item:hover .mvv-accent-line {
  width: 52px;
}

/* Texto */
.mvv-text {
  font-size: 0.88rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.mvv-subtext {
  font-size: 0.84rem;
  color: rgba(26, 24, 21, 0.72);
  line-height: 1.75;
  margin: 0 0 14px;
}

/* Lista valores */
.mvv-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mvv-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--txt2);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s, padding-left 0.3s;
}
.mvv-list li:last-child {
  border-bottom: none;
}
.mvv-item:hover .mvv-list li {
  border-color: rgba(200, 88, 30, 0.15);
}
.mvv-list li:hover {
  color: #E8895A;
  padding-left: 5px;
}
.mvv-list-index {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: #C8581E;
  opacity: 0.68;
  min-width: 18px;
  font-feature-settings: "tnum";
}

.mvv-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mvv-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 88, 30, 0.2);
  background: rgba(255, 255, 255, 0.44);
  color: rgba(26, 24, 21, 0.76);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Elemento decorativo */
.mvv-deco {
  color: var(--red);
  opacity: 0.22;
  width: 42px;
  height: 42px;
  position: absolute;
  right: 20px;
  bottom: 18px;
  transition:
    opacity 0.4s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mvv-deco svg {
  width: 42px;
  height: 42px;
  color: #C8581E;
}
.mvv-item:hover .mvv-deco {
  opacity: 0.42;
  transform: rotate(8deg) scale(1.06);
}

/* Rodapé */
.mvv-footer-line {
  max-width: var(--container);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 88, 30, 0.14);
  display: flex;
  align-items: center;
  gap: 16px;
}
.mvv-footer-line::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #C8581E;
  opacity: 0.45;
  flex-shrink: 0;
}
.mvv-footer-text {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--txt3);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .mvv-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mvv-head {
    margin-bottom: 24px;
  }
  .mvv-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }
  .mvv-divider {
    display: none;
  }
  .mvv-item {
    padding: 26px 20px 62px;
  }
  .mvv-item:hover {
    transform: translateY(-2px);
  }
  .mvv-label {
    font-size: 1.95rem;
  }
  .mvv-tags span {
    font-size: 0.55rem;
    letter-spacing: 0.07em;
  }
}
.story {
  padding: 110px var(--pad);
  background: var(--bg);
}
.story-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.story-left h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 26px;
}
.story-left p {
  font-size: 0.91rem;
  color: var(--txt2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.story-img {
  position: relative;
  aspect-ratio: 4/3;
  margin-bottom: 30px;
  overflow: visible;
}
.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg3);
}
.si-deco {
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  border: 1px solid rgba(200, 80, 50, 0.15);
  border-radius: 2px;
  z-index: -1;
}
.story-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sn-item strong {
  display: block;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--txt);
  line-height: 1.1;
}
.sn-item span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-top: 5px;
  display: block;
}

/* CTA INNER */
.cta-inner {
  padding: 100px var(--pad);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.ci-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.ci-wrap h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}
.ci-wrap p {
  font-size: 0.95rem;
  color: var(--txt2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.ci-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   SERVIÇOS LIST
   ══════════════════════════════════════ */
.services-list {
  padding: 80px var(--pad);
  background: var(--bg);
}
.sl-wrap {
  max-width: var(--container);
  margin: 0 auto;
}
.sv-block {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 52px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.sv-block::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--pad));
  right: calc(-1 * var(--pad));
  top: 0;
  bottom: 0;
  background: var(--red-soft);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.sv-block:hover::before {
  opacity: 1;
}
.sv-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.sv-num {
  font-family: var(--font-d);
  font-size: 3.8rem;
  font-weight: 300;
  color: rgba(200, 80, 50, 0.08);
  line-height: 1;
  transition: color 0.3s;
}
.sv-block:hover .sv-num {
  color: rgba(200, 80, 50, 0.22);
}
.sv-ico {
  color: var(--red);
}
.sv-right {
  position: relative;
  z-index: 1;
}
.sv-right h2 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--txt);
  margin-bottom: 14px;
}
.sv-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sv-tags span {
  padding: 4px 12px;
  background: var(--red-soft);
  border: 1px solid rgba(200, 80, 50, 0.18);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border-radius: 2px;
}
.sv-right p {
  font-size: 0.92rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 680px;
}


/* ══════════════════════════════════════
   NR SECTION — METODOLOGIA
   ══════════════════════════════════════ */

/* ── Hero ── */
.nr-hero {
  padding: 78px var(--pad) 80px;
  border-bottom: 1px solid rgba(26, 24, 21, 0.1);
  position: relative;
  overflow: hidden;
  background: #f5f2ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 59px,
    rgba(200, 80, 50, 0.04) 59px,
    rgba(200, 80, 50, 0.04) 60px
  );
  pointer-events: none;
}

.nr-hero > * {
  position: relative;
  z-index: 1;
}

.nr-hero .ph-line {
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 34px;
}

.nr-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 80, 50, 0.88);
  margin-bottom: 36px;
}

.nr-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(200, 80, 50, 0.8);
}

.nr-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a1815;
  max-width: 780px;
  margin: 0 auto 28px;
}

.nr-hero h1 em {
  font-style: italic;
  color: #c85032;
}

.nr-hero > p {
  font-size: 0.92rem;
  color: #5a5650;
  line-height: 1.85;
  max-width: 680px;
  letter-spacing: 0.01em;
  margin: 0 auto;
}

/* ── NR Grid Section ── */
.nr-section {
  padding: 0 var(--pad);
  background: #f5f2ed;
}

.nr-item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 0 48px;
  border-bottom: 1px solid rgba(26, 24, 21, 0.1);
  padding: 60px 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: start;
}

.nr-item.in {
  opacity: 1;
  transform: translateY(0);
}

.nr-item:last-child {
  border-bottom: none;
}

/* Left column */
.nr-left {
  position: relative;
  padding-top: 6px;
}

.nr-code {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 80, 50, 0.82);
  margin-bottom: 4px;
}

.nr-num {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(200, 80, 50, 0.18);
  transition: color 0.4s;
  user-select: none;
}

.nr-item:hover .nr-num {
  color: rgba(200, 80, 50, 0.44);
}

.nr-tag-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border: 1px solid rgba(200, 80, 50, 0.3);
  font-family: var(--font-mono, monospace);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 80, 50, 0.92);
  background: rgba(200, 80, 50, 0.06);
}

/* Right column */
.nr-right {
  border-left: 1px solid rgba(26, 24, 21, 0.1);
  padding-left: 48px;
  transition: border-color 0.4s;
  min-width: 0;
}

.nr-item:hover .nr-right {
  border-color: rgba(200, 80, 50, 0.18);
}

.nr-title {
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #1a1815;
  margin-bottom: 16px;
  line-height: 1.2;
}

.nr-title em {
  font-style: italic;
  color: #c85032;
}

.nr-body {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #5a5650;
  max-width: 680px;
  margin-bottom: 20px;
}

.nr-spec {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.nr-spec-item {
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5650;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.98;
}

.nr-spec-item::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c85032;
  opacity: 0.7;
}

/* ── CTA Final ── */
.nr-cta.method-cta {
  padding: 90px var(--pad) 120px;
  background: #f5f2ed;
  border-top: 1px solid rgba(26, 24, 21, 0.1);
}

.mc-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mc-wrap h2 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a1815;
}

.mc-wrap h2 em {
  font-style: italic;
  color: #c85032;
}

.mc-wrap p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #5a5650;
}

.mc-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .nr-hero {
    padding: 72px var(--pad) 70px;
  }

  .nr-item {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 0 32px;
  }

  .nr-right {
    padding-left: 32px;
  }

  .nr-num {
    font-size: 5rem;
  }

  .nr-cta.method-cta {
    padding: 80px var(--pad) 100px;
  }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .nr-hero {
    padding: 58px 20px 56px;
    align-items: flex-start;
    text-align: left;
  }

  .nr-hero .ph-line {
    margin-bottom: 24px;
  }

  .nr-tag {
    justify-content: flex-start;
    margin-bottom: 22px;
  }

  .nr-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin: 0 0 18px;
    max-width: 100%;
  }

  .nr-hero > p {
    margin: 0;
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .nr-section {
    padding: 0 20px;
  }

  .nr-item {
    grid-template-columns: 1fr;
    gap: 18px 0;
    padding: 40px 0;
  }

  .nr-left {
    padding-top: 0;
  }

  .nr-num {
    font-size: 4rem;
  }

  .nr-right {
    border-left: none;
    border-top: 1px solid rgba(26, 24, 21, 0.1);
    padding-left: 0;
    padding-top: 22px;
  }

  .nr-title {
    font-size: 1.2rem;
  }

  .nr-body {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .nr-spec {
    gap: 10px 14px;
  }

  .nr-cta.method-cta {
    padding: 60px 20px 80px;
  }

  .mc-wrap {
    align-items: flex-start;
    text-align: left;
  }

  .mc-wrap h2 {
    max-width: 100%;
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .mc-wrap p {
    max-width: 100%;
    margin: 0 0 24px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .mc-btns {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .mc-btns a {
    width: 100%;
    text-align: center;
  }
}
/* ── CTA Final ── */
.nr-cta.method-cta {
  padding: 90px var(--pad) 120px;
  background: var(--bg);
  border-top: 1px solid rgba(200, 80, 50, 0.08);
}

.mc-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mc-wrap h2 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--txt);
}

.mc-wrap h2 em {
  font-style: italic;
  color: var(--red);
}

.mc-wrap p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--txt2);
}

.mc-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CTA tablet ── */
@media (max-width: 1024px) {
  .nr-cta.method-cta {
    padding: 80px var(--pad) 100px;
  }
}

/* ── CTA mobile ── */
@media (max-width: 640px) {
  .nr-cta.method-cta {
    padding: 60px 20px 80px;
  }

  .mc-wrap {
    align-items: flex-start;
    text-align: left;
  }

  .mc-wrap h2 {
    max-width: 100%;
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .mc-wrap p {
    max-width: 100%;
    margin: 0 0 24px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .mc-btns {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .mc-btns a {
    width: 100%;
    text-align: center;
  }
}
/* ══════════════════════════════════════
   CONTATO
   ══════════════════════════════════════ */
#contato {
  padding: 160px var(--pad) 110px;
  background: var(--bg);
}
.contato-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}
.contato-info h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.contato-info p {
  font-size: 0.95rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 44px;
}
.contato-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contato-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--txt2);
}
.contato-list li svg {
  color: var(--red);
  flex-shrink: 0;
}
.contato-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 52px;
}
.form-group {
  margin-bottom: 26px;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--txt);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 80, 50, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 128px;
}
.form-group select option {
  background: var(--bg3);
}

/* ══════════════════════════════════════
   CTA HOME
   ══════════════════════════════════════ */
.cta-home {
  padding: 140px var(--pad);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(200, 80, 50, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-wrap {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-wrap h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.cta-wrap p {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 48px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #090909 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px var(--pad) 28px;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 10%, rgba(200, 80, 50, 0.16), transparent 35%),
    radial-gradient(circle at 10% 120%, rgba(201, 168, 76, 0.08), transparent 40%);
}
.ft-shell {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}
.ft-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr;
  gap: clamp(24px, 3vw, 44px);
  margin-bottom: 30px;
}
.ft-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 16px;
}
.ft-brand-lead {
  max-width: 560px;
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
  line-height: 1.2;
  color: var(--txt);
}
.ft-nav h4,
.ft-contact h4 {
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 232, 225, 0.52);
  margin-bottom: 14px;
}
.ft-nav a,
.ft-contact a,
.ft-contact span {
  display: block;
  font-size: 0.92rem;
  color: rgba(237, 232, 225, 0.76);
  margin-bottom: 10px;
  line-height: 1.62;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.ft-nav a:hover,
.ft-contact a:hover {
  color: var(--red);
}
.ft-address {
  max-width: 360px;
  color: rgba(237, 232, 225, 0.62) !important;
}
.ft-address:hover {
  color: var(--txt) !important;
}
.ft-map-frame {
  position: relative;
  margin-top: 10px;
  width: min(100%, 360px);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.ft-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.02) saturate(0.9);
}
.ft-map-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ft-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  color: rgba(237, 232, 225, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ft-mini-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-mini-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 232, 225, 0.5);
  transition: color 0.25s;
}
.ft-mini-links a:hover {
  color: var(--red);
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--spring);
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waRing 2.8s ease infinite;
  z-index: -1;
}
@keyframes waRing {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-content {
    padding-right: clamp(280px, 30vw, 380px);
  }
  .hero-ss-card {
    width: clamp(250px, 25vw, 300px);
  }
}

@media (max-width: 1024px) {
  .fc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
  }
}

@media (max-width: 900px) {
  .nav-items,
  .nav-btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-mob {
    display: flex;
  }
  .ft-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .ft-brand {
    grid-column: 1 / -1;
  }
  .mvv-wrap {
    grid-template-columns: 1fr;
  }
  .story-wrap {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .contato-wrap {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .hstat-div {
    display: none;
  }
  .hstat {
    flex: 1 1 40%;
    padding: 0 24px 28px 0;
  }
  .hero-ss-card {
    display: none;
  }
  .hero-content {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .hero-h1 {
    font-size: 2.8rem;
  }
  .sp-wrap h2 {
    margin-bottom: 14px;
  }
  .sp-nav {
    justify-content: center;
    margin: 0 0 14px;
  }
  .sp-card {
    min-width: 100%;
    min-height: auto;
    padding: 24px 20px;
  }
  .sp-dots {
    display: none !important;
  }
  .sp-card blockquote {
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .pillar,
  .pillar__column {
    justify-content: flex-end;
  }
  .pillar__connector {
    display: block;
  }
  .tl-line {
    display: none;
  }
  .trail-timeline {
    gap: 16px;
  }
  .tl-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0;
    min-height: unset;
  }
  .tl-dot {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .tcard,
  .tl-right .tcard,
  .tl-left .tcard {
    width: 100%;
    margin: 0 !important;
    opacity: 1;
    transform: none;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .sv-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sv-num {
    font-size: 2.2rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .contato-form {
    padding: 28px 22px;
  }
  .hero-btns {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .fc-grid {
    grid-template-columns: 1fr;
  }
  .fc-card {
    height: 420px;
  }
  .ft-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ft-brand {
    grid-column: auto;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ft-mini-links {
    gap: 12px;
    flex-wrap: wrap;
  }
  .ft-brand-lead {
    font-size: clamp(1.08rem, 5.2vw, 1.35rem);
    max-width: 100%;
  }
  .story-nums {
    grid-template-columns: 1fr;
  }
  .story-img {
    margin-bottom: 18px;
  }
  .hstat {
    flex: 1 1 100%;
    padding: 0 0 28px;
  }
  .hstat strong {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 110px 20px 70px;
  }
  .hero-h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .pillar {
    animation: none !important;
    opacity: 0 !important;
    transform: translateY(50px) scale(0.96) !important;
    filter: brightness(0.45) saturate(0.5) !important;
  }
  .pillar.lbe-awake {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: brightness(1) saturate(1) !important;
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.75s ease !important;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: end;
  }
  .pillar__card {
    min-height: auto;
  }
  .pillar__shaft {
    height: 82px;
  }
}
@media (max-width: 580px) {
  .olympus-section {
    padding: 82px 16px 20px;
  }
  .olympus-header {
    margin-bottom: 42px;
  }
  .olympus-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pillar {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .pillar__card {
    min-height: auto;
    padding: 22px 16px 18px;
  }
}

/* ─── TRAIL MOBILE RESPONSIVE PATCH ─── */
/* Adicione este bloco ao final do seu CSS existente */

@media (max-width: 768px) {
  .trail-section {
    padding: 58px var(--pad) 54px;
  }

  .trail-header {
    margin-bottom: 36px;
  }

  /* A linha vertical vai para a ESQUERDA no mobile */
  .trail-timeline {
    padding-left: 32px; /* espaço para a linha e o dot */
  }

  .tl-line {
    left: 0; /* ancora na borda esquerda do timeline */
    transform: none;
  }

  /* Dot sempre na esquerda */
  .tl-dot {
    left: 0;
    transform: translateX(-50%);
    position: absolute;
  }

  /* Spark segue a linha */
  .tl-spark {
    left: 0;
    transform: translateX(-50%);
  }

  /* Todas as rows viram coluna única, alinhadas à esquerda */
  .tl-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: unset;
    padding: 16px 0;
  }

  /* Cards ocupam 100% da largura disponível */
  .tcard {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 18px 16px;
  }

  /* Remove os offsets de margem do desktop */
  .tl-right .tcard {
    margin-left: 0 !important;
  }

  .tl-left .tcard {
    margin-right: 0 !important;
  }

  /* Card final centralizado vira full-width */
  .tl-center {
    align-items: flex-start !important;
    padding-top: 18px !important;
  }

  .tcard-final-center {
    width: 100% !important;
    text-align: left;
    margin-top: 10px;
  }

  /* Dot final acompanha */
  .tl-dot-final span {
    width: 26px;
    height: 26px;
    margin: -2px;
  }

  .tcard-num {
    font-size: 1.65rem;
  }

  .tcard h3 {
    font-size: 0.95rem;
  }

  .tcard p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .trail-timeline {
    padding-left: 20px;
  }

  .trail-header h2 {
    font-size: 1.55rem;
  }
}
/* remove o selo premium */
.hsc-badge,
.hsc-badge-ring,
.hsc-badge-ring-inner,
.hsc-badge-star,
.hsc-badge-txt {
  display: none !important;
}

/* refina o quadro da logo */
.hero-ss-card {
  background: rgba(10, 9, 8, 0.72) !important;
  border: 1px solid rgba(200, 80, 50, 0.14) !important;
  padding: 18px !important;
  border-radius: 2px !important;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.48),
    0 0 36px rgba(200, 80, 50, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02) !important;
}

.hsc-logo-area {
  min-height: 320px;
  padding: 28px 22px !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.98) 0%, rgba(242,237,229,0.96) 55%, rgba(230,224,214,0.9) 100%) !important;
  border: 1px solid rgba(26, 24, 21, 0.08);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.05),
    inset 0 0 80px rgba(255, 255, 255, 0.15) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.hsc-logo-area::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(26, 24, 21, 0.06);
  pointer-events: none;
}

.hsc-logo {
  width: 92% !important;
  max-width: 300px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 2px 0 rgba(255,255,255,0.28))
    drop-shadow(0 8px 14px rgba(0,0,0,0.10)) !important;
  opacity: 0.98;
}

/* deixa os cantos mais discretos */
.hsc-corner {
  width: 18px !important;
  height: 18px !important;
  border-width: 1px !important;
  border-color: rgba(200, 80, 50, 0.65) !important;
}

@media (max-width: 640px) {
  .hsc-logo-area {
    min-height: 230px;
    padding: 24px !important;
  }

  .hsc-logo {
    width: 70% !important;
  }
}

/* trail compact refinement */
@media (max-width: 768px) {
  .trail-timeline {
    padding-left: 24px;
  }
}

/* NR-1 priority: open strip (no card look) */
.nr1-priority-band .platform-band-inner {
  width: min(1260px, calc(100vw - 72px));
}

.nr1-priority-band .platform-cta.nr1-priority-cta {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 64px;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.nr1-priority-band .platform-cta.nr1-priority-cta::after {
  display: none !important;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-core {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-side {
  align-items: flex-start;
  justify-items: start;
  gap: 16px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-mark {
  width: auto;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-mark small {
  margin-bottom: 4px;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-mark strong {
  font-size: clamp(2.8rem, 5.6vw, 4.2rem);
  color: var(--red);
  line-height: 0.95;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-tags span {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
  transform: none;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-tags span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(200, 80, 50, 0.88);
}

.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-tags span:hover,
.nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-tags span:focus-visible {
  color: #fff;
  border: none;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .nr1-priority-kpis {
  margin-top: 22px;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nr1-priority-band .platform-cta.nr1-priority-cta .nr1-priority-kpis article {
  padding: 0 26px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.nr1-priority-band .platform-cta.nr1-priority-cta .nr1-priority-kpis article + article {
  margin-left: 26px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 768px) {
  .nr1-priority-band .platform-band-inner {
    width: calc(100vw - 24px);
  }

  .nr1-priority-band .platform-cta.nr1-priority-cta {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .nr1-priority-band .platform-cta.nr1-priority-cta .platform-cta-side {
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nr1-priority-band .platform-cta.nr1-priority-cta .nr1-priority-kpis {
    margin-top: 16px;
    padding-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nr1-priority-band .platform-cta.nr1-priority-cta .nr1-priority-kpis article,
  .nr1-priority-band .platform-cta.nr1-priority-cta .nr1-priority-kpis article + article {
    margin-left: 0;
    padding: 0;
    border-left: none;
  }
}

/* services cards: image front + click hint */
.services-highlight .sh-note {
  margin: -28px 0 24px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.services-highlight .fc-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.services-highlight .fc-card {
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
}

.services-highlight .fc-inner,
.services-highlight .fc-front,
.services-highlight .fc-back,
.services-highlight .fc-sparks-canvas {
  height: 100%;
  border-radius: 8px;
}

.services-highlight .fc-front {
  position: relative;
  background: #0b0b0a;
}

.services-highlight .fc-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 8%, rgba(8, 8, 8, 0.28) 56%, rgba(6, 6, 6, 0.52) 100%),
    var(--fc-image, none);
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  transform: scale(1);
  transition: transform 0.55s var(--ease), filter 0.45s var(--ease);
  filter: saturate(0.94) contrast(1.03);
}

.services-highlight .fc-grid > .fc-card:nth-child(1) .fc-front::before {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 8%, rgba(8, 8, 8, 0.28) 56%, rgba(6, 6, 6, 0.52) 100%),
    url("assets/mentoria-de-lideranca.png");
}
.services-highlight .fc-grid > .fc-card:nth-child(2) .fc-front::before {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 8%, rgba(8, 8, 8, 0.28) 56%, rgba(6, 6, 6, 0.52) 100%),
    url("assets/palestras-corporativas.png");
}
.services-highlight .fc-grid > .fc-card:nth-child(3) .fc-front::before {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 8%, rgba(8, 8, 8, 0.28) 56%, rgba(6, 6, 6, 0.52) 100%),
    url("assets/workshops-treinamentos-para-equipes.png");
}
.services-highlight .fc-grid > .fc-card:nth-child(4) .fc-front::before {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 8%, rgba(8, 8, 8, 0.28) 56%, rgba(6, 6, 6, 0.52) 100%),
    url("assets/progamas-continuos (1).png");
}

.services-highlight .fc-front::after {
  content: "Clique para virar";
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 8, 8, 0.56);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}

.services-highlight .fc-back {
  overflow-y: auto;
}

.services-highlight .fc-front > * {
  position: relative;
  z-index: 2;
}

.services-highlight .fc-icon-area,
.services-highlight .fc-icon-glow,
.services-highlight .fc-icon-svg,
.services-highlight .fc-back-icon {
  display: none !important;
}

.services-highlight .fc-foot {
  display: none !important;
}

.services-highlight .fc-foot h3 {
  color: #fff;
}

.services-highlight .fc-desc {
  color: rgba(255, 255, 255, 0.82);
}

.services-highlight .fc-tap {
  color: rgba(255, 255, 255, 0.82);
}

@media (hover: hover) {
  .services-highlight .fc-card:hover:not(.flipped) .fc-inner {
    transform: none !important;
  }
  .services-highlight .fc-card:hover .fc-front::before {
    transform: scale(1.02);
    filter: saturate(1.02) contrast(1.05);
  }
  .services-highlight .fc-card:hover .fc-front::after {
    border-color: rgba(200, 80, 50, 0.52);
    background: rgba(200, 80, 50, 0.2);
    color: #fff;
  }
}

@media (max-width: 1280px) {
  .services-highlight .fc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .services-highlight .fc-grid {
    grid-template-columns: 1fr;
  }
  .services-highlight .fc-card {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 600px) {
  .services-highlight .sh-note {
    margin: -10px 0 18px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }
  .services-highlight .fc-front::after {
    bottom: 10px;
    right: 10px;
    padding: 6px 9px;
    font-size: 0.52rem;
  }
  .services-highlight .fc-card {
    aspect-ratio: 4 / 3;
  }

  .fc-back {
    padding: 20px 16px 16px;
  }
  .fc-back h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }
  .fc-back p {
    font-size: 0.88rem;
    line-height: 1.62;
    margin-bottom: 14px;
  }
  .fc-back-list {
    margin-bottom: 16px;
  }
  .fc-back-list li {
    font-size: 0.82rem;
    padding: 4px 0 4px 14px;
  }
.fc-back-cta {
  width: 100%;
  justify-content: center;
}
}

/* transition refinement: plataforma -> prova social */
.platform-showcase {
  padding-bottom: 12px;
}

.platform-lower {
  margin-bottom: 6px;
}

.social-proof {
  position: relative;
  padding-top: 76px;
  padding-bottom: 82px;
}

.social-proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 80, 50, 0.22), transparent);
  opacity: 0.55;
}

@media (max-width: 768px) {
  .platform-showcase {
    padding-bottom: 8px;
  }

  .platform-lower {
    margin-bottom: 2px;
  }

  .social-proof {
    padding-top: 56px;
    padding-bottom: 62px;
  }
}
