/* =========================================================
   LP Imersão Balance Pro — Dr. Fabrício Costa | Sano Lab
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,800&family=Noto+Sans:wght@400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --red:         #C41230;
  --red-dark:    #9B0E26;
  --red-light:   #F5E6E9;

  --gold:        #D4AF37;
  --gold-dark:   #B8960C;
  --gold-bright: #F0C84A;
  --gold-light:  rgba(212,175,55,.13);
  --gold-mid:    rgba(212,175,55,.28);

  --grad-rg:       linear-gradient(135deg, var(--red) 0%, #C9971C 100%);
  --grad-rg-hover: linear-gradient(135deg, var(--red-dark) 0%, var(--gold-dark) 100%);
  --grad-gold:     linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);

  --white:      #FFFFFF;
  --off-white:  #F8F8F8;
  --dark:       #0E0E0E;
  --dark-2:     #161616;
  --dark-3:     #1E1E1E;
  --gray-dark:  #333333;
  --gray:       #666666;
  --gray-light: #EBEBEB;
  --border:     #E0E0E0;

  --ff-head: 'Figtree', sans-serif;
  --ff-body: 'Noto Sans', sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.16);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.28);
  --shadow-red:  0 4px 24px rgba(196,18,48,.4);
  --shadow-gold: 0 4px 24px rgba(212,175,55,.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: .25s ease;
  --max-w: 1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; font-family: inherit; }
strong { font-weight: 700; }

/* ── Container ── */
.im-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Section ── */
.im-section { padding: 88px 0; }

/* ── Section header ── */
.im-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.im-section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.14;
  margin: 12px 0 16px;
  color: var(--dark);
}
.im-section-header p { color: var(--gray); font-size: 1rem; line-height: 1.65; }

/* ── Tags ── */
.im-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--red-light);
  color: var(--red);
}
.im-tag-red   { background: var(--red);          color: var(--white); }
.im-tag-white { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.15); }
.im-tag-gold  { background: var(--gold-light);   color: var(--gold-dark); border: 1px solid rgba(212,175,55,.25); }
.im-tag-glass { background: rgba(96,96,96,.5); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* ── Skip link ── */
.im-skip {
  position: absolute; top: -100%; left: 0; z-index: 9999;
  background: var(--red); color: var(--white);
  padding: 12px 20px; font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  border-radius: 0 0 var(--radius-sm) 0; transition: top .15s ease;
}
.im-skip:focus { top: 0; }

/* ── Dot animado ── */
.im-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 6px;
  vertical-align: middle;
  animation: im-pulse 1.8s ease-in-out infinite;
}
@keyframes im-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.5); }
}

/* ── Check icon ── */
.im-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--grad-rg);
  border-radius: 50%;
  flex-shrink: 0;
}
.im-check svg { width: 11px; height: 11px; stroke: var(--white); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.im-header {
  background: var(--dark);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.im-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.im-logo { height: 38px; width: auto; }
.im-logo-footer { height: 32px; filter: brightness(0) invert(1); }
.im-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.im-header-date {
  font-family: var(--ff-head);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.im-header-date svg { stroke: var(--gold); flex-shrink: 0; }
.im-header-date strong { color: var(--gold-bright); }
.im-header-sep { width: 1px; height: 16px; background: rgba(255,255,255,.12); }
.im-header-badge {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.im-hero {
  background: var(--dark);
  padding: 6px 0 0;
  position: relative;
  overflow: hidden;
}

/* Fundo animado: blobs */
.im-hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.im-blob { position: absolute; border-radius: 50%; filter: blur(100px); }

.im-blob-red {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(196,18,48,.48) 0%, transparent 70%);
  top: -200px; left: -140px;
  animation: blob-1 14s ease-in-out infinite;
}
.im-blob-gold {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.32) 0%, transparent 70%);
  bottom: -80px; right: 60px;
  animation: blob-2 18s ease-in-out infinite;
}
.im-blob-red2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,18,48,.22) 0%, transparent 70%);
  top: 35%; right: 380px;
  animation: blob-3 11s ease-in-out infinite;
}
/* blob dourado atrás da figura */
.im-blob-gold2 {
  width: 480px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,55,.22) 0%, transparent 65%);
  bottom: -60px; right: -60px;
  animation: blob-2 16s ease-in-out infinite reverse;
}
/* spotlight na base da figura */
.im-blob-spot {
  width: 360px; height: 200px;
  background: radial-gradient(ellipse, rgba(212,175,55,.3) 0%, rgba(196,18,48,.15) 50%, transparent 70%);
  bottom: 0; right: 80px;
  filter: blur(50px) !important;
  animation: blob-3 9s ease-in-out infinite;
}

@keyframes blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(80px, 60px) scale(1.12); }
  66%       { transform: translate(-50px, 90px) scale(.9); }
}
@keyframes blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-90px, -70px) scale(1.2); }
  70%       { transform: translate(60px, -30px) scale(.88); }
}
@keyframes blob-3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-70px, 50px); }
}

/* Grid texture */
.im-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Hero inner ── */
.im-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 48px;
  align-items: start;
}

/* Conteúdo esquerdo */
.im-hero-content { display: flex; flex-direction: column; padding-top: 52px; padding-bottom: 32px; }

/* Logo no hero */
.im-hero-logo {
  width: 260px;
  height: auto;
  display: block;
  margin-bottom: 32px;
}

/* Logo overlay na foto (mobile only) */
.im-hero-logo-over { display: none; }

/* Second hero */
.im-second-hero {
  background: var(--dark);
  padding: 56px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.im-second-hero .im-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.im-second-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 40px;
}
.im-second-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.im-second-hero .im-countdown { margin-bottom: 32px; }
.im-second-hero .im-btn-hero-cta { margin-top: 0; }
.im-second-hero .im-date-chip { align-self: center; }

/* Chip de data */
.im-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-bright);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  align-self: flex-start;
}
.im-date-chip svg { stroke: var(--gold-bright); flex-shrink: 0; }
.im-date-chip strong { color: var(--white); }

.im-hero-content .im-tag { align-self: flex-start; margin-bottom: 20px; }

.im-hero-content h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 36px;
}
.im-hero-content h1 em {
  font-style: normal;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.im-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 460px;
}

.im-hero-bullets { display: flex; flex-direction: column; gap: 13px; }
.im-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.82);
  font-size: .97rem;
  line-height: 1.4;
}
.im-hero-bullets li strong { color: var(--white); }

.im-hero-cta-group {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
}
.im-hero-cta-group .im-btn-hero-cta {
  width: 100%;
  white-space: normal;
  text-align: center;
}

.im-hero-microcopy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
  text-align: center;
}

.im-countdown {
  margin-top: 32px;
  margin-bottom: 28px;
}
.im-countdown-label {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.im-countdown-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.im-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-width: 64px;
}
.im-countdown-num {
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.im-countdown-desc {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}
.im-countdown-sep {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.im-btn-hero-cta {
  display: block;
  width: fit-content;
  margin-top: 0;
  padding: 16px 40px;
  background: var(--grad-rg);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  transition: opacity var(--transition), transform var(--transition);
  touch-action: manipulation;
}
.im-btn-hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease infinite;
}
.im-btn-hero-cta:hover { opacity: .9; transform: translateY(-2px); }

/* Direita: foto cutout */
.im-hero-right { align-self: end; }

.im-hero-cutout-wrap {
  position: relative;
}

.im-photo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.im-photo-orb-red {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(196,18,48,.55) 0%, transparent 60%);
  top: -40px; left: -80px;
  animation: orb-pulse-r 6s ease-in-out infinite;
}
.im-photo-orb-gold {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,175,55,.42) 0%, transparent 60%);
  bottom: -20px; right: -60px;
  animation: orb-pulse-g 8s ease-in-out infinite;
}
@keyframes orb-pulse-r {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: .8; }
  50%       { transform: scale(1.2) translate(20px, 10px); opacity: 1; }
}
@keyframes orb-pulse-g {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: .7; }
  50%       { transform: scale(1.15) translate(-15px, -10px); opacity: 1; }
}

/* ground glow — elipse na base da figura */
.im-hero-cutout-wrap::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(212,175,55,.55) 0%, rgba(196,18,48,.3) 40%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: orb-pulse-g 5s ease-in-out infinite;
}

.im-hero-cutout {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  /* camadas: contorno dourado fino → brilho médio → halo externo vermelho */
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.5));
}

/* Form card */
.im-form-wrap { display: flex; flex-direction: column; gap: 10px; }

.im-form-card {
  background: var(--white);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(212,175,55,.08);
}

.im-form-card-header {
  background: var(--grad-rg);
  padding: 14px 22px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.im-form-card-ornament {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,.04) 12px,
    rgba(255,255,255,.04) 13px
  );
  pointer-events: none;
}
.im-form-card-header h2 {
  position: relative;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.im-form-card-header p {
  position: relative;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
}
.im-form-card-header p strong { color: var(--gold-bright); }

/* Free badge */
.im-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-light);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold-bright);
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  position: relative;
  margin-bottom: 6px;
}

/* Form campos */
.im-form { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }

.im-field { display: flex; flex-direction: column; gap: 3px; }
.im-field label {
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: .01em;
}
.im-required { color: var(--red); }
.im-field input,
.im-field select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.im-field input:focus,
.im-field select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
.im-field input.is-invalid,
.im-field select.is-invalid { border-color: #DC2626; }
.im-field input.is-valid,
.im-field select.is-valid   { border-color: #16a34a; }
.im-field input::placeholder { color: #aaa; font-size: .92rem; }
.im-field-error {
  font-size: .78rem;
  color: #DC2626;
  min-height: 1.2em;
  font-family: var(--ff-head);
}

.im-select-wrap { position: relative; }
.im-select-wrap select { padding-right: 38px; cursor: pointer; }
.im-select-arrow {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--gray); pointer-events: none;
}

/* Botão submit */
.im-btn-submit {
  width: 100%; height: 46px;
  background: var(--grad-rg);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-red);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}
.im-btn-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0%  { transform: translateX(-100%); }
  55% { transform: translateX(100%); }
  100%{ transform: translateX(100%); }
}
.im-btn-submit:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(196,18,48,.5); }
.im-btn-submit:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.im-btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.im-btn-loading:not([hidden]) { display: flex; align-items: center; gap: 8px; }
.im-spinner { width: 18px; height: 18px; stroke: var(--white); animation: im-spin .7s linear infinite; }
@keyframes im-spin { to { transform: rotate(360deg); } }

.im-form-disclaimer {
  font-size: .74rem;
  color: var(--gray);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  line-height: 1.5;
}
.im-form-disclaimer svg { stroke: var(--gray); flex-shrink: 0; }

/* Urgência */
.im-form-urgency {
  text-align: center;
  font-family: var(--ff-head);
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  padding: 2px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estado de sucesso */
.im-form-success {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.im-success-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(196,18,48,.12), rgba(212,175,55,.12));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.im-success-icon svg { width: 26px; height: 26px; stroke: var(--gold-dark); }
.im-form-success h3 { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 800; color: var(--dark); }
.im-form-success p  { font-size: .9rem; color: var(--gray); max-width: 300px; margin: 0 auto; }
.im-success-sub     { font-size: .8rem !important; }

.im-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: #25D366; color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--ff-head); font-weight: 700; font-size: .93rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: var(--transition);
  margin-top: 4px;
}
.im-btn-wa:hover { background: #1fbe5c; transform: translateY(-2px); }
.im-btn-wa svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SOBRE A IMERSÃO
══════════════════════════════════════════ */
.im-about { background: var(--white); }

.im-about-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: center;
}

.im-about-text .im-tag { margin-bottom: 16px; }

.im-about-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}

.im-about-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 14px;
}
.im-about-text p strong { color: var(--dark); }

.im-about-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.im-about-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-dark);
  font-size: .95rem;
}

/* Vídeo 9:16 */
.im-about-video-wrap { width: 100%; }
.im-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #000;
  object-fit: cover;
}

.im-video-placeholder {
  aspect-ratio: 9 / 16;
  width: 100%;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.im-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196,18,48,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(212,175,55,.2) 0%, transparent 55%);
  pointer-events: none;
}

.im-video-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}

.im-video-icon svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,.4);
  color: rgba(255,255,255,.4);
}

.im-video-label {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}
.im-video-label span {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255,255,255,.25);
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.im-trust-bar { background: var(--dark-3); border-top: 1px solid rgba(212,175,55,.12); border-bottom: 1px solid rgba(212,175,55,.12); padding: 20px 24px; }
.im-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.im-trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 8px 36px;
}
.im-trust-item strong {
  font-family: var(--ff-head);
  font-size: 1.3rem; font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.im-trust-item span {
  font-size: .69rem; color: rgba(255,255,255,.45);
  margin-top: 3px; text-transform: uppercase; letter-spacing: .06em;
}
.im-trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ══════════════════════════════════════════
   O QUE VOCÊ VAI APRENDER
══════════════════════════════════════════ */
.im-what { background: var(--off-white); }

.im-what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  margin-bottom: 52px;
}
.im-what-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  transition: var(--transition);
}
.im-what-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.im-what-card-gold {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212,175,55,.15);
}
.im-what-card-gold:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.im-what-card-gold .im-what-num { -webkit-text-fill-color: transparent; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; }
.im-what-card-gold .im-what-num small { -webkit-text-fill-color: transparent; }
.im-what-card-gold h3 { color: var(--dark); }
.im-what-card-gold p  { color: var(--gray); }

.im-what-num {
  font-family: var(--ff-head);
  font-size: 3.2rem; font-weight: 900;
  color: var(--red); line-height: 1;
  margin-bottom: 4px;
}
.im-what-num small { font-size: 1.4rem; font-weight: 700; }
.im-what-card h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.im-what-card p  { font-size: .88rem; color: var(--gray); line-height: 1.58; }

.im-what-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 56px;
  max-width: 820px;
  margin: 0 auto;
}
.im-what-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .94rem; color: var(--gray-dark); line-height: 1.45;
}

/* ══════════════════════════════════════════
   MENTOR
══════════════════════════════════════════ */
.im-mentor { background: var(--white); }
.im-mentor-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.im-mentor-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin: 0 auto;
}
.im-mentor-orb {
  position: absolute;
  width: 110%; height: 60%;
  left: -5%; top: -10%;
  background: radial-gradient(ellipse, rgba(212,175,55,.18) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: orb-pulse-g 9s ease-in-out infinite;
  z-index: 0;
}
.im-mentor-img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  border-radius: var(--radius-lg);
  mask-image: none;
  -webkit-mask-image: none;
}
.im-mentor-img-badge {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to right, rgba(212,175,55,.15), rgba(196,18,48,.15));
  border-top: 1px solid rgba(212,175,55,.2);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  font-family: var(--ff-head); font-size: .82rem; font-weight: 700;
  color: var(--dark);
  display: flex; align-items: center; gap: 8px;
}
.im-mentor-img-badge svg { stroke: var(--dark); flex-shrink: 0; }

.im-mentor-content .im-tag { margin-bottom: 14px; }
.im-mentor-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--dark);
  margin-bottom: 20px; line-height: 1.1;
}
.im-mentor-content > p { color: var(--gray); font-size: 1rem; line-height: 1.72; margin-bottom: 14px; }
.im-mentor-content > p strong { color: var(--dark); }
.im-creds { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.im-creds li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--gray-dark); font-size: .93rem; line-height: 1.5;
}
.im-creds li svg { width: 20px; height: 20px; stroke: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
.im-depos { background: var(--dark-2); }
.im-depos .im-section-header h2 { color: var(--white); }
.im-depos .im-section-header p  { color: rgba(255,255,255,.5); }
.im-depos-grid { columns: 3; column-gap: 18px; }
.im-depos-grid img {
  display: block; width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  break-inside: avoid;
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
  transition: transform var(--transition);
}
.im-depos-grid img:hover { transform: scale(1.02); }

/* ══════════════════════════════════════════
   FORMULÁRIO REPETIDO
══════════════════════════════════════════ */
.im-form-repeat { background: var(--dark); position: relative; overflow: hidden; }
.im-form-repeat::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.im-form-repeat-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.im-form-repeat-content .im-tag { margin-bottom: 16px; }
.im-form-repeat-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.14; margin-bottom: 16px;
}
.im-form-repeat-content p { color: rgba(255,255,255,.55); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.im-repeat-bullets { display: flex; flex-direction: column; gap: 15px; }
.im-repeat-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.82); font-size: .95rem;
}
.im-repeat-bullets li svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }

/* Form card no repeat: usa bordas arredondadas completas */
.im-form-repeat .im-form-card { border-radius: var(--radius-xl); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.im-faq { background: var(--white); }
.im-faq-list {
  max-width: 720px; margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 10px;
}
.im-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.im-faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.08);
}
.im-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none;
  text-align: left; font-family: var(--ff-head);
  font-size: .97rem; font-weight: 600; color: var(--dark);
  transition: var(--transition);
}
.im-faq-q:hover { background: var(--off-white); }
.im-faq-q svg { width: 20px; height: 20px; stroke: var(--gray); flex-shrink: 0; transition: transform var(--transition), stroke var(--transition); }
.im-faq-item.open .im-faq-q { color: var(--gold-dark); }
.im-faq-item.open .im-faq-q svg { transform: rotate(45deg); stroke: var(--gold-dark); }
.im-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.im-faq-item.open .im-faq-a { max-height: 240px; }
.im-faq-a p { padding: 0 24px 20px; color: var(--gray); font-size: .93rem; line-height: 1.68; }

.im-faq-cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.im-faq-cta p { color: var(--gray); font-size: .95rem; }
.im-faq-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: #25D366; color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.28);
  transition: var(--transition);
}
.im-faq-wa:hover { background: #1fbe5c; transform: translateY(-2px); }
.im-faq-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.im-cta-final {
  background: var(--dark);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.im-cta-blobs { position: absolute; inset: 0; pointer-events: none; }
.im-blob-gold-cta {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: cta-pulse 6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.im-cta-inner { position: relative; z-index: 1; }
.im-cta-final h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 28px;
  font-weight: 900; line-height: 1.18;
  color: var(--white); margin-bottom: 18px;
}
.im-cta-final h2 em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.im-cta-final p { color: rgba(255,255,255,.62); font-size: 1.05rem; max-width: 500px; margin: 0 auto 52px; }

.im-btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 52px;
  background: var(--grad-rg);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--ff-head); font-size: 1.08rem; font-weight: 700;
  letter-spacing: .01em;
  box-shadow: var(--shadow-red), 0 0 40px rgba(212,175,55,.12);
  transition: opacity var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
  touch-action: manipulation;
}
.im-btn-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease infinite;
}
.im-btn-cta:hover { opacity: .9; transform: translateY(-2px); }
.im-btn-cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.im-cta-sub {
  margin-top: 32px;
  font-size: .82rem; color: rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center; gap: 2px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.im-footer {
  background: #090909;
  padding: 36px 0;
  color: rgba(255,255,255,.35);
  font-size: .84rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.im-footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.im-footer a { color: var(--gold); }
.im-footer a:hover { text-decoration: underline; }
.im-footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.18); max-width: 560px; line-height: 1.6; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.im-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.im-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.im-whatsapp-float:focus-visible { outline: 3px solid #25D366; outline-offset: 3px; }
.im-whatsapp-float svg { width: 30px; height: 30px; }

/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hero */
  .im-hero         { padding: 0 0 56px; }
  .im-hero-inner   { grid-template-columns: 1fr; gap: 0; align-items: stretch; }
  .im-hero-right   { order: -1; max-height: 440px; overflow: hidden; }
  .im-hero-cutout-wrap { height: 440px; overflow: hidden; }
  .im-hero-cutout  { width: 100%; height: auto; }
  .im-hero-content { padding-top: 36px; padding-bottom: 52px; }

  /* Sobre */
  .im-about-inner      { grid-template-columns: 1fr; gap: 44px; }
  .im-about-video-wrap { max-width: 300px; margin: 0 auto; }

  /* Formulário repetido */
  .im-form-repeat-inner { grid-template-columns: 1fr; gap: 48px; }
  .im-form-repeat .im-form-wrap { max-width: 540px; margin: 0 auto; width: 100%; }
  .im-form-repeat .im-form-card { border-radius: var(--radius-xl); }

  /* Mentor */
  .im-mentor-inner    { grid-template-columns: 280px 1fr; gap: 44px; }
  .im-mentor-img-wrap { aspect-ratio: 3/4; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .im-section { padding: 60px 0; }

  /* ── Hero ── */
  .im-hero             { padding: 0 0 8px; overflow: visible; }
  .im-hero-right       { position: relative; max-height: 300px; overflow: visible; }
  .im-hero-cutout-wrap {
    height: 300px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  }
  .im-hero-cutout { width: 100%; height: auto; filter: none; }
  /* Orbs da foto e glow removidos no mobile */
  .im-photo-orb               { display: none; }
  .im-hero-cutout-wrap::after { content: none; }

  /* Fundo reescalado para mobile */
  .im-blob-red  { width: 320px; height: 320px; top: -80px; left: -80px; }
  .im-blob-gold { width: 260px; height: 260px; bottom: -40px; right: -20px; }
  .im-blob-red2 { width: 180px; height: 180px; top: 30%; right: 0; }
  .im-blob-gold2 { width: 220px; height: 280px; bottom: -30px; right: -20px; }
  .im-blob-spot { display: none; }
  .im-hero-logo        { display: none; }
  .im-hero-logo-over {
    display: block;
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    z-index: 5;
    filter: drop-shadow(0 0 4px rgba(0,0,0,.35)) drop-shadow(0 3px 12px rgba(0,0,0,.3));
  }
  .im-hero-content     { padding-top: 160px; padding-bottom: 44px; align-items: center; text-align: center; }
  .im-hero-content .im-tag { align-self: center; }
  .im-date-chip        { align-self: center; }
  .im-hero-content h1  { font-size: clamp(1.9rem, 6vw, 2.5rem); }
  .im-hero-sub         { text-align: center; max-width: 100%; }
  .im-hero-cta-group   { width: 100%; align-items: center; }
  .im-btn-hero-cta     { width: 100%; text-align: center; }
  .im-hero-microcopy   { text-align: center; }
  .im-countdown        { margin-top: 12px; margin-bottom: 10px; }
  .im-countdown-inner  { justify-content: center; }

  /* ── Trust bar ── */
  .im-trust-bar { display: none; }

  /* ── Sobre ── */
  .im-about-text       { text-align: center; }
  .im-about-bullets    { align-items: flex-start; }
  .im-about-bullets li { justify-content: flex-start; text-align: left; }

  /* ── O que vai aprender ── */
  .im-what-grid      { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .im-what-list      { grid-template-columns: 1fr; gap: 12px; }
  .im-what-list li   { justify-content: flex-start; text-align: left; }

  /* ── Mentor ── */
  .im-mentor-inner    { grid-template-columns: 1fr; }
  .im-mentor-img-wrap { max-height: 280px; aspect-ratio: 4/3; border-radius: var(--radius-lg); }
  .im-mentor-img      { object-position: center 15%; mask-image: linear-gradient(to bottom, black 65%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%); }
  .im-mentor-content  { text-align: center; }
  .im-creds           { align-items: flex-start; }
  .im-creds li        { justify-content: flex-start; text-align: left; }

  /* ── Depoimentos: carrossel infinito ── */
  .im-depos-wrap {
    position: relative;
  }
  .im-depos-wrap::before,
  .im-depos-wrap::after {
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    width: 9px;
    height: 9px;
    border-top: 1.5px solid rgba(255,255,255,.35);
    border-right: 1.5px solid rgba(255,255,255,.35);
    pointer-events: none;
    z-index: 10;
  }
  .im-depos-wrap::before {
    left: 8px;
    transform: rotate(-135deg);
  }
  .im-depos-wrap::after {
    right: 8px;
    transform: rotate(45deg);
  }
  .im-depos-grid {
    columns: unset;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 12px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  }
  .im-depos-grid::-webkit-scrollbar { display: none; }
  .im-depos-grid img {
    width: auto;
    height: auto;
    max-width: 78%;
    flex-shrink: 0;
    margin-bottom: 0;
    scroll-snap-align: center;
  }

  /* ── Formulário repetido ── */
  .im-form-repeat-content { text-align: center; }
  .im-repeat-bullets      { align-items: flex-start; }
  .im-repeat-bullets li   { justify-content: flex-start; text-align: left; }
  .im-form-wrap           { width: 100%; }
  .im-form-card           { width: 100%; }

  /* ── FAQ ── */
  .im-faq-q   { font-size: .92rem; padding: 18px 20px; }
  .im-faq-a p { padding: 0 20px 18px; }

  /* ── CTA final ── */
  .im-cta-final    { padding: 72px 0; }
  .im-cta-final h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .im-btn-cta      { width: 100%; max-width: 400px; padding: 16px 24px; }

  /* ── Footer ── */
  .im-footer-inner { padding: 0 16px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .im-section   { padding: 52px 0; }
  .im-container { padding: 0 16px; }

  /* ── Hero ── */
  .im-hero-right       { max-height: 280px; }
  .im-hero-cutout-wrap { height: 280px; }
  .im-hero-logo-over   { width: 300px; bottom: -100px; }
  .im-hero-content     { padding-top: 140px; }
  .im-hero-content h1  { font-size: clamp(1.65rem, 7vw, 2rem); }
  .im-btn-hero-cta     { font-size: .97rem; padding: 14px 20px; }
  .im-hero-content .im-tag { font-size: .62rem; padding: 4px 11px; }
  .im-about-text .im-tag  { font-size: .62rem; padding: 4px 11px; }

  /* ── Countdown ── */
  .im-countdown-unit { min-width: 52px; padding: 8px 10px; }
  .im-countdown-num  { font-size: 1.5rem; }
  .im-countdown-sep  { font-size: 1.2rem; margin-bottom: 10px; }


  /* ── Section header ── */
  .im-section-header    { margin-bottom: 36px; }
  .im-section-header h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .im-section-header p  { font-size: .9rem; }

  /* ── O que vai aprender ── */
  .im-what-num { font-size: 2.6rem; }

  /* ── Depoimentos ── */
  .im-depos-grid img { max-width: 80%; }

  /* ── Formulário ── */
  .im-form-card-header { padding: 12px 16px; }
  .im-form             { padding: 14px 14px; gap: 9px; }
  .im-field input,
  .im-field select     { height: 44px; font-size: .9rem; }
  .im-btn-submit       { height: 48px; font-size: .97rem; }

  /* ── CTA final ── */
  .im-cta-final    { padding: 60px 0; }
  .im-cta-final h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .im-btn-cta      { padding: 15px 24px; font-size: .95rem; max-width: 100%; }

  /* ── WhatsApp float ── */
  .im-whatsapp-float     { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .im-whatsapp-float svg { width: 26px; height: 26px; }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .im-dot { animation: none; opacity: 1; }
}
