/* ============================================================
   BOC Regularizações — Landing Page v2 (minimalista)
   Fundo branco, vermelho suavizado + preto, mobile first
   ============================================================ */

:root {
  --red: #A93B32;
  --red-600: #8F2F28;
  --red-700: #75251F;
  --red-soft: #F7EEEC;
  --ink: #161616;
  --ink-soft: #2C2C2C;
  --muted: #71706E;
  --line: #E9E7E4;
  --paper: #FFFFFF;
  --paper-2: #FAF9F7;

  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;

  --wrap: 1080px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(22,22,22,.05), 0 4px 14px rgba(22,22,22,.05);
  --shadow-md: 0 14px 40px rgba(22,22,22,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .01em;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: 72px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--red);
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--red);
  transform-origin: left;
  animation: lineGrow .8s ease both;
}
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.kicker.is-light { color: #d8b8b4; }
.kicker.is-light::before { background: #d8b8b4; }

.section-head { max-width: 560px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 6.4vw, 38px); margin-top: 14px; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 16px; }

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn:hover::after { left: 130%; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(169,59,50,.25); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: #d8d6d2; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }

/* ============================================================
   HEADER — minimalista
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.header.is-scrolled { border-color: var(--line); }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.brand { display: inline-flex; align-items: baseline; gap: 8px; }
.brand b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand b i { font-style: normal; color: var(--red); }
.brand span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 560px) { .brand span { display: inline; } }

.nav { display: none; align-items: center; gap: 30px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--red); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__cta { display: none; }
@media (min-width: 920px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; padding: 11px 20px; }
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
}
.burger span {
  width: 22px; height: 1.6px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform .25s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
@media (min-width: 920px) { .burger { display: none; } }

/* Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(22,22,22,.4);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(84vw, 340px); height: 100%;
  background: #fff;
  padding: 26px 26px 34px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.drawer__close {
  width: 40px; height: 40px;
  border: 0; background: none;
  font-size: 26px; line-height: 1;
  cursor: pointer; color: var(--ink);
}
.drawer a.drawer__link {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a.drawer__link:hover { color: var(--red); }
.drawer__cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; }

/* ============================================================
   HERO — branco, tipográfico
   ============================================================ */
.hero {
  position: relative;
  padding-block: 84px 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,59,50,.07), transparent 65%);
  animation: drift 14s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22,22,22,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 85% 10%, #000 0%, transparent 70%);
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-50px, 40px); }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

.hero__inner { position: relative; max-width: 720px; }
.hero h1 {
  font-size: clamp(38px, 10.5vw, 72px);
  margin-top: 20px;
}
.hero h1 .accent {
  color: var(--red);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 3px;
  background: var(--red);
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s .8s ease both;
}
.hero__lead {
  margin-top: 22px;
  font-size: clamp(16px, 4.2vw, 19px);
  color: var(--muted);
  max-width: 44ch;
}
.hero__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__proof {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__proof span { display: inline-flex; align-items: center; }
.hero__proof span + span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  margin-inline: 14px;
  opacity: .6;
}
.hero__proof b { color: var(--ink); font-weight: 700; margin-right: 5px; }

/* entrada em cascata */
.rise { opacity: 0; transform: translateY(18px); animation: rise .7s ease forwards; }
.rise.d1 { animation-delay: .08s; }
.rise.d2 { animation-delay: .2s; }
.rise.d3 { animation-delay: .34s; }
.rise.d4 { animation-delay: .5s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rise { animation: none; opacity: 1; transform: none; } }

@media (min-width: 700px) {
  .hero { padding-block: 110px 96px; }
  .hero__cta { flex-direction: row; }
}

/* ============================================================
   MARQUEE — serviços em faixa
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 18px;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: .55;
  margin-inline: 26px;
}

/* ============================================================
   SERVIÇOS — lista minimalista
   ============================================================ */
.services { background: var(--paper-2); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #ddd9d4; }
.svc:hover::before { transform: scaleX(1); }
.svc__abbr {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.svc h3 { font-size: 20px; margin-top: 8px; }
.svc p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.svc__arrow {
  position: absolute;
  top: 22px; right: 20px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.svc__arrow svg { width: 15px; height: 15px; }
.svc:hover .svc__arrow {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(-45deg);
}
@media (min-width: 660px) { .services__grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 980px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   COMO FUNCIONA — linha do tempo enxuta
   ============================================================ */
.steps { counter-reset: step; display: grid; gap: 0; max-width: 640px; }
.step {
  position: relative;
  padding: 0 0 34px 56px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -2px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--red);
  letter-spacing: .04em;
}
.step::after {
  content: "";
  position: absolute;
  left: 13px; top: 26px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::after { display: none; }
.step h3 { font-size: 19px; }
.step p { margin-top: 6px; color: var(--muted); font-size: 15px; max-width: 46ch; }
.step b.free {
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 999px;
  padding: 4px 10px;
  vertical-align: middle;
}

/* layout lado a lado no desktop */
.process__layout { display: grid; gap: 40px; }
@media (min-width: 920px) {
  .process__layout { grid-template-columns: .9fr 1.1fr; gap: 64px; }
  .process__aside { position: sticky; top: 110px; align-self: start; }
}
.process__aside h2 { font-size: clamp(26px, 6.4vw, 38px); margin-top: 14px; }
.process__aside p { margin-top: 12px; color: var(--muted); }
.process__aside .btn { margin-top: 26px; }

/* ============================================================
   QUEM ATENDEMOS — linha simples
   ============================================================ */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.aud {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.aud:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.aud svg { width: 26px; height: 26px; color: var(--red); }
.aud h3 { font-size: 17px; margin-top: 12px; }
.aud p { margin-top: 5px; font-size: 13.5px; color: var(--muted); }
@media (min-width: 860px) { .audience { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

/* ============================================================
   POR QUE A BOC — faixa escura enxuta
   ============================================================ */
.why { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 60% 80% at 90% 50%, #000, transparent 70%);
}
.why__layout { position: relative; display: grid; gap: 36px; }
.why__intro h2 { color: #fff; font-size: clamp(26px, 6.4vw, 38px); margin-top: 14px; }
.why__intro p { margin-top: 14px; color: #b9b5b2; font-size: 16px; max-width: 44ch; }
.why__intro .btn { margin-top: 26px; }
.why__list { display: grid; gap: 0; }
.adv {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.adv:first-child { padding-top: 4px; }
.adv:last-child { border-bottom: 0; }
.adv__n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  filter: brightness(1.6);
  flex: none;
}
.adv h3 { font-size: 18px; color: #fff; }
.adv p { margin-top: 5px; color: #a8a4a1; font-size: 14.5px; max-width: 50ch; }
@media (min-width: 900px) { .why__layout { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }

/* ============================================================
   DEPOIMENTOS — dois, enxutos
   ============================================================ */
.testi__grid { display: grid; gap: 14px; }
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 0;
  position: relative;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.quote:hover { border-color: #ddd9d4; box-shadow: var(--shadow-sm); }
.quote__mark {
  font-family: var(--display);
  font-size: 46px;
  line-height: .5;
  color: var(--red);
  opacity: .8;
}
.quote p { margin-top: 16px; font-size: 16px; color: var(--ink-soft); }
.quote footer {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.quote footer b { color: var(--ink); font-size: 14.5px; display: block; }
.testi__note { margin-top: 16px; font-size: 12.5px; color: var(--muted); font-style: italic; }
@media (min-width: 760px) { .testi__grid { grid-template-columns: 1fr 1fr; gap: 18px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-2); }
.faq__list { display: flex; flex-direction: column; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 48px 20px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 16px;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-item__q:hover { color: var(--red); }
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  transition: transform .25s ease;
}
.faq-item.is-open .faq-item__q::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__a p { padding: 0 24px 22px 0; color: var(--muted); font-size: 15px; max-width: 60ch; }

/* ============================================================
   CONTATO / CTA FINAL
   ============================================================ */
.contact__layout { display: grid; gap: 40px; }
.contact__col h2 { font-size: clamp(26px, 6.4vw, 40px); margin-top: 14px; }
.contact__col > p { margin-top: 12px; color: var(--muted); max-width: 40ch; }

.contact-list { margin-top: 28px; display: flex; flex-direction: column; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .22s ease;
}
.contact-row:hover { padding-left: 8px; }
.contact-row:hover b { color: var(--red); }
.contact-row__ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red-soft);
  display: grid; place-items: center;
}
.contact-row__ico svg { width: 18px; height: 18px; color: var(--red); }
.contact-row b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13.5px;
  transition: color .2s ease;
}
.contact-row span.sub { font-size: 15px; color: var(--muted); }

.units { margin-top: 26px; display: grid; gap: 18px; }
.unit b {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
  color: var(--ink);
}
.unit p { margin-top: 4px; font-size: 14px; color: var(--muted); line-height: 1.5; }
@media (min-width: 560px) { .units { grid-template-columns: 1fr 1fr; } }

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  box-shadow: var(--shadow-sm);
}
.form h3 { font-size: 21px; }
.form > p { margin-top: 8px; color: var(--muted); font-size: 14px; }
.field { margin-top: 16px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid #DBD8D3;
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(169,59,50,.1);
}
.field textarea { min-height: 100px; resize: vertical; }
.form .btn { margin-top: 20px; }
.form__ok {
  margin-top: 14px;
  display: none;
  padding: 12px 14px;
  background: #EDF6EF;
  border: 1px solid #C4E2CB;
  border-radius: var(--radius);
  color: #20713C;
  font-size: 14px;
  font-weight: 600;
}
.form__ok.is-shown { display: block; }
@media (min-width: 920px) { .contact__layout { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }

/* ============================================================
   FOOTER — slim
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 36px 88px; }
.footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__meta { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13.5px; }
.footer__links a { color: var(--muted); transition: color .2s ease; }
.footer__links a:hover { color: var(--red); }
@media (min-width: 760px) {
  .footer .wrap { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 55;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #1FA855;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(31,168,85,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
