/* ══════════════════════════════════════════════════════════
   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;
  }
}

/* ══════════════════════════════════════
   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;
}

/* ══════════════════════════════════════
   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: 130px 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 100px;
  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(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--txt);
  margin-bottom: 18px;
}
.trail-sub {
  font-size: 0.92rem;
  color: #ffff;
  line-height: 1.75;
}
.trail-timeline {
  position: relative;
  max-width: 900px;
  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: 180px;
  padding: 36px 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: 52px 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% - 54px);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 30px 28px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.tl-right .tcard {
  margin-left: calc(50% + 44px);
}
.tl-left .tcard {
  margin-right: calc(50% + 44px);
}
.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.6rem;
  font-weight: 700;
  color: rgba(200, 80, 50, 0.1);
  line-height: 1;
  margin-bottom: -4px;
}
.tcard h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 10px;
}
.tcard p {
  font-size: 0.84rem;
  color: #ffff;
  line-height: 1.75;
  margin-bottom: 14px;
}
.tcard-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--red-soft);
  border: 1px solid rgba(200, 80, 50, 0.18);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-radius: 2px;
}
.tcard-final-center {
  width: 400px;
  text-align: center;
  border-color: var(--border-hot);
  margin-top: 36px;
}
.tcard-final-center h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--txt);
}
.tcard-final-center p {
  font-size: 0.85rem;
  color: var(--txt2);
  margin-bottom: 22px;
}
.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: 3px 10px;
  border: 1px solid rgba(200, 80, 50, 0.25);
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  width: fit-content;
  margin-bottom: 10px;
  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(0.9rem, 1.4vw, 1.08rem);
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.fc-back p {
  font-size: 0.76rem;
  color: var(--txt2);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 14px;
}

.fc-back-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex-shrink: 0;
}
.fc-back-list li {
  font-size: 0.72rem;
  color: rgba(200, 80, 50, 0.8);
  padding: 4px 0 4px 14px;
  position: relative;
  letter-spacing: 0.04em;
}
.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: 10px 18px;
  flex-shrink: 0;
  border: 1px solid rgba(200, 80, 50, 0.35);
  color: var(--red);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
  transition:
    background 0.25s,
    border-color 0.25s,
    gap 0.25s;
}
.fc-back-cta:hover {
  background: rgba(200, 80, 50, 0.1);
  border-color: rgba(200, 80, 50, 0.7);
  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: 110px var(--pad);
  background: var(--bg2);
  overflow: hidden;
}
.sp-wrap {
  max-width: var(--container);
  margin: 0 auto;
}
.sp-wrap h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 34px;
}
.sp-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -10px 0 24px;
}
.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-slider {
  overflow: hidden;
}
.sp-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.sp-card {
  min-width: calc(50% - 10px);
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px 36px;
  transition: border-color 0.3s;
}
.sp-card:hover {
  border-color: var(--border-hot);
}
.sp-stars {
  color: var(--red);
  font-size: 0.88rem;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.sp-card blockquote {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--txt);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
}
.sp-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.sp-author strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 2px;
}
.sp-author span {
  font-size: 0.76rem;
  color: var(--txt2);
}
.sp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.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);
}

/* ══════════════════════════════════════
   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: 100px var(--pad) 80px;
  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;
}

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

/* Divisor vertical entre colunas */
.mvv-divider {
  width: 1px;
  align-self: stretch;
    background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(200, 88, 30, 0.15) 15%,
    rgba(200, 88, 30, 0.15) 85%,
    transparent 100%
  );
  margin: 0 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.mvv-divider.line-visible {
  transform: scaleY(1);
}

/* Item */
.mvv-item {
  padding: 40px 36px 48px;
  position: relative;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.mvv-item:hover {
  transform: translateY(-4px);
}

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

/* Numeral */
.mvv-numeral {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #C8581E;
  opacity: 0.35;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: opacity 0.3s;
  user-select: none;
  align-self: flex-start;
}
.mvv-item:hover .mvv-numeral {
  opacity: 1;
}

/* Label */
.mvv-label {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 200;
    color: #f15203;
  line-height: 1;
  margin-bottom: 16px;
  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: 22px;
  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.85;
  flex: 1;
}

/* Lista valores */
.mvv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.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.55;
  min-width: 18px;
  font-feature-settings: "tnum";
}

/* Elemento decorativo */
.mvv-deco {
  color: var(--red);
  opacity: 0.15;
  width: 52px;
  height: 52px;
  margin-top: 32px;
  align-self: flex-end;
  transition:
    opacity 0.4s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mvv-deco svg {
  width: 52px;
  height: 52px;
color: #C8581E;
}
.mvv-item:hover .mvv-deco {
  opacity: 0.3;
  transform: rotate(12deg) scale(1.1);
}

/* Rodapé */
.mvv-footer-line {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 28px;
 border-top: 1px solid rgba(200, 88, 30, 0.12);
  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;
  }
  .mvv-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(180,60,30,0.18) 20%,
      rgba(180,60,30,0.18) 80%,
      transparent 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    margin: 0;
  }
  .mvv-divider.line-visible {
    transform: scaleX(1);
  }
  .mvv-item {
    padding: 36px 0;
  }
  .mvv-item:hover {
    transform: translateX(4px);
  }
  .mvv-label {
    font-size: 1.8rem;
  }
}
.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: 120px 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;
}

.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.65);
  margin-bottom: 4px;
}

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

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

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

/* 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.85;
}

.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: 100px 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: 90px 20px 56px;
    align-items: flex-start;
    text-align: left;
  }

  .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 {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px var(--pad) 36px;
}
.ft-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}
.ft-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  margin-bottom: 14px;
}
.ft-brand p {
  font-size: 0.85rem;
  color: var(--txt3);
  line-height: 1.75;
}
.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: var(--txt3);
  margin-bottom: 20px;
}
.ft-nav a,
.ft-contact a,
.ft-contact span {
  display: block;
  font-size: 0.85rem;
  color: var(--txt3);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.ft-nav a:hover,
.ft-contact a:hover {
  color: var(--red);
}
.ft-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--txt3);
  display: flex;
  justify-content: space-between;
}

/* 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;
  }
  .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-nav {
    justify-content: center;
    margin: 0 0 20px;
  }
  .sp-card {
    min-width: 100%;
    min-height: auto;
  }
  .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: 36px;
  }
  .ft-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .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: 80px var(--pad);
  }

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

  /* 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: 28px 0 28px 0;
  }

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

  /* 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: 28px !important;
  }

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

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

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

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

  .tcard p {
    font-size: 0.82rem;
  }
}

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

  .trail-header h2 {
    font-size: 1.7rem;
  }
}
/* 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;
  }
} 