/* ==========================================================================
   ECOM360 — Página de captura
   CSS único, sem framework. Mobile-first (base 360px), sobe com min-width.
   ========================================================================== */

/* ---------- Fontes auto-hospedadas ---------------------------------------
   Coloque os .woff2 em assets/fonts/. Enquanto não existirem, o fallback
   entra sem quebrar nada. font-display: swap evita bloqueio de render.      */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* Cor */
  --ink:        #241C37;
  --plum-deep:  #2E1B45;
  --plum:       #4A2E6B;
  --magenta:    #B5388A;
  --coral:      #FF6B5B;
  --coral-btn:  #E04A38;
  --gold:       #E0A458;
  --paper:      #FCFAF7;
  --cream:      #F5EFE8;
  --muted:      #6E6580;

  /* Raio */
  --r-card: 14px;
  --r-input: 10px;
  --r-pill: 999px;

  /* Elevação (baixa, em camadas — nada de glow) */
  --sh-1: 0 1px 2px rgba(36,28,55,.06), 0 4px 12px rgba(36,28,55,.05);
  --sh-2: 0 2px 4px rgba(36,28,55,.08), 0 12px 32px rgba(36,28,55,.10);

  /* Tipografia */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-util: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1120px;
  --pad-x: 20px;
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; }

/* ---------- Foco visível ------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Utilitários -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(11px, 2.6vw, 12px);
  line-height: 1.4;
}

/* ---------- Seções (ritmo de cores) -------------------------------------- */
.section { padding-block: clamp(56px, 9vw, 108px); position: relative; }
.section--ink   { background: var(--ink);   color: var(--paper); }
.section--paper { background: var(--paper);  color: var(--ink); }
.section--cream { background: var(--cream);  color: var(--ink); }

.section--ink .eyebrow   { color: var(--gold); }
.section--paper .eyebrow { color: var(--magenta); }
.section--cream .eyebrow { color: var(--magenta); }

/* Grão sutil no fundo escuro */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: screen;
}

/* Filete de cabelo com gradiente plum→magenta */
.hairline-grad {
  width: min(120px, 40%);
  height: 1px;
  border: 0;
  margin: 0 0 24px;
  background: linear-gradient(90deg, var(--plum), var(--magenta));
}

/* ---------- Trilho de módulo (elemento assinatura) ----------------------- */
.module { position: relative; }
.module__grid { position: relative; }
.module__rail {
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.module__rail::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

/* ---------- Tipografia de títulos ---------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(27px, 5.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lead { font-size: clamp(16px, 2.4vw, 18px); }
.text-muted { color: var(--muted); }
.section--ink .text-muted { color: rgba(252,250,247,.66); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 3;
  padding-block: 20px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { height: 26px; width: auto; }
.header-note {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(252,250,247,.7);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-block: clamp(28px, 5vw, 56px) clamp(56px, 8vw, 96px);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 20px; color: var(--gold); }
.hero h1 { margin-bottom: 22px; }
.hero__sub {
  color: rgba(252,250,247,.74);
  font-size: clamp(16px, 2.4vw, 18px);
  max-width: 46ch;
  margin-bottom: 26px;
}
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: rgba(252,250,247,.86);
  font-weight: 500;
}
.pill::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral); flex: none;
}

/* Sublinhado manuscrito no "estruturada" */
.ink-underline { position: relative; white-space: nowrap; }
.ink-underline svg {
  position: absolute;
  left: 0; right: 0; bottom: -0.16em;
  width: 100%; height: 0.28em;
  overflow: visible;
}
.ink-underline path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw-underline .6s ease-out .35s forwards;
}
@keyframes draw-underline { to { stroke-dashoffset: 0; } }

/* Card do formulário */
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--sh-2);
  padding: clamp(24px, 4vw, 34px);
  position: relative;
  z-index: 2;
}
.form-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 27px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-card__support { color: var(--muted); font-size: 15px; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  font-family: inherit;
  font-size: 16px; /* nunca < 16px: evita zoom no iOS */
  padding: 14px 15px;
  border: 1.5px solid rgba(36,28,55,.16);
  border-radius: var(--r-input);
  background: #fff;
  color: var(--ink);
  transition: border-color 140ms ease-out, box-shadow 140ms ease-out;
}
.field input::placeholder { color: #A69FB2; }
.field input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(74,46,107,.12);
  outline: none;
}
.field input[aria-invalid="true"] {
  border-color: var(--coral-btn);
}
.field-error {
  display: none;
  color: var(--coral-btn);
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
}
.field-error.is-visible { display: block; }

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Botão */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 16px 22px;
  border: 0;
  border-radius: var(--r-input);
  background: var(--coral-btn);
  color: #fff;
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 140ms ease-out, background-color 140ms ease-out;
}
.btn:hover { transform: translateY(-1px); background: #C93F2E; }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .82; cursor: default; transform: none; }
.btn__spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-microcopy {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.form-legal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(36,28,55,.08);
}
.form-legal a { color: var(--plum); text-decoration: underline; }

/* ==========================================================================
   MÓDULO 01 — DOR
   ========================================================================== */
.dor__intro { max-width: 62ch; margin-bottom: 40px; }
.dor__intro h2 { margin-bottom: 18px; }
.dor__intro p { font-size: 17px; }
.dor__intro strong { color: var(--ink); }

.dor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(36,28,55,.1);
  border: 1px solid rgba(36,28,55,.1);
  border-radius: var(--r-card);
  overflow: hidden;
}
.dor-card {
  background: var(--paper);
  padding: 26px clamp(20px, 3vw, 30px);
  opacity: 0;
  transform: translateY(14px);
}
.dor-card.reveal { animation: fade-up .2s ease-out forwards; }
.dor-card:nth-child(1).reveal { animation-delay: 0ms; }
.dor-card:nth-child(2).reveal { animation-delay: 60ms; }
.dor-card:nth-child(3).reveal { animation-delay: 120ms; }
.dor-card:nth-child(4).reveal { animation-delay: 180ms; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
.dor-card__head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2.6vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.dor-card__sub { color: var(--muted); font-size: 15px; }

/* ==========================================================================
   MÓDULO 02 — AGENDA DA AULA
   ========================================================================== */
.agenda__head { margin-bottom: 36px; }
.agenda__head h2 { margin-top: 14px; }
.agenda-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 48px;
}
.agenda-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(36,28,55,.12);
  align-items: start;
}
.agenda-item__num {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
  padding-top: 3px;
}
.agenda-item__text { font-size: 16px; }

/* ==========================================================================
   MÓDULO 03 — AUTORIDADE
   ========================================================================== */
.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.author-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-1);
  aspect-ratio: 4 / 5;
  background: var(--plum-deep);
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-body h2 { margin: 12px 0 18px; }
.author-body p { margin-bottom: 14px; font-size: 17px; }
.author-body .todo { color: var(--muted); font-style: italic; }
.author-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--plum);
  text-decoration: none; margin-top: 4px;
}
.author-ig:hover { text-decoration: underline; }

/* ==========================================================================
   MÓDULO 04 — PRA QUEM É
   ========================================================================== */
.fit__head { margin-bottom: 34px; }
.fit-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.fit-col { padding-left: 18px; border-left: 2px solid var(--muted); }
.fit-col--yes { border-left-color: var(--gold); }
.fit-col h3 {
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin-bottom: 16px;
}
.fit-col--yes h3 { color: #9C7A2E; }
.fit-col--no h3 { color: var(--muted); }
.fit-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.fit-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  font-size: 16px; align-items: start;
}
.fit-list li::before { margin-top: 2px; }
.fit-col--yes .fit-list li::before { content: "＋"; color: #9C7A2E; font-weight: 700; }
.fit-col--no .fit-list li::before { content: "－"; color: var(--muted); font-weight: 700; }

/* ==========================================================================
   MÓDULO 05 — EVENTO + CONTAGEM
   ========================================================================== */
.event-card {
  max-width: 720px;
  margin-inline: auto;
  border: 1px solid rgba(224,164,88,.28);
  border-radius: var(--r-card);
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  position: relative;
  z-index: 2;
}
.event-card .eyebrow { color: var(--gold); }
.event-card h2 { margin: 14px 0 28px; }
.event-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
  margin-bottom: 34px;
}
.event-fact__label {
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 4px;
}
.event-fact__value { font-size: 16px; color: rgba(252,250,247,.9); }

.countdown { margin-bottom: 24px; }
.countdown__grid {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 3vw, 20px);
}
.cd-unit { min-width: 60px; }
.cd-unit__num {
  font-family: var(--font-util);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1;
  color: var(--paper);
}
.cd-unit__label {
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  color: var(--gold);
  margin-top: 8px;
}
.countdown__live {
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(15px, 3vw, 20px);
  color: var(--coral);
}
.event-warn {
  font-size: 14px;
  color: rgba(252,250,247,.66);
  max-width: 46ch;
  margin: 4px auto 0;
}

/* ==========================================================================
   MÓDULO 06 — TRANSPARÊNCIA
   ========================================================================== */
.transp { max-width: 64ch; }
.transp h2 { margin: 14px 0 18px; }
.transp p { font-size: 17px; margin-bottom: 14px; }

/* ==========================================================================
   MÓDULO 07 — FAQ
   ========================================================================== */
.faq__head { margin-bottom: 30px; }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid rgba(36,28,55,.14);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  display: block;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  position: absolute;
  right: 2px; top: 22px;
  width: 18px; height: 18px;
  transition: transform 200ms ease-out;
  color: var(--magenta);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 40px 22px 0;
  color: var(--muted);
  font-size: 16px;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta__inner { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta p { color: rgba(252,250,247,.72); font-size: 17px; margin-bottom: 30px; }
.final-cta .btn { width: auto; padding-inline: 40px; }

/* ==========================================================================
   BARRA STICKY MOBILE
   ========================================================================== */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(36,28,55,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(110%);
  transition: transform 220ms ease-out;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__text {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(252,250,247,.9);
}
.sticky-bar .btn {
  width: auto;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sticky-bar { display: flex; }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer { font-size: 13px; }
.site-footer .container { position: relative; z-index: 2; }
.footer-logo { height: 22px; margin-bottom: 20px; }
.footer-line { color: rgba(252,250,247,.7); margin-bottom: 8px; }
.footer-links { margin-bottom: 18px; }
.footer-links a { color: rgba(252,250,247,.9); text-decoration: underline; margin-right: 16px; }
.footer-fine { color: rgba(252,250,247,.5); font-size: 12px; line-height: 1.6; max-width: 68ch; }

/* Placeholder para imagens ausentes */
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: var(--plum-deep);
  color: rgba(255,255,255,.7);
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
  padding: 12px;
}

/* ==========================================================================
   PÁGINA DE OBRIGADO
   ========================================================================== */
.ty {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px calc(40px + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}
.ty__inner { position: relative; z-index: 2; max-width: 520px; }
.ty__check {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  color: var(--coral);
}
.ty__check circle { stroke: rgba(255,107,91,.3); }
.ty__check path {
  fill: none; stroke: var(--coral); stroke-width: 4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: draw-check .4s ease-out .2s forwards;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.ty h1 { margin-bottom: 18px; }
.ty p { color: rgba(252,250,247,.74); font-size: 17px; margin-bottom: 14px; }
.ty .btn { width: auto; padding-inline: 34px; margin: 14px 0 20px; }
.ty__countdown { font-weight: 700; color: var(--paper); }
.ty__fallback { font-size: 14px; color: rgba(252,250,247,.55); }

/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */
@media (min-width: 600px) {
  .dor-grid { grid-template-columns: 1fr 1fr; }
  .event-facts { grid-template-columns: 1fr 1fr; }
  .fit-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (min-width: 768px) {
  :root { --pad-x: 40px; }
  .agenda-list { grid-template-columns: 1fr 1fr; }
  .author-grid { grid-template-columns: 42% 1fr; gap: 48px; }
}

@media (min-width: 1024px) {
  /* Hero assimétrico 58/42 */
  .hero__inner {
    grid-template-columns: 58fr 42fr;
    gap: 56px;
    align-items: center;
  }
  .form-card { transform: translateY(-8px); }

  /* Trilho de módulo fixo na coluna esquerda */
  .module__grid {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0;
  }
  .module__rail {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: sticky;
    top: 40px;
    height: max-content;
    margin: 0;
    padding-right: 24px;
    border-right: 1px solid rgba(224,164,88,.35);
  }
  .module__rail::before { display: none; }
  .module__body { min-width: 0; }
}

/* ==========================================================================
   MOVIMENTO REDUZIDO
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * , *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .ink-underline path { stroke-dashoffset: 0; }
  .ty__check path { stroke-dashoffset: 0; }
  .dor-card { opacity: 1; transform: none; }
}
