:root {
  --blue: #0777E8;
  --blue-dark: #061B3A;
  --blue-deep: #031126;
  --blue-light: #E8F7FF;
  --yellow: #12D5C8;
  --yellow-soft: #DFFAF8;
  --white: #FFFFFF;
  --text: #102033;
  --muted: #5F6F82;
  --line: #D9E6F7;
  --whatsapp: #22A66B;
  --shadow: 0 24px 70px rgba(7, 30, 66, .14);
  --radius: 8px;
  --container: 1180px;
  --header-h: 76px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { top: 14px; }
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section { padding: 92px 0; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(21, 84, 184, .95), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 184, 0, .18), transparent 26%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark) 58%, #0A2B64);
}
.section-soft { background: linear-gradient(180deg, #F7FBFF, var(--blue-light)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: .94;
  letter-spacing: 0;
  margin: 18px 0 24px;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 14px 0 18px;
}
h3 { font-size: 1.6rem; line-height: 1.15; }
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading p, .hero-copy p, .split p { color: var(--muted); font-size: 1.08rem; }
.section-dark p { color: rgba(255,255,255,.78); }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(7, 30, 66, .18); }
.btn-primary { background: var(--yellow); color: var(--blue-dark); }
.btn-secondary { background: rgba(255,255,255,.12); color: inherit; border-color: rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.section:not(.section-dark) .btn-secondary { color: var(--blue-dark); background: var(--white); border-color: var(--line); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 90;
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 38px rgba(7,30,66,.12);
  backdrop-filter: blur(18px);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 246px;
  height: 58px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}
.is-scrolled .brand { background: transparent; }
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 760;
}
.is-scrolled .nav-panel { color: var(--text); }
.nav-panel a { position: relative; white-space: nowrap; }
.nav-panel a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
}
.nav-cta {
  color: var(--blue-dark) !important;
  background: var(--yellow);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.is-scrolled .menu-toggle span { background: var(--blue-dark); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 740px; padding: calc(var(--header-h) + 82px) 0 84px; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 0;
  height: 300px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,.12), transparent);
  transform: rotate(-4deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 650px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.hero-badges span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}
.microcopy { margin-top: 14px; font-size: .94rem !important; }
.connected-home {
  min-height: 520px;
  position: relative;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow: inset 0 1px rgba(255,255,255,.16), 0 40px 120px rgba(0,0,0,.28);
  overflow: hidden;
}
.light-ring {
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,184,0,.35);
  border-radius: 50%;
  animation: slow-spin 18s linear infinite;
}
.home-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 160px;
  height: 132px;
  transform: translate(-50%, -50%);
  background: rgba(234,243,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  display: grid;
  place-items: center;
}
.roof {
  position: absolute;
  top: -36px;
  width: 112px;
  height: 112px;
  border-left: 10px solid var(--yellow);
  border-top: 10px solid var(--yellow);
  transform: rotate(45deg);
  border-radius: 8px 0 0 0;
}
.router {
  z-index: 2;
  background: var(--blue);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 900;
}
.signal {
  position: absolute;
  border: 2px solid rgba(255,184,0,.7);
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 80px 80px 0 0;
}
.signal-a { width: 54px; height: 22px; top: 32px; }
.signal-b { width: 88px; height: 34px; top: 20px; opacity: .65; }
.signal-c { width: 124px; height: 48px; top: 7px; opacity: .38; }
.device {
  position: absolute;
  width: 132px;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  color: var(--blue-dark);
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.device small { color: var(--blue); font-weight: 800; }
.tv { top: 70px; left: 58px; width: 150px; }
.phone { top: 95px; right: 46px; width: 118px; }
.laptop { bottom: 70px; left: 56px; width: 150px; }
.game { bottom: 82px; right: 54px; }
.tablet { left: 50%; bottom: 28px; transform: translateX(-50%); }
.data-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform-origin: left center;
  opacity: .8;
}
.line-1 { width: 170px; left: 154px; top: 154px; transform: rotate(22deg); }
.line-2 { width: 150px; right: 150px; top: 166px; transform: rotate(152deg); }
.line-3 { width: 170px; left: 166px; bottom: 150px; transform: rotate(-24deg); }
.line-4 { width: 160px; right: 160px; bottom: 158px; transform: rotate(205deg); }
.line-5 { width: 120px; left: 50%; bottom: 126px; transform: rotate(90deg); }

.quick-benefits { margin-top: -42px; position: relative; z-index: 3; }
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.benefit-strip div {
  padding: 20px 16px;
  border-right: 1px solid var(--line);
}
.benefit-strip div:last-child { border-right: 0; }
.benefit-strip b { display: block; color: var(--blue-dark); }
.benefit-strip span { color: var(--muted); font-size: .9rem; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7,30,66,.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-card.featured {
  border-color: rgba(255,184,0,.8);
  transform: translateY(-12px);
  box-shadow: 0 26px 80px rgba(7,30,66,.16);
}
.tag {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .82rem;
  font-weight: 900;
}
.tag.alt { background: var(--blue-light); color: var(--blue); }
.price { font-size: 3.2rem; line-height: 1; font-weight: 950; color: var(--blue); margin: 0; }
.price span, .price small { font-size: 1rem; color: var(--muted); }
.value-note {
  background: var(--yellow-soft);
  color: var(--blue-dark);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 750;
}
.plan-card ul { padding-left: 20px; margin: 0 0 6px; color: var(--muted); }
.plan-card li + li { margin-top: 8px; }
.btn-plan { margin-top: auto; background: var(--blue); color: var(--white); }
.streaming-choice {
  position: relative;
  margin: 4px 0 2px;
  padding: 18px 10px 12px;
  border: 2px solid rgba(18, 213, 200, .48);
  border-radius: 14px;
  background: linear-gradient(180deg, #FFFFFF, #F2FCFF);
}
.streaming-choice > span {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  color: var(--white);
  font-size: .78rem;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(7,119,232,.18);
}
.streaming-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.streaming-logos img {
  width: 100%;
  aspect-ratio: 72 / 44;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(7,30,66,.08);
  box-shadow: 0 6px 14px rgba(7,30,66,.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split.compact { align-items: center; }
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.lead-form label, .selector-grid label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 800;
}
.lead-form input, .selector-grid input[type="range"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #FBFDFF;
}
.lead-form input[aria-invalid="true"] {
  border-color: #D92D20;
  box-shadow: 0 0 0 3px rgba(217,45,32,.12);
}
.lead-form button, .lead-form .form-status { grid-column: 1 / -1; }
.privacy-note, .form-status { font-size: .92rem !important; color: var(--muted) !important; }

.selector-box {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: var(--blue-dark);
  color: var(--white);
}
.selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.selector-grid label {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  padding: 16px;
  border-radius: var(--radius);
}
.selector-grid input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--yellow); }
.selector-grid output { color: var(--yellow); }
.recommendation {
  background: var(--white);
  color: var(--blue-dark);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 12px;
}
.recommendation span { color: var(--muted); font-weight: 800; }
.recommendation strong { color: var(--blue); font-size: 2rem; line-height: 1; }

.media-wall {
  min-height: 410px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: center;
}
.media-wall span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
}
.logo-wall span {
  background: rgba(255,255,255,.94);
  padding: 10px;
}
.logo-wall img {
  width: 100%;
  max-width: 128px;
  height: auto;
  object-fit: contain;
}
.media-wall small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.72);
}
.use-grid, .benefit-grid, .placeholder-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.use-grid article, .benefit-grid article, .placeholder-reviews article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7,30,66,.07);
}
.use-grid b { color: var(--blue); font-size: 1.1rem; }
.use-grid p, .placeholder-reviews p { margin-bottom: 0; color: var(--muted); }
.benefit-grid article { font-weight: 850; }

.phone-mockup {
  width: min(340px, 100%);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 36px;
  padding: 16px;
  background: #081a38;
  box-shadow: var(--shadow);
}
.phone-screen {
  height: 100%;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255,184,0,.34), transparent 35%),
    linear-gradient(160deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 28px;
  display: grid;
  align-content: end;
  gap: 12px;
}
.phone-screen b { font-size: 2rem; line-height: 1.05; }
.store-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 12px; }
.store-btn {
  min-width: 170px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 11px 16px;
  display: grid;
  line-height: 1.15;
}
.store-btn span { font-size: .78rem; opacity: .8; }
.store-btn b { font-size: 1.05rem; }

.accordion {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  min-height: 62px;
  padding: 18px 22px;
  border: 0;
  background: var(--white);
  color: var(--blue-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 900;
}
.faq-item button::after { content: "+"; color: var(--blue); font-size: 1.4rem; }
.faq-item button[aria-expanded="true"]::after { content: "-"; }
.faq-item div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease; }
.faq-item button[aria-expanded="true"] + div { grid-template-rows: 1fr; }
.faq-item p { overflow: hidden; margin: 0; padding: 0 22px 18px; color: var(--muted); }

.final-cta { padding: 84px 0; }
.final-box {
  text-align: center;
  max-width: 860px;
}
.final-box .actions { justify-content: center; }
.site-footer {
  background: #06152E;
  color: rgba(255,255,255,.78);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 32px;
}
.site-footer nav, .site-footer div:last-child {
  display: grid;
  gap: 9px;
  align-content: start;
}
.footer-logo {
  width: min(280px, 100%);
  height: auto;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.1);
}
.site-footer a:hover { color: var(--yellow); }
.pending { color: rgba(255,255,255,.58); font-size: .9rem; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding-top: 20px;
  font-size: .9rem;
}
.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(34,166,107,.32);
  font-weight: 900;
  animation: float-in .45s ease both;
}
.whatsapp-float::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 5px var(--whatsapp);
}

.legal-page {
  padding-top: calc(var(--header-h) + 48px);
  background: var(--blue-light);
}
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 34px;
  margin-bottom: 50px;
}
.legal-card h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--blue-dark); }
.legal-card h2 { font-size: 1.5rem; margin-top: 30px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes float-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .nav-panel { gap: 12px; font-size: .88rem; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .connected-home { max-width: 620px; width: 100%; margin: 0 auto; }
  .benefit-strip { grid-template-columns: repeat(3, 1fr); }
  .benefit-strip div { border-bottom: 1px solid var(--line); }
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .section { padding: 70px 0; }
  .menu-toggle { display: block; }
  .nav-panel {
    position: fixed;
    inset: var(--header-h) 14px auto;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.96);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-panel a { padding: 14px; border-radius: var(--radius); }
  .nav-panel a:hover { background: var(--blue-light); }
  .nav-panel a.is-active::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { padding-top: calc(var(--header-h) + 52px); }
  .hero-grid { gap: 36px; }
  .connected-home { min-height: 420px; border-radius: 18px; }
  .device { width: 112px; min-height: 66px; font-size: .82rem; padding: 10px; }
  .tv { left: 20px; top: 62px; }
  .phone { right: 18px; top: 82px; }
  .laptop { left: 22px; bottom: 74px; }
  .game { right: 22px; bottom: 82px; }
  .tablet { display: none; }
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .use-grid, .benefit-grid, .placeholder-reviews { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .selector-box, .selector-grid { grid-template-columns: 1fr; }
  .media-wall { grid-template-columns: repeat(2, 1fr); min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .actions, .store-actions { align-items: stretch; }
  .brand { width: 206px; height: 52px; }
  .btn, .store-btn { width: 100%; }
  .hero-badges { display: grid; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-strip div { border-right: 0; }
  .lead-form { grid-template-columns: 1fr; padding: 18px; }
  .plan-grid { grid-template-columns: 1fr; }
  .connected-home { min-height: 330px; }
  .home-core { width: 122px; height: 104px; }
  .roof { width: 86px; height: 86px; top: -28px; }
  .light-ring { inset: 42px; }
  .data-line { opacity: .5; }
  .whatsapp-float {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    justify-content: center;
    border-radius: 14px;
  }
  .legal-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
