/* ─────────────────────────────────────────
   NOIRDEN FONT
───────────────────────────────────────── */
@font-face {
  font-family: 'Noirden';
  src: url('../fonts/Noirden-Regular.woff2') format('woff2'),
       url('../fonts/Noirden-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noirden';
  src: url('../fonts/Noirden-Bold.woff2') format('woff2'),
       url('../fonts/Noirden-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noirden';
  src: url('../fonts/Noirden-Light.woff2') format('woff2'),
       url('../fonts/Noirden-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --red:      #FF3F3E;
  --orange:   #FE7E58;
  --blue:     #004A78;
  --blue-mid: #06629B;
  --dark:     #050A12;
  --dark2:    #080F1C;
  --card-bg:  rgba(255,255,255,.04);
  --border:   rgba(255,255,255,.08);

  --gradient-brand: linear-gradient(34deg,#000305 27.37%,#06629B 66.2%,#FF9878 84.25%,#FD5A4A 123.4%);
  --gradient-red:   linear-gradient(135deg, #FF3F3E 0%, #FE7E58 100%);
  --gradient-blue:  linear-gradient(135deg, #004A78 0%, #06629B 100%);

  --font-title: 'Noirden', 'Playfair Display', Georgia, serif;
  --font-body:  'Montserrat', sans-serif;

  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(254,126,88,.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.title {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.title--xl  { font-size: clamp(42px, 6vw, 80px); }
.title--lg  { font-size: clamp(34px, 4.5vw, 60px); }
.title--md  { font-size: clamp(26px, 3.5vw, 44px); }
.title--sm  { font-size: clamp(20px, 2.5vw, 32px); }

em { font-style: normal; }

.text-gradient {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.06em 0.08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Shiny CTA */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 16px 32px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  --shiny-highlight: rgba(255, 255, 255, 0.9);
  --shiny-highlight-subtle: rgba(255, 255, 255, 0.7);
  --btn-duration: 3s;
  --shadow-size: 2px;
  --animation: gradient-angle linear infinite;

  isolation: isolate;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  color: #fff;
  background:
    var(--gradient-red) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box;
  box-shadow: inset 0 0 0 1px rgba(255,140,80,.35), 0 8px 32px rgba(255,63,62,.35);
  animation: var(--animation) var(--btn-duration),
             var(--animation) calc(var(--btn-duration) / 0.4) reverse paused;
  animation-composition: add;
  transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine, box-shadow, transform;
}

.btn--primary::before,
.btn--primary::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
  animation: var(--animation) var(--btn-duration),
             var(--animation) calc(var(--btn-duration) / 0.4) reverse paused;
  animation-composition: add;
}

.btn--primary::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    white calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
}

.btn--primary::after {
  --animation: shimmer-btn linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.btn--primary:hover {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-highlight-subtle);
  box-shadow: inset 0 0 0 1px rgba(255,140,80,.35), 0 16px 48px rgba(255,63,62,.5);
}

.btn--primary:hover,
.btn--primary:hover::before,
.btn--primary:hover::after {
  animation-play-state: running;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

@keyframes gradient-angle { to { --gradient-angle: 360deg; } }
@keyframes shimmer-btn { to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  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='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9999;
}

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
.header.scrolled {
  background: rgba(5,10,18,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 36px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.header__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.header__link.is-active { color: #fff; background: rgba(255,255,255,.08); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s, width .25s;
  transform-origin: center;
}
.burger.open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open .burger__line:nth-child(2) { opacity: 0; width: 0; }
.burger.open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  z-index: 199;
  pointer-events: none;
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .4s;
}
.mobile-nav__dropdown {
  position: relative;
  background: rgba(8,13,24,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s, transform .35s var(--ease-out), visibility .35s;
}
.mobile-nav__link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav__link:last-of-type { border-bottom: none; }
.mobile-nav__link:hover { color: #fff; }
.mobile-nav__cta {
  margin-top: 12px;
  justify-content: center;
}
.mobile-nav.open {
  pointer-events: all;
}
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.open .mobile-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header.menu-open {
  background: rgba(8,13,24,.97) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .header__nav .header__link,
  .header__nav .btn { display: none; }
  .mobile-nav { display: block; }
  .header {
    background: rgba(5,10,18,.95);
    backdrop-filter: blur(20px);
  }
  .header::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: #050A12;
  }
}

/* ─────────────────────────────────────────
   PAGE HERO (título + sub, sem visual de imagem)
───────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 64px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  z-index: 0;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,74,120,.4) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,63,62,.15) 0%, transparent 60%);
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
}
.page-hero__title {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  opacity: 0;
}
.page-hero__sub {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin-bottom: 20px;
  opacity: 0;
}
.page-hero__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 620px;
  margin-bottom: 36px;
  opacity: 0;
}
.page-hero__actions { opacity: 0; }

/* ─────────────────────────────────────────
   CONTENT BLOCKS (parágrafos de copy)
───────────────────────────────────────── */
.content-block {
  position: relative;
  overflow: hidden;
}
.content-block--alt { background: var(--dark2); }
.content-block__inner {
  max-width: 760px;
}
.content-block__inner--center { margin: 0 auto; text-align: center; }
.content-block__title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.content-block__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}
.content-block__text + .content-block__text { margin-top: 20px; }

/* Quote / highlight paragraph — como differentiator__text da LP */
.highlight-quote {
  position: relative;
  overflow: hidden;
}
.highlight-quote__text {
  font-family: var(--font-title);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.01em;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.highlight-quote__text em {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Staccato lines (frases curtas empilhadas) */
.staccato {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.staccato span { display: block; }

/* ─────────────────────────────────────────
   PROCESS FLOW (steps horizontais)
───────────────────────────────────────── */
.flow {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
}
.flow__step {
  flex: 1;
  display: flex;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.flow__step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.flow__step-card:hover {
  border-color: rgba(255,63,62,.3);
  transform: translateY(-3px);
}
.flow__step-num {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.flow__step-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Dot between cards — sits on the line */
.flow__dot {
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.flow__dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--border);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.flow__dot.is-active::before {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(254,126,88,.5);
}

/* Horizontal line behind everything */
.flow__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 1px;
  overflow: hidden;
}
.flow__line-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-red);
  border-radius: 1px;
}

@media (max-width: 760px) {
  .flow { flex-direction: column; gap: 0; }
  .flow__dot { width: auto; height: 32px; }
  .flow__line {
    top: 16px; bottom: 16px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }
  .flow__line-fill { width: 100%; height: 0%; }
}
.flow__note {
  margin: 28px auto 0;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange);
  border: 1px solid rgba(254,126,88,.3);
  background: rgba(254,126,88,.08);
  border-radius: 100px;
  padding: 10px 20px 10px 22px;
}
.flow__note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  animation: flowNoteBounce 1.4s ease-in-out infinite;
}
@keyframes flowNoteBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ─────────────────────────────────────────
   CARDS GENÉRICOS (problem/solution style)
───────────────────────────────────────── */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card-grid > * {
  flex: 1 1 360px;
  max-width: 386px;
}
@media (max-width: 900px) {
  .card-grid > * { flex-basis: calc(50% - 10px); max-width: calc(50% - 10px); }
}
@media (max-width: 580px) {
  .card-grid > * { flex-basis: 100%; max-width: 100%; }
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) {
  .card-grid--2 { grid-template-columns: 1fr; }
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.info-card:hover {
  border-color: rgba(255,63,62,.3);
  transform: translateY(-4px);
}
.info-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,63,62,.12);
  border: 1px solid rgba(255,63,62,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.info-card__icon svg { width: 22px; height: 22px; color: var(--red); }
.info-card__title {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.info-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
}
.info-card__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card__list li {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  padding-left: 16px;
  position: relative;
}
.info-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* Cards estilo "solution" — visual azul, para blocos de destaque */
.feature-card {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  border: 1.5px solid rgba(255,255,255,.07);
  background: linear-gradient(150deg, #080c16, #0e1525, #080c16);
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s;
  isolation: isolate;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(150deg, #0c1020, #111d32, #0c1020);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,74,120,.45);
  box-shadow: 0 20px 48px rgba(0,74,120,.18);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,74,120,.7) 0%, rgba(6,98,155,.45) 100%);
  border: 1px solid rgba(6,98,155,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-card__icon svg { width: 24px; height: 24px; color: #fff; stroke-width: 1.75; }
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.feature-card__text {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   CHECKLIST (para quem é / não é)
───────────────────────────────────────── */
.split-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .split-checklist {
    grid-template-columns: 1fr;
  }
}
.split-checklist__text .content-block__text { margin-bottom: 20px; }
.checklist--stacked {
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0;
}
.checklist--stacked .checklist__item {
  max-width: 100%;
  flex-basis: auto;
}
.checklist--row {
  flex-wrap: wrap;
}
.checklist--row .checklist__item {
  flex: 0 1 auto;
  max-width: 100%;
  width: fit-content;
}
@media (max-width: 720px) {
  .checklist--row .checklist__item { width: 100%; }
}
.checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 300px;
  max-width: calc(50% - 8px);
  padding: 22px;
  border-radius: 16px;
  /* dark neutral fill (not tinted) so cards stay legible over any
     section background, including the red gradient on "não é pra quem" */
  background: rgba(5,10,18,.55);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--ease-out), border-color .3s;
}
@media (max-width: 640px) {
  .checklist__item { max-width: 100%; }
}
.checklist--yes .checklist__item { border-color: rgba(37,211,102,.3); }
.checklist--no .checklist__item { border-color: rgba(255,63,62,.35); }
.checklist__item:hover { transform: translateY(-3px); }
.checklist__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checklist__icon svg { width: 17px; height: 17px; }
.checklist--yes .checklist__icon {
  background: rgba(37,211,102,.14);
  border: 1px solid rgba(37,211,102,.35);
  color: #25D366;
}
.checklist--no .checklist__icon {
  background: rgba(255,63,62,.14);
  border: 1px solid rgba(255,63,62,.35);
  color: var(--red);
}
.checklist__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
}
.checklist__text strong { color: #fff; display: block; margin-bottom: 2px; }

/* ─────────────────────────────────────────
   LOGO CAROUSEL
───────────────────────────────────────── */
.logo-carousel {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logo-carousel__track:hover { animation-play-state: paused; }
.logo-carousel__item {
  flex-shrink: 0;
  height: 36px;
  opacity: .6;
  filter: grayscale(1) brightness(1.8);
  transition: opacity .3s, filter .3s;
}
.logo-carousel__item:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
.logo-carousel__item img { height: 100%; width: auto; display: block; }
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 580px) {
  .logo-carousel__track { gap: 32px; }
  .logo-carousel__item { height: 28px; }
}

/* ─────────────────────────────────────────
   CTA SECTION (final de página)
───────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--dark2);
}
.cta-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-section__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.cta-section__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────
   FORM (página de contato)
───────────────────────────────────────── */
.contact-form-section {
  position: relative;
  overflow: hidden;
}
.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-form-section__grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-form-section__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-form-section__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-info-item__icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255,63,62,.12);
  border: 1px solid rgba(255,63,62,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 18px; height: 18px; color: var(--red); }
.contact-info-item span { font-size: 15px; color: rgba(255,255,255,.75); }
a.contact-info-item { text-decoration: none; transition: opacity .2s; }
a.contact-info-item:hover { opacity: .75; }

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
@media (max-width: 480px) {
  .form-card { padding: 28px 20px; }
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group:not(.form-row .form-group) { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 20px; }
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .25s, background-color .25s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255,63,62,.5);
  background-color: rgba(255,255,255,.05);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ─────────────────────────────────────────
   CONTACT MODAL — popup version of the form
───────────────────────────────────────── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility 0s linear .3s;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease-out), visibility 0s;
}
.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,6,14,.75);
  backdrop-filter: blur(4px);
}
.contact-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 96vh;
  overflow-y: auto;
  background: #0B1018;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 20px;
  transform: translateY(16px) scale(.97);
  transition: transform .35s var(--ease-out);
}
.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0) scale(1);
}
@media (max-width: 480px) {
  .contact-modal__dialog { padding: 20px 16px; }
}
.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.contact-modal__close:hover { background: rgba(255,63,62,.15); color: #fff; }
.contact-modal__close svg { width: 13px; height: 13px; }
.contact-modal__eyebrow {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  padding-right: 32px;
}
.contact-modal__title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
  padding-right: 24px;
}
.contact-modal__text {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  margin-bottom: 12px;
}
body.modal-open { overflow: hidden; }

/* Compact form density inside the modal only — the dedicated
   /contato page keeps the roomier default form sizing. */
.contact-modal .form-row { gap: 8px; margin-bottom: 6px; }
.contact-modal .form-group { gap: 2px; }
.contact-modal .form-group:not(.form-row .form-group) { margin-bottom: 6px; }
.contact-modal .form-group label { font-size: 11px; }
.contact-modal .form-input,
.contact-modal .form-select,
.contact-modal .form-textarea {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 8px;
}
.contact-modal .form-select { padding-right: 32px; background-size: 14px; background-position: right 10px center; }
.contact-modal .form-card .btn {
  padding: 10px 18px;
  font-size: 13px;
  margin-top: 2px;
}
.contact-modal .form-card p { font-size: 10px !important; margin-top: 8px !important; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #020609;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}
.footer__brand img { height: 32px; margin-bottom: 16px; }
.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  max-width: 260px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}
a.footer-contact-item { transition: color .2s; }
a.footer-contact-item:hover { color: #fff; }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────
   STAT COUNTER (números grandes animados)
───────────────────────────────────────── */
.stat-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.stat-number {
  font-family: var(--font-title);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ─────────────────────────────────────────
   FEATURE PANEL — bold icon + lead text card
───────────────────────────────────────── */
.feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(254,126,88,.07), rgba(6,98,155,.05) 60%, rgba(255,255,255,.02));
  overflow: hidden;
}
.feature-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(6,98,155,.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .feature-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 40px 28px;
  }
}
.feature-panel__icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 28px;
  background: rgba(254,126,88,.08);
  border: 1px solid rgba(254,126,88,.25);
}
.feature-panel__icon-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(254,126,88,.4) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
  animation: featurePanelPulse 3s ease-in-out infinite;
}
.feature-panel__icon svg {
  position: relative;
  width: 60px;
  height: 60px;
  stroke: var(--orange);
  z-index: 1;
}
@keyframes featurePanelPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}
.feature-panel__lead {
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 18px;
}
.feature-panel__lead em {
  font-style: normal;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-panel__text {
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.stat-suffix {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  max-width: 320px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   STAT SPLIT — circular chart + text, 2 cols
───────────────────────────────────────── */
.stat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .stat-split {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.stat-split__chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.stat-chart {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}
.stat-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.stat-chart__ring-bg {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 10;
}
.stat-chart__ring-progress {
  fill: none;
  stroke: var(--orange);
  stroke: url(#statChartGradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
}
.stat-chart__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.03em;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-split__text .content-block__title { margin-top: 0; }
.stat-split__label {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 320px;
}

/* ─────────────────────────────────────────
   TEAM SPLIT — text + animated growth chart
───────────────────────────────────────── */
.team-split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .team-split { grid-template-columns: 1fr; }
}
.team-split__chart {
  display: flex;
  justify-content: center;
}
.growth-chart {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.growth-chart svg { width: 100%; height: auto; overflow: visible; }
.team-split__chart {
  flex-direction: column;
  align-items: stretch;
}
.team-split__chart .metric-strip {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
@media (max-width: 640px) {
  .team-split__chart .metric-strip { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   ORG CHART — company hierarchy tree
───────────────────────────────────────── */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.org-chart__node {
  background: #151F30;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 26px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.org-chart__node.is-visible { opacity: 1; transform: translateY(0); }
.org-chart__node--ceo {
  background: var(--gradient-red);
  border-color: transparent;
  letter-spacing: .04em;
}
.org-chart__connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,63,62,.5), rgba(255,255,255,.12));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease-out);
}
.org-chart__connector.is-visible { transform: scaleY(1); }
.org-chart__branch {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  width: 100%;
  padding-top: 40px;
  margin-top: 0;
}
.org-chart__branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,.12);
  transform: scaleX(0);
  transition: transform .5s var(--ease-out);
}
.org-chart__branch.is-visible::before { transform: scaleX(1); }
.org-chart__item {
  position: relative;
  display: flex;
  justify-content: center;
}
.org-chart__item::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,.12);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease-out);
}
.org-chart__item.is-visible::before { transform: scaleY(1); }
.org-chart__node--small {
  font-size: 12px;
  padding: 10px;
  width: 100%;
  white-space: normal;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  text-align: center;
}
@media (max-width: 640px) {
  .org-chart__branch { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .org-chart__branch::before { left: 25%; right: 25%; }
  .org-chart__branch .org-chart__item:nth-child(3)::before,
  .org-chart__branch .org-chart__item:nth-child(4)::before,
  .org-chart__branch .org-chart__item:nth-child(5)::before { top: -40px; }
  .org-chart__branch .org-chart__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }
}
@media (max-width: 480px) {
  .org-chart__branch .org-chart__item:last-child:nth-child(odd) {
    width: 100%;
  }
}
.growth-chart__grid-line {
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}
.growth-chart__bar {
  fill: url(#growthBarGradient);
  transform-box: fill-box;
  transform-origin: bottom center;
  transform: scaleY(0);
}
.growth-chart__bar.is-visible {
  transition: transform 1s var(--ease-out);
  transform: scaleY(1);
}
.growth-chart__line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.growth-chart__dot {
  fill: #0B1018;
  stroke: var(--orange);
  stroke-width: 2.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.growth-chart__dot.is-visible { opacity: 1; transform: scale(1); }
.growth-chart__badge {
  position: absolute;
  top: -8px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s, transform .6s var(--ease-out);
}
.growth-chart__badge.is-visible { opacity: 1; transform: translateY(0); }
.growth-chart__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  animation: growthDotPulse 1.6s ease-in-out infinite;
}
@keyframes growthDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}
.growth-chart__badge-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: #25D366;
}
.growth-chart__badge-text {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
@media (max-width: 480px) {
  .growth-chart__badge { position: static; margin-bottom: 16px; width: fit-content; }
}

/* ─────────────────────────────────────────
   GRADIENT DIVIDER
───────────────────────────────────────── */
.gradient-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--red) 50%, var(--blue-mid) 70%, transparent 100%);
  opacity: .4;
  margin: 0;
}

/* ─────────────────────────────────────────
   GLOW ORB (floating bg decoration)
───────────────────────────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s;
}
.glow-orb--red {
  background: radial-gradient(circle, rgba(255,63,62,.25) 0%, transparent 70%);
}
.glow-orb--blue {
  background: radial-gradient(circle, rgba(6,98,155,.3) 0%, transparent 70%);
}
.glow-orb--orange {
  background: radial-gradient(circle, rgba(254,126,88,.2) 0%, transparent 70%);
}
.glow-orb.is-visible { opacity: 1; }

/* ─────────────────────────────────────────
   SECTION GRADIENT BGs — same treatment as hero
   (gradient-brand wash + grid overlay), reused.
   Plain layered `background` on the section itself —
   no pseudo-element, no z-index, no transforms/masks.
   Opacity is baked into the rgba stops since `opacity`
   can't target a single background layer.
───────────────────────────────────────── */
.section-gradient {
  background-repeat: repeat, repeat, no-repeat;
  background-size: 60px 60px, 60px 60px, cover;
}
section.section-gradient--brand-tl {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(34deg, rgba(0,3,5,.5) 27.37%, rgba(6,98,155,.5) 66.2%, rgba(255,152,120,.5) 84.25%, rgba(253,90,74,.5) 123.4%);
}
section.section-gradient--blue-tr {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(146deg, rgba(0,3,5,.5) 27.37%, rgba(6,98,155,.5) 66.2%, rgba(255,152,120,.5) 84.25%, rgba(253,90,74,.5) 123.4%);
}
section.section-gradient--red-bl {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(214deg, rgba(0,3,5,.5) 27.37%, rgba(253,90,74,.5) 66.2%, rgba(255,152,120,.5) 84.25%, rgba(6,98,155,.5) 123.4%);
}
section.section-gradient--brand-br {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(326deg, rgba(0,3,5,.5) 27.37%, rgba(6,98,155,.5) 66.2%, rgba(255,152,120,.5) 84.25%, rgba(253,90,74,.5) 123.4%);
}

/* ─────────────────────────────────────────
   HIGHLIGHT QUOTE — decorative quotes
───────────────────────────────────────── */
.highlight-quote {
  position: relative;
  overflow: hidden;
}
.highlight-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-title);
  font-size: clamp(200px, 20vw, 320px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255,63,62,.08) 0%, transparent 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  z-index: 0;
}
.highlight-quote .container { position: relative; z-index: 1; }
.highlight-quote__text {
  position: relative;
}
.highlight-quote__accent {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ─────────────────────────────────────────
   ENHANCED FLOW — scrub animation
───────────────────────────────────────── */
.flow--enhanced .flow__step {
  opacity: 0.2;
  transition: opacity .5s var(--ease-out);
}
.flow--enhanced .flow__step.is-active {
  opacity: 1;
}
.flow--enhanced .flow__step-card {
  position: relative;
  overflow: hidden;
  background: #151F30;
  border-color: rgba(255,255,255,.12);
  transition: background-color .5s, border-color .5s, transform .5s var(--ease-out), box-shadow .5s;
}
.flow--enhanced .flow__step.is-active .flow__step-card {
  background: #1B2740;
  border-color: rgba(255,63,62,.4);
  box-shadow: 0 8px 32px rgba(255,63,62,.18);
}

/* ─────────────────────────────────────────
   FEATURE CARD ENHANCED
───────────────────────────────────────── */
.feature-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   SERVICE CARD — paleta laranja/âmbar
   Diferente dos .feature-card (azul)
───────────────────────────────────────── */
.service-card {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  border: 1.5px solid rgba(254,126,88,.12);
  background: linear-gradient(150deg, #0f0a07, #160e07, #0f0a07);
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(150deg, #16100a, #1e1408, #16100a);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254,126,88,.4);
  box-shadow: 0 20px 48px rgba(254,126,88,.12);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254,126,88,.25) 0%, rgba(255,63,62,.15) 100%);
  border: 1px solid rgba(254,126,88,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card__icon svg {
  width: 24px; height: 24px;
  color: var(--orange);
  stroke-width: 1.75;
}
.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   STACCATO — enhanced with markers
───────────────────────────────────────── */

.staccato--visual span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.staccato--visual span::before {
  content: '';
  width: 8px;
  height: 2px;
  background: var(--gradient-red);
  border-radius: 1px;
  flex-shrink: 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .4s, transform .4s var(--ease-out);
}
.staccato--visual span.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

/* ─────────────────────────────────────────
   METRIC STRIP (stats in a row)
───────────────────────────────────────── */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .metric-strip { grid-template-columns: 1fr; gap: 24px; }
}
.metric-item {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}
.metric-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-red);
  opacity: 0;
  transition: opacity .6s;
}
.metric-item.is-visible::before { opacity: 1; }
.metric-item__number {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-item__label {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   CONNECT CARDS (3 pillars com línhas)
───────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar-grid__connector { display: none; }
}
.pillar-card {
  /* solid neutral fill (not tinted) so cards stay legible over any
     section background, including the gradient sections */
  background: rgba(5,10,18,.55);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
}
.pillar-card:hover {
  border-color: rgba(255,63,62,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,63,62,.1);
}
.pillar-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-card__icon--red {
  background: rgba(255,63,62,.12);
  border: 1px solid rgba(255,63,62,.25);
}
.pillar-card__icon--blue {
  background: rgba(6,98,155,.15);
  border: 1px solid rgba(6,98,155,.3);
}
.pillar-card__icon--orange {
  background: rgba(254,126,88,.12);
  border: 1px solid rgba(254,126,88,.25);
}
.pillar-card__icon svg { width: 24px; height: 24px; }
.pillar-card__title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-card__text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.pillar-grid__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), rgba(255,63,62,.3), var(--border));
  position: relative;
}
.pillar-grid__connector::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ─────────────────────────────────────────
   CTA SECTION — background glow
───────────────────────────────────────── */
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,63,62,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   ANIMATED UNDERLINE for text-gradient em
───────────────────────────────────────── */
.highlight-quote__text em {
  position: relative;
}
.highlight-quote__text em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-red);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out);
}
.highlight-quote__text em.is-underlined::after {
  transform: scaleX(1);
}

/* ─────────────────────────────────────────
   HERO FLOATING PARTICLES
───────────────────────────────────────── */
.page-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.page-hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(254,126,88,.4);
  opacity: 0;
}

/* ─────────────────────────────────────────
   CHECKLIST ENHANCED
───────────────────────────────────────── */
.checklist__item {
  opacity: 0;
  transform: translateX(-20px);
}
.checklist__item.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .5s, transform .5s var(--ease-out);
}

/* ─────────────────────────────────────────
   SECTION WITH SIDE ACCENT (bar removed per feedback)
───────────────────────────────────────── */
.content-block--accent {
  position: relative;
}

/* ─────────────────────────────────────────
   RESPONSIVE TWEAKS
───────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .page-hero { padding-top: 136px; padding-bottom: 48px; min-height: auto; }
  .page-hero__sub { font-size: 16px; }
  .flow__note { font-size: 13px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .page-hero__title { font-size: clamp(28px, 8vw, 40px); }
  .section { padding: 56px 0; }
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
}
.whatsapp-float svg {
  display: inline-block;
  fill: #ffffff;
  background-color: #25D366;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  padding: 12px;
  animation: whatsappGlow 2s infinite;
  transition: transform .25s var(--ease-out);
}
.whatsapp-float:hover svg { transform: scale(1.06); }
@media (max-width: 767px) {
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-float svg { height: 54px; width: 54px; padding: 11px; }
}
@keyframes whatsappGlow {
  0% { box-shadow: 0 0 5px rgba(37,211,102,.5), 0 0 10px rgba(37,211,102,.5), 0 0 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 0 20px rgba(37,211,102,.5), 0 0 30px rgba(37,211,102,.5), 0 0 40px rgba(37,211,102,.5); }
  100% { box-shadow: 0 0 5px rgba(37,211,102,.5), 0 0 10px rgba(37,211,102,.5), 0 0 20px rgba(37,211,102,.5); }
}
