/* ============================================================
   MK ASSESSORIA — Apple Design System
   DESIGN.md: VoltAgent/awesome-design-md/apple
   ============================================================ */

/* ===== GOOGLE FONTS — Inter (SF Pro substitute) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ===== TOKENS — MK Assessoria Dark + Gold ===== */
:root {
  --gold:          #3537FF;
  --gold-focus:    #2a2ccc;
  --gold-light:    #5CA6FF;   /* blue on dark surfaces */
  --ink:           #ffffff;
  --ink-muted-80:  rgba(255,255,255,0.75);
  --ink-muted-48:  rgba(255,255,255,0.45);
  --on-dark:       #ffffff;
  --on-dark-muted: rgba(255,255,255,0.5);
  --canvas:        #0d0e35;
  --parchment:     #0f1040;
  --pearl:         #111450;
  --divider:       rgba(92,166,255,0.1);
  --hairline:      rgba(92,166,255,0.18);
  --tile-dark-1:   #0b0c2e;
  --tile-dark-2:   #111450;
  --nav-black:     #08091e;
  --max:           980px;
  --radius-sm:     8px;
  --radius-md:     11px;
  --radius-lg:     18px;
  --radius-pill:   9999px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(92,166,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(0,180,216,.12) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 5% 60%, rgba(53,55,255,.1) 0%, transparent 45%),
    linear-gradient(170deg, #08091e 0%, #0e1050 30%, #0a0c3a 65%, #060818 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px;
  color-scheme: dark;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.t-hero {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.28px;
}

.t-display {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.t-tagline {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0.231px;
}

.t-lead {
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.196px;
}

.t-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
}

.t-caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.224px;
}

/* ===== COLOR HELPERS ===== */
.text-blue      { color: var(--gold); }
.text-blue-dark { color: var(--gold-light); }
.text-muted     { color: var(--ink-muted-48); }
.text-on-dark   { color: var(--on-dark); }

/* ===== GLOBAL NAV ===== */
.ig-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background:
    radial-gradient(ellipse 60% 120% at 15% 50%, #4A90D9 0%, transparent 65%),
    radial-gradient(ellipse 50% 120% at 80% 30%, #00BCD4 0%, transparent 60%),
    radial-gradient(ellipse 40% 100% at 50% 80%, #3537FF 0%, transparent 55%),
    linear-gradient(100deg, #1e3a8a 0%, #2563eb 50%, #1a3aaa 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: 64px;
  border-bottom: 1px solid rgba(92,166,255,.15);
  box-shadow: 0 2px 20px rgba(53,55,255,.25);
}

.ig-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.ig-logo__img {
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== APPLE PILL BUTTON ===== */
.btn-apple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold);
  color: #ffffff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.15s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-apple:hover  { background: var(--gold-focus); }
.btn-apple:active { transform: scale(0.95); }

/* Small nav variant */
.btn-apple--sm {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  padding: 11px 22px;
}

/* Ghost pill — second CTA */
.btn-apple--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-apple--ghost:hover { background: rgba(53,55,255,0.08); }

/* Ghost on dark tile */
.btn-apple--ghost-dark {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
}

/* Large store-hero variant */
.btn-apple--lg {
  font-size: 18px;
  font-weight: 300;
  padding: 14px 28px;
}

/* Full-width on mobile */
.btn-apple--full { width: 100%; }

/* ===== CTA PAIR ===== */
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* ===== DIVIDER ===== */
.ig-divider {
  border: none;
  height: 1px;
  background: var(--hairline);
}

/* ===== SECTION BASE ===== */
.ig-section {
  padding: 80px 0;
  text-align: center;
}

/* Light tile — no dark theme = slightly lighter dark */
.tile-light    { background: var(--canvas); color: var(--ink); }

/* Parchment tile — slightly lighter than canvas */
.tile-parchment { background: var(--parchment); color: var(--ink); }

/* Dark tile — deepest black */
.tile-dark {
  background: var(--tile-dark-2);
  color: var(--on-dark);
}

/* ===== EYEBROW / LABEL ===== */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-muted-48);
  margin-bottom: 10px;
}

.tile-dark .label { color: var(--on-dark-muted); }

/* ===== SECTION TITLE & SUB ===== */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--ink-muted-48);
  max-width: 560px;
  margin: 0 auto 40px;
}

.tile-dark .section-sub { color: var(--on-dark-muted); }

/* ===== HERO ===== */
.ig-hero {
  background: var(--nav-black);   /* fallback enquanto imagens carregam */
  color: var(--on-dark);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Conteúdo do hero fica acima do vídeo e overlay */
.ig-hero .container {
  position: relative;
  z-index: 3;
}

/* ===== HERO — VÍDEO DE FUNDO ===== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Overlay: gradiente escuro azul por cima do vídeo para o texto ficar legível */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(8,9,30,0.82) 0%, rgba(8,9,30,0.55) 60%, rgba(8,9,30,0.30) 100%),
    linear-gradient(to bottom, rgba(8,9,30,0.2) 0%, rgba(8,9,30,0.65) 100%);
}

.ig-hero__eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.ig-hero__title {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.28px;
  color: var(--on-dark);
  margin-bottom: 18px;
}

.ig-hero__title .text-gold {
  color: var(--gold-light);
}

.ig-hero__deck {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--on-dark-muted);
  max-width: 580px;
  margin: 0 auto;
}

.ig-hero__cta { margin-top: 36px; }

.ig-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  color: var(--on-dark-muted);
}

.ig-hero__trust .check { color: var(--gold-light); margin-right: 4px; }

/* Stats */
.ig-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  margin: 48px auto 0;
}

.ig-stat {
  background: var(--tile-dark-2);
  padding: 20px 16px;
  text-align: center;
}

.ig-stat__num {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.28px;
  color: var(--on-dark);
}

.ig-stat__label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: var(--on-dark-muted);
  margin-top: 4px;
}

/* ===== CLIENTS CAROUSEL ===== */
.ig-clients {
  padding: 48px 0;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  position: relative;
}

/* Detalhe: linha azul sutil no topo */
.ig-clients::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3537FF 0%, #5CA6FF 50%, #3537FF 100%);
  opacity: 0.6;
}

/* Detalhe: dot grid sutilíssimo no fundo */
.ig-clients::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(53,55,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.ig-clients__label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3537FF;
  margin-bottom: 28px;
  opacity: 0.7;
}

.ig-clients__track-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ig-clients__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.ig-clients__track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ig-client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
}

.ig-client__logo-wrap {
  background: #ffffff;
  border: 1.5px solid #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  min-width: 100px;
  max-width: 170px;
  box-shadow: 0 2px 8px rgba(53,55,255,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ig-client__logo-wrap:hover {
  box-shadow: 0 4px 16px rgba(53,55,255,0.14), 0 1px 4px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.ig-client__logo {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.ig-client-sep {
  color: #d0d7e6;
  font-size: 1rem;
  flex-shrink: 0;
  padding: 0 4px;
  opacity: 0.6;
}

/* ===== EFEITO TEXTO SELECIONADO (digitando) ===== */
@media only screen and (max-width: 600px) {
  .effect {
    position: relative;
    display: inline-block;
    line-height: 1.05;
    color: #3537FF;
    background: rgba(53,55,255,0.15);
    padding: 0 4px;
    border-left: 2px solid #3537FF;
    border-right: 2px solid #3537FF;
    border-radius: 2px;
  }
  .effect::before {
    content: "";
    position: absolute;
    width: 8px; height: 8px;
    background: #3537FF;
    border-radius: 999px;
    left: -1px; top: 0;
    transform: translate(-50%, -50%);
  }
  .effect::after {
    content: "";
    position: absolute;
    width: 8px; height: 8px;
    background: #3537FF;
    border-radius: 999px;
    right: -1px; bottom: 0;
    transform: translate(50%, 50%);
  }
  .effect:empty {
    background: rgba(53,55,255,0.15);
    padding: 0;
    min-width: 10px;
    height: 1em;
  }
}

@media only screen and (min-width: 601px) {
  .effect {
    position: relative;
    color: #3537FF;
    background: rgba(53,55,255,0.13);
    padding: 0 10px;
    border-left: 5px solid #3537FF;
    border-right: 5px solid #3537FF;
    border-radius: 2px;
  }
  .effect::before {
    content: "";
    position: absolute;
    width: 16px; height: 16px;
    background: #3537FF;
    border-radius: 999px;
    left: 0; top: 0;
    transform: translate(-65%, -50%);
  }
  .effect::after {
    content: "";
    position: absolute;
    width: 16px; height: 16px;
    background: #3537FF;
    border-radius: 999px;
    right: 0; bottom: 0;
    transform: translate(65%, 50%);
  }
}

/* ===== BELIEF SECTION ===== */
.ig-belief {
  padding: 80px 0;
  background: var(--canvas);
}

.ig-belief__body {
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--ink-muted-48);
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
}

.ig-belief__body strong { color: var(--ink); font-weight: 600; }

.ig-belief__highlight {
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.374px;
  color: var(--gold-light);
  max-width: 620px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(53,55,255,0.2);
}

/* ===== PHOTO STRIP ===== */
.ig-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 0 0;
  max-width: 100%;
}

.ig-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--parchment);
}

.ig-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.7);
  transition: transform 0.4s ease;
}

.ig-photo:hover img { transform: scale(1.03); }

.ig-photo__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.12px;
  line-height: 1.3;
}

.ig-photo__caption span {
  color: rgba(255,255,255,0.6);
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RISKS ===== */
.ig-risks {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 40px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
}

.ig-risk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--parchment);
}

.ig-risk__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 69, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-risk__text strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
  color: var(--ink);
  margin-bottom: 4px;
}

.ig-risk__text span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  line-height: 1.43;
  color: var(--ink-muted-48);
}

/* ===== STEPS ===== */
.ig-steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 40px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
}

.ig-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--canvas);
}

.ig-step__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ig-step__body strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
  color: var(--ink);
  margin-bottom: 4px;
}

.ig-step__body span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  line-height: 1.43;
  color: var(--ink-muted-48);
}

/* ===== TESTIMONIALS ===== */
.ig-testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  text-align: left;
}

.ig-chat {
  background: var(--parchment);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--ink);
}

.ig-chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ig-chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  background: var(--canvas);
}

.ig-chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-chat__meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--ink);
}

.ig-chat__meta span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: var(--ink-muted-48);
}

.ig-chat__stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.ig-chat__bubble {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.374px;
  color: var(--ink-muted-80);
}

.ig-chat__result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(53, 55, 255, 0.08);
  border: 1px solid rgba(53, 55, 255, 0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
}

/* ===== FAQ ===== */
.ig-faq {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  text-align: left;
  background: var(--parchment);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ig-faq-item {
  border-bottom: 1px solid var(--hairline);
}

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

.ig-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.374px;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.47;
}

.ig-faq-question .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--hairline);
  color: var(--ink-muted-48);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.ig-faq-item.open .ig-faq-question .icon { transform: rotate(45deg); }

.ig-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.374px;
  line-height: 1.47;
  color: var(--ink-muted-48);
}

.ig-faq-item.open .ig-faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ===== CROSSROADS ===== */
.ig-crossroads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 36px 0 24px;
}

.ig-path {
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  background: var(--parchment);
  border: 1px solid var(--hairline);
  text-align: left;
  animation: pulseDelay 5s ease-in-out infinite;
  will-change: transform, opacity;
}

.ig-path--good {
  animation-delay: 0.4s;
}

@keyframes pulseDelay {
  0%   { transform: scale(1);    opacity: 1;   }
  15%  { transform: scale(1.05); opacity: .85; }
  30%  { transform: scale(1);    opacity: 1;   }
  100% { transform: scale(1);    opacity: 1;   }
}

.ig-path--bad  { border-color: rgba(255, 69, 58, 0.2); }
.ig-path--good { border-color: rgba(53, 55, 255, 0.25); }

.ig-path__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  margin-bottom: 12px;
  color: var(--ink-muted-80);
}

.ig-path--bad  .ig-path__title { color: #ff453a; }
.ig-path--good .ig-path__title { color: var(--gold); }

.ig-path__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.224px;
  line-height: 1.43;
  color: var(--ink-muted-48);
}

.ig-path--bad  .ig-path__items li::before { content: "✕  "; color: #ff453a; font-weight: 600; }
.ig-path--good .ig-path__items li::before { content: "✓  "; color: var(--gold); font-weight: 600; }

.ig-crossroads-cta {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
  text-align: center;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ===== OFFER BLOCK ===== */
.ig-offer {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  isolation: isolate;
  /* overflow: visible — needed for animated walking border ::before */
}

.ig-offer__tag {
  display: inline-block;
  background: var(--gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.ig-offer__title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.374px;
  color: var(--on-dark);
  margin-bottom: 10px;
}

.ig-offer__sub {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.374px;
  line-height: 1.47;
  color: var(--ink-muted-48);
  margin-bottom: 28px;
}

.ig-offer__list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.ig-offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.374px;
  line-height: 1.47;
  color: var(--ink);
}

.ig-offer__list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.ig-offer__value {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  color: var(--ink-muted-48);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.ig-offer__price {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.231px;
  color: var(--gold);
  margin-bottom: 24px;
}

.ig-offer__urgency {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: var(--ink-muted-48);
  margin-top: 16px;
  line-height: 1.6;
}

.ig-offer__urgency strong { color: var(--gold); }

/* ===== FOOTER ===== */
.ig-footer {
  background: var(--tile-dark-2);
  border-top: 1px solid var(--hairline);
  padding: 52px 0 40px;
  text-align: center;
}

.ig-footer p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  line-height: 1.7;
  color: var(--ink-muted-48);
}

/* ===== STICKY BOTTOM (mobile) ===== */
.ig-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 10px 20px 14px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(53,55,255,0.15);
}

/* ===== FOTO CAROUSEL (parcialmente escondido) ===== */

/* Seção container */
.ig-carousel-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--tile-dark-1);
  min-height: 380px;
}

/* CSS 2 — mask que esconde a borda esquerda do carrossel */
.ig-carousel-section::before {
  content: "";
  position: absolute;
  width: 700px;          /* largura do bloco ocultador */
  height: 600px;         /* altura */
  background: var(--tile-dark-1);  /* mesma cor da seção */
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

/* Texto à esquerda — z-index 3 (fica visível acima do mask) */
.ig-carousel-text {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 240px;
  padding: 48px 0 48px 28px;
}

.ig-carousel-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.374px;
  color: var(--on-dark);
  margin: 8px 0 12px;
}

.ig-carousel-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  line-height: 1.5;
  color: var(--ink-muted-48);
}

/* Carrossel — z-index 0 */
.ig-carousel-wrap {
  overflow: visible !important;
  position: relative;
  z-index: 0;
  flex: 1;
  min-width: 0;
}

/* CSS 1 — overflow visível no carrossel */
.ig-carousel-wrap,
.ig-carousel {
  overflow: visible !important;
}

.ig-carousel {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: photoScroll 32s linear infinite;
  will-change: transform;
}

.ig-carousel:hover { animation-play-state: paused; }

@keyframes photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fotos no carrossel */
.ig-carousel .ig-photo {
  width: 280px;
  height: 340px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: unset;
}

.ig-carousel .ig-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.7);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.ig-carousel .ig-photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(0.9);
}

/* Mobile: esconde texto, mostra só o carrossel centralizado */
@media (max-width: 520px) {
  .ig-carousel-section {
    flex-direction: column;
    min-height: auto;
    padding: 40px 0;
  }

  .ig-carousel-section::before {
    display: none; /* sem mask no mobile */
  }

  .ig-carousel-text {
    width: 100%;
    padding: 0 28px 28px;
    text-align: center;
  }

  .ig-carousel-wrap {
    width: 100%;
    overflow: hidden !important;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  }

  .ig-carousel .ig-photo {
    width: 220px;
    height: 260px;
  }
}

/* ===== DYNAMIC CARDS (paicard) ===== */
/* Keyframe GPU-composited: só rotaciona o layer, zero repaint */
@keyframes spinTransform {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

.paicard {
  margin-top: 40px;
  background: transparent;   /* fundo fornecido pelo ::after abaixo */
  border: none;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  isolation: isolate;
  overflow: hidden;           /* recorta o quadrado giratório */
}

/* Quadrado enorme com gradiente cônico — gira via transform (GPU) */
.paicard::before {
  content: "";
  position: absolute;
  width: 300%;
  aspect-ratio: 1;            /* quadrado proporcional */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    #3537FF 75%, #5CA6FF 86%, #ffffff 89%, #5CA6FF 92%, #3537FF 100%
  );
  animation: spinTransform 8s linear infinite;
  will-change: transform;     /* cria compositor layer → zero CPU por frame */
  pointer-events: none;
  z-index: -2;
}

/* Fundo interno: recobre o centro do gradiente */
.paicard::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: var(--parchment);
  pointer-events: none;
  z-index: -1;
}

/* === TABS === */
.mk-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mk-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* gradient border on hover/active */
.mk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(53,55,255,0.6), rgba(53,55,255,0.05));
  mix-blend-mode: overlay;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mk-card-ativo::before { opacity: 1; }

.mk-card-ativo {
  background: rgba(53,55,255,0.07);
  border-color: rgba(53,55,255,0.35);
}

.mk-card__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--hairline);
  color: var(--ink-muted-48);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.mk-card-ativo .mk-card__badge {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.mk-card__text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.374px;
  color: var(--ink-muted-48);
  margin-bottom: 2px;
  transition: color 0.25s;
}

.mk-card__text span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: var(--ink-muted-48);
  opacity: 0.6;
  line-height: 1.3;
}

.mk-card-ativo .mk-card__text strong { color: var(--gold-light); }
.mk-card-ativo .mk-card__text span   { opacity: 0.8; }

/* === CONTENT PANELS === */
.mk-conteudo-wrap {
  position: relative;
  min-height: 240px;
}

.mk-conteudo {
  opacity: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mk-conteudo-ativo {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transition: opacity 0.3s ease 0.12s;
}

.mk-panel {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
}

.mk-panel__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mk-panel__num {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.28px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.mk-panel__title {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.2;
  color: var(--on-dark);
}

.mk-panel__desc {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.374px;
  line-height: 1.5;
  color: var(--ink-muted-48);
  margin-bottom: 18px;
}

.mk-panel__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mk-panel__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  color: var(--ink-muted-80);
  line-height: 1.4;
}

.mk-panel__list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.mk-panel__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gold);
  background: rgba(53,55,255,0.08);
  border: 1px solid rgba(53,55,255,0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}

@media (min-width: 521px) {
  .mk-cards {
    flex-direction: row;
    gap: 10px;
  }

  .mk-card {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }

  .mk-conteudo-wrap { min-height: 220px; }
}

/* ===== BTN9 — WhatsApp animated sliding border ===== */

.btn9 {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  /* borda gradiente estática: dourado escuro → ouro → branco → ouro → dourado escuro */
  background: linear-gradient(
    to right,
    #2a2ccc, #3537FF, #5CA6FF, #ffffff, #5CA6FF, #3537FF, #2a2ccc
  );
  transition: transform 0.15s ease, filter 0.2s ease;
  overflow: hidden;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* fundo escuro interno — fica atrás do texto graças ao isolation */
.btn9::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: #1C2125;
  z-index: -1;
}

.btn9:hover {
  filter: brightness(1.15);
}

.btn9:active {
  transform: scale(0.95);
}

/* variante pequena (header, cards) */
.btn9--sm {
  min-width: auto;
  height: 44px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
}

.btn9--sm::before {
  inset: 1.5px;
  border-radius: 10px;
}

/* variante full-width (sticky mobile) */
.btn9--full {
  width: 100%;
  min-width: unset;
  justify-content: center;
  text-align: center;
}

/* ===== GRADIENT BORDER (estática — sem repaint) ===== */

.card {
  isolation: isolate;
}

.media-object {
  --border-width: 1.5px;
  position: relative;
  border: var(--border-width) solid transparent !important;
}

/* Borda dourada estática — renderiza uma vez, zero custo de animação */
.media-object::before {
  content: " ";
  position: absolute;
  inset: calc(var(--border-width) * -1);
  border: var(--border-width) solid transparent;
  border-radius: inherit;
  background-image: conic-gradient(
    from 135deg,
    #2a2ccc 0%,
    #3537FF 20%,
    #5CA6FF 35%,
    #ffffff 45%,
    #5CA6FF 55%,
    #3537FF 70%,
    #2a2ccc 100%
  );
  background-origin: border-box;
  -webkit-mask:
    linear-gradient(black, black) content-box,
    linear-gradient(black, black);
  mask:
    linear-gradient(black, black),
    linear-gradient(black, black);
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s ease;
}

.media-object:hover::before { opacity: 0.7; }

/* ===== BTN-ARROW — header pill com ícone ===== */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 5px 5px 20px;
  border-radius: 55px;
  background: linear-gradient(92deg, #3537FF -3%, #5CA6FF 95%);
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: filter 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-arrow:hover {
  filter: brightness(1.12);
}

.btn-arrow__text {
  align-self: center;
  line-height: 1;
}

.btn-arrow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 12px;
  background: #ffffff;
  border-radius: 200px;
  color: #000;
  rotate: -45deg;
  transition: rotate 0.4s ease;
  flex-shrink: 0;
}

.btn-arrow__icon svg path {
  stroke: #000;
}

.btn-arrow:hover .btn-arrow__icon {
  rotate: 0deg;
}

/* ===== SLIDESHOW BACKGROUND (depoimentos) ===== */
.backg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.backg .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgFade 20s infinite;
  pointer-events: none;
}

.backg .image:nth-child(1) { animation-delay: 0s; }
.backg .image:nth-child(2) { animation-delay: 6s; }
.backg .image:nth-child(3) { animation-delay: 14s; }

@keyframes bgFade {
  0%, 33.333%, 100% { opacity: 0; }
  16.666%, 16.667% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
  body { padding-bottom: 80px; }
  .ig-sticky { display: block; }
  .ig-hero__cta { display: none; }
  .ig-hero__title { font-size: 34px; }
}

@media (min-width: 521px) {
  body { padding-bottom: 0; }

  :root { --max: 780px; }

  .ig-hero  { padding: 96px 0 80px; }
  .ig-hero__title { font-size: 56px; }
  .ig-section { padding: 80px 0; }
  .section-title { font-size: 40px; }
  .ig-offer { padding: 52px 48px; }
  .ig-belief { padding: 80px 0; }
  .ig-crossroads { gap: 20px; }

  .ig-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }

  .ig-risks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .ig-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
  }

  .ig-photos {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .ig-photo { aspect-ratio: 3/4; }
}


/* ============================================================
   SCROLL CARDS — Serviços com foco conforme scroll
   ============================================================ */

/* Layout externo: 2 colunas lado a lado no desktop */
.ig-scroll-cards__outer {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Coluna esquerda */
.ig-scroll-cards__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--on-light);
  margin: 12px 0 16px;
}

.ig-scroll-cards__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px;
}

/* Coluna direita: stack de cards */
.ig-scroll-cards__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card base */
.bx {
  position: relative;
  border-radius: 20px;
  padding: 32px 32px 32px 48px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(53,55,255,0.06) 0%, rgba(28,33,37,0.06) 100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.bx:hover {
  transform: scale(1.02);
}

/* Borda gradiente via mask */
.bx::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(53,55,255,0.4), rgba(255,255,255,0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}

/* Estado padrão: desfocado */
.blocos {
  filter: blur(3px);
  opacity: 0.55;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.4s ease;
  will-change: filter, opacity;
}

/* Estado ativo (scroll na janela) ou hover */
.blocos.is-active,
.blocos:hover {
  filter: blur(0);
  opacity: 1;
}

.blocos.is-active::before,
.blocos:hover::before {
  background: linear-gradient(135deg, rgba(53,55,255,0.65), rgba(255,255,255,0.15));
}

/* Conteúdo interno dos cards */
.bx__num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.8;
}

.bx__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--on-light);
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.bx__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

.bx__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(53,55,255,0.12);
  border: 1px solid rgba(53,55,255,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

/* Acessibilidade: desabilita o blur se preferir menos movimento */
@media (prefers-reduced-motion: reduce) {
  .blocos {
    filter: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* Desktop: layout lado a lado com sticky */
@media (min-width: 768px) {
  .ig-scroll-cards__outer {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  .ig-scroll-cards__left {
    width: 35%;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
  }

  .ig-scroll-cards__right {
    flex: 1;
  }

  .ig-scroll-cards__title {
    font-size: 2.4rem;
  }

  .bx {
    padding: 36px 36px 36px 52px;
  }

  .bx__title {
    font-size: 1.25rem;
  }
}

/* ===== BOTÃO FLUTUANTE WHATSAPP — canto inferior direito ===== */
.mk-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 250;               /* acima do header e do .ig-sticky (200) */
  display: none;              /* liberado no desktop mais abaixo */
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;        /* verde WhatsApp — reconhecimento imediato */
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.40),
    0 2px 8px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.52),
    0 4px 12px rgba(0, 0, 0, 0.32);
}

.mk-float:active { transform: translateY(0); }

.mk-float:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.mk-float__icon { flex: none; display: block; }

/* Anel pulsante: box-shadow no ::before cresce para fora sem tingir o botão */
.mk-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: mkFloatPulse 2.6s ease-out infinite;
}

@keyframes mkFloatPulse {
  0%        { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%, 100% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* No mobile o .ig-sticky já ocupa o rodapé inteiro — evita CTA duplicado */
@media (min-width: 521px) {
  .mk-float { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-float { transition: none; }
  .mk-float::before { animation: none; }
}
