:root {
  --blue: #5438f2;
  --blue-dark: #4327d9;
  --blue-soft: #9b8cff;
  --night: #0f1629;
  --night-2: #0a0f1e;
  --card: #16203c;
  --text: #f8fafc;
  --muted: #94a3b8;
  --dark-text: #111827;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, system-ui, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(10, 15, 30, .86), rgba(10, 15, 30, .9)),
    url("site-background.jpg") center / cover;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(10, 15, 30, 0.86);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  text-decoration: none;
  min-width: max-content;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 22px rgba(84, 56, 242, .38);
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: white;
}

.nav-dropdown {
  position: relative;
}

.nav-parent::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  min-width: 230px;
  padding: 10px;
  background: rgba(10, 15, 30, .97);
  border: 1px solid rgba(155, 140, 255, .22);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.submenu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  color: #d7d9e7;
  border-radius: 8px;
  white-space: nowrap;
}

.submenu a:hover {
  color: white;
  background: rgba(84, 56, 242, .2);
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.btn-primary,
.btn-outline,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(84, 56, 242, .38);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  color: white;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.04);
}

.btn-outline:hover { background: rgba(255,255,255,.08); }

.btn-outline-dark {
  color: #374151;
  border-color: #d1d5db;
  background: white;
}

.btn-outline-dark:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.hero {
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(135deg, rgba(15, 22, 41, .9), rgba(13, 27, 62, .82) 42%, rgba(10, 15, 30, .92)),
    url("site-background.jpg") center / cover;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 105px) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 16px;
  color: var(--blue-soft);
  background: rgba(84, 56, 242, .16);
  border: 1px solid rgba(155, 140, 255, .34);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 7vw, 5.55rem);
  line-height: .95;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-copy > p {
  max-width: 670px;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  gap: 28px;
  padding-top: 8px;
}

.hero-stats strong {
  color: white;
  font-size: 1.35rem;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 760px;
  margin-top: 26px;
}

.hero-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #ddd8ff;
  background: rgba(84, 56, 242, .16);
  border: 1px solid rgba(155, 140, 255, .28);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-tags a:hover {
  color: white;
  background: rgba(84, 56, 242, .28);
  border-color: rgba(155, 140, 255, .52);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: min(88%, 430px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(84,56,242,.48), transparent 66%);
  filter: blur(6px);
}

.hero-media img {
  position: relative;
  width: min(100%, 400px);
  border-radius: 28%;
  filter: drop-shadow(0 30px 70px rgba(84,56,242,.35));
}

.dark-section,
.light-section,
.page-shell {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.dark-section,
.light-section,
.cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.dark-section {
  background:
    linear-gradient(rgba(10, 15, 30, .88), rgba(10, 15, 30, .9)),
    url("site-background.jpg") center / cover;
}

.light-section {
  color: var(--dark-text);
  background:
    linear-gradient(rgba(248, 250, 252, .92), rgba(248, 250, 252, .94)),
    url("site-background.jpg") center / cover;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.page-heading h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  line-height: 1.05;
  font-weight: 900;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.light-section .section-heading p,
.page-shell .section-heading p {
  color: #64748b;
}

.feature-grid,
.pricing-grid,
.steps-grid,
.content-grid,
.timeline-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.testimonial-grid article {
  padding: 28px;
  color: var(--dark-text);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.content-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  color: var(--blue);
  background: rgba(84, 56, 242, .1);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
}

.content-card h3,
.testimonial-grid strong {
  color: var(--dark-text);
}

.content-card p,
.testimonial-grid p {
  color: #64748b;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.split-copy {
  max-width: 620px;
}

.split-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  line-height: 1.05;
  font-weight: 900;
}

.split-copy p {
  color: #cbd5e1;
  font-size: 1.05rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.device-grid span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 16px;
  color: white;
  background: linear-gradient(145deg, rgba(30,41,71,.72), rgba(15,22,41,.9));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  font-weight: 900;
}

.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(30,41,71,.72), rgba(15,22,41,.9));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  transition: transform .25s, border-color .25s;
}

.feature-card:hover {
  border-color: rgba(155,140,255,.42);
  transform: translateY(-2px);
}

.feature-card h3,
.feature-card h2 {
  margin-bottom: 8px;
  color: white;
  font-size: 1.18rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  color: white;
  background: rgba(84, 56, 242, .22);
  border: 1px solid rgba(155, 140, 255, .36);
  border-radius: 14px;
  font-weight: 900;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 390px;
  padding: 30px;
  color: white;
  background: linear-gradient(145deg, rgba(22,32,60,.94), rgba(12,18,38,.97));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(2, 6, 23, .24);
}

.pricing-card h2,
.pricing-card h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
  font-weight: 900;
}

.duration {
  color: var(--blue-soft);
  font-weight: 800;
}

.price {
  margin: 6px 0 22px;
  color: white;
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: #cbd5e1;
  list-style: none;
}

.pricing-card li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 9px;
  font-weight: 900;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline-dark {
  margin-top: auto;
  width: 100%;
}

.pricing-card-popular {
  border-color: rgba(155,140,255,.55);
  box-shadow: 0 0 42px rgba(84,56,242,.22);
}

.timeline-grid article {
  padding: 28px;
  background: linear-gradient(145deg, rgba(30,41,71,.72), rgba(15,22,41,.9));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
}

.timeline-grid strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-soft);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.timeline-grid h3 {
  color: white;
}

.timeline-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-grid article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-grid p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(84, 56, 242, .9), rgba(15, 22, 41, .92)),
    url("site-background.jpg") center / cover;
}

.cta-section div {
  max-width: 760px;
}

.cta-section h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
}

.cta-section p {
  margin-bottom: 0;
  color: #dbeafe;
}

.popular {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 6px 12px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: white;
  border-radius: 16px;
}

details {
  color: var(--dark-text);
  border-bottom: 1px solid #e5e7eb;
}

details:last-child { border-bottom: 0; }

summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 26px 22px;
  color: #64748b;
}

.page-shell {
  min-height: calc(100vh - 147px);
  background:
    linear-gradient(135deg, rgba(15, 22, 41, .9), rgba(13, 27, 62, .84) 42%, rgba(10, 15, 30, .92)),
    url("site-background.jpg") center / cover;
}

.page-heading {
  color: white;
}

.page-pricing {
  padding-top: 12px;
}

.multi-heading {
  margin-top: clamp(42px, 7vw, 76px);
}

.contact-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 30px;
  color: white;
  background: linear-gradient(145deg, rgba(22,32,60,.94), rgba(12,18,38,.97));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
}

.contact-card p {
  color: #cbd5e1;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: white;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: white;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  font: inherit;
}

textarea { resize: vertical; }

.not-found {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: calc(100vh - 78px);
  padding: 40px 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 22, 41, .9), rgba(13, 27, 62, .84) 42%, rgba(10, 15, 30, .92)),
    url("site-background.jpg") center / cover;
}

.error-code {
  margin: 0;
  color: var(--blue-soft);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: .9;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: white;
  background: #25d366;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
}

.whatsapp-float::before {
  content: "";
  width: 30px;
  height: 30px;
  background: white;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.73 12.73 0 0 0 5.1 22.46L3.2 29l6.7-1.76A12.72 12.72 0 1 0 16.02 3.2Zm0 2.28a10.44 10.44 0 1 1-5.31 19.43l-.38-.23-3.98 1.04 1.06-3.88-.25-.4A10.44 10.44 0 0 1 16.02 5.48Zm-4.34 4.76c-.24 0-.62.09-.95.45-.33.36-1.25 1.22-1.25 2.98s1.28 3.46 1.46 3.7c.18.24 2.47 3.96 6.09 5.39 3 .99 3.62.79 4.27.74.65-.06 2.1-.86 2.4-1.69.3-.83.3-1.54.21-1.69-.09-.15-.33-.24-.69-.42-.36-.18-2.1-1.04-2.43-1.16-.33-.12-.57-.18-.81.18-.24.36-.93 1.16-1.14 1.4-.21.24-.42.27-.78.09-.36-.18-1.52-.56-2.9-1.79-1.07-.95-1.79-2.13-2-2.49-.21-.36-.02-.55.16-.73.16-.16.36-.42.54-.63.18-.21.24-.36.36-.6.12-.24.06-.45-.03-.63-.09-.18-.81-1.95-1.11-2.67-.29-.7-.59-.61-.81-.62h-.69Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.73 12.73 0 0 0 5.1 22.46L3.2 29l6.7-1.76A12.72 12.72 0 1 0 16.02 3.2Zm0 2.28a10.44 10.44 0 1 1-5.31 19.43l-.38-.23-3.98 1.04 1.06-3.88-.25-.4A10.44 10.44 0 0 1 16.02 5.48Zm-4.34 4.76c-.24 0-.62.09-.95.45-.33.36-1.25 1.22-1.25 2.98s1.28 3.46 1.46 3.7c.18.24 2.47 3.96 6.09 5.39 3 .99 3.62.79 4.27.74.65-.06 2.1-.86 2.4-1.69.3-.83.3-1.54.21-1.69-.09-.15-.33-.24-.69-.42-.36-.18-2.1-1.04-2.43-1.16-.33-.12-.57-.18-.81.18-.24.36-.93 1.16-1.14 1.4-.21.24-.42.27-.78.09-.36-.18-1.52-.56-2.9-1.79-1.07-.95-1.79-2.13-2-2.49-.21-.36-.02-.55.16-.73.16-.16.36-.42.54-.63.18-.21.24-.36.36-.6.12-.24.06-.45-.03-.63-.09-.18-.81-1.95-1.11-2.67-.29-.7-.59-.61-.81-.62h-.69Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer {
  padding: 56px clamp(18px, 5vw, 64px) 24px;
  color: #475569;
  background:
    linear-gradient(rgba(248, 250, 252, .96), rgba(248, 250, 252, .98)),
    url("site-background.jpg") center / cover;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto 46px;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}

.footer-logo img {
  border-radius: 10px;
}

.footer-brand p {
  max-width: 36ch;
  color: #64748b;
  margin-bottom: 16px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-tags a {
  padding: 5px 10px;
  color: var(--blue);
  background: rgba(84, 56, 242, .08);
  border: 1px solid rgba(84, 56, 242, .16);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-weight: 700;
  text-decoration: none;
}

.footer-whatsapp::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #25d366;
  border-radius: 8px;
  box-shadow: inset 0 0 0 7px white;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
}

.footer-column a {
  display: inline-block;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-whatsapp:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: .9rem;
}

.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-dropdown {
    width: auto;
  }

  .submenu {
    position: absolute;
    display: none;
    grid-template-columns: 1fr;
    min-width: 230px;
    margin-top: 0;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
  }

  .submenu a {
    white-space: nowrap;
  }

  .hero-inner,
  .feature-grid,
  .pricing-grid,
  .steps-grid,
  .content-grid,
  .timeline-grid,
  .testimonial-grid,
  .split-section,
  .footer-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    width: min(72vw, 300px);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: .95rem;
  }

  .site-nav a {
    font-size: .86rem;
  }

  .submenu {
    grid-template-columns: 1fr;
    left: 0;
    right: auto;
    transform: translateY(8px);
  }

  .nav-dropdown:hover .submenu,
  .nav-dropdown:focus-within .submenu {
    transform: translateY(0);
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .hero-tags a {
    min-height: 30px;
    padding: 6px 10px;
    font-size: .78rem;
  }

  .feature-card {
    flex-direction: column;
  }

  .pricing-card,
  .content-card,
  .testimonial-grid article,
  .timeline-grid article {
    padding: 22px;
  }
}

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