:root {
  --purple-950: #17051f;
  --purple-900: #2a073b;
  --purple-800: #4b0b68;
  --purple-700: #6b1685;
  --gold-500: #d7a83a;
  --gold-400: #f1cb6a;
  --ink: #351044;
  --muted: #6b4d76;
  --line: #e9e2ec;
  --surface: #fbf8fc;
  --white: #fff8df;
  --shadow: 0 24px 70px rgba(28, 8, 40, 0.18);
  --radius: 8px;
  --max: 1180px;
}

@keyframes goldSweep {
  0% {
    background-position: 180% 50%;
  }
  46%,
  100% {
    background-position: -80% 50%;
  }
}

@keyframes shinePass {
  0% {
    transform: translateX(-130%) skewX(-18deg);
  }
  42%,
  100% {
    transform: translateX(180%) skewX(-18deg);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(241, 203, 106, 0));
  }
  45% {
    filter: drop-shadow(0 0 18px rgba(241, 203, 106, 0.52));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(215, 168, 58, 0.16), transparent 28%),
    linear-gradient(135deg, var(--purple-950), var(--purple-800));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(23, 5, 31, 0.68), rgba(75, 11, 104, 0));
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(75, 11, 104, 0.96);
  box-shadow: 0 14px 42px rgba(23, 5, 31, 0.24);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 158px;
  height: auto;
  animation: logoGlow 6.5s ease-in-out infinite;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.brand:hover img,
.brand:focus-visible img,
.hero-logo:hover,
.footer-brand:hover img,
.footer-brand:focus-visible img {
  filter: drop-shadow(0 0 18px rgba(241, 203, 106, 0.68));
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 248, 223, 0.92);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  box-shadow: 0 0 14px rgba(241, 203, 106, 0.45);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 203, 106, 0.3);
  border-radius: var(--radius);
  background: rgba(241, 203, 106, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 96px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 5, 31, 0.92), rgba(42, 7, 59, 0.7) 48%, rgba(23, 5, 31, 0.26)),
    linear-gradient(0deg, rgba(23, 5, 31, 0.72), rgba(23, 5, 31, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: max(calc((100vw - var(--max)) / 2), 20px);
}

.hero-logo {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 28px;
  animation: logoGlow 6.5s ease-in-out infinite;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gold-shine {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400), #fff4ba, var(--gold-400), var(--gold-500));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: goldSweep 5.8s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(241, 203, 106, 0.14);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 248, 223, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn::after,
.whatsapp-float::after,
.why-item span::after,
.experience-list span::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -40%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 223, 0.72), transparent);
  opacity: 0;
  pointer-events: none;
  animation: shinePass 5.6s ease-in-out infinite;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after,
.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after,
.why-item:hover span::after,
.experience-list span:hover::after {
  opacity: 1;
  animation-duration: 1.1s;
}

.btn-primary {
  color: var(--purple-950);
  background: linear-gradient(135deg, var(--gold-400), #fff0a8, var(--gold-500));
  box-shadow: 0 16px 36px rgba(215, 168, 58, 0.28);
}

.btn-primary::after,
.whatsapp-float::after,
.why-item span::after,
.experience-list span::after {
  opacity: 0.5;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(241, 203, 106, 0.42);
  background: rgba(241, 203, 106, 0.1);
  backdrop-filter: blur(12px);
}

.hero-signal {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 2;
  color: rgba(255, 248, 223, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

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

.section-dark .section-copy p,
.section-dark .section-heading p {
  color: rgba(255, 248, 223, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.stats div,
.quote-card,
.contact-card,
.why-item {
  border-radius: var(--radius);
}

.stats div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--purple-800);
  font-size: 1.45rem;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: min(330px, calc(100% - 32px));
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  box-shadow: var(--shadow);
}

.quote-card span {
  color: var(--gold-400);
  font-size: 3rem;
  line-height: 0.8;
}

.quote-card p {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.quote-card small {
  color: rgba(255, 248, 223, 0.76);
}

.wellbeing {
  background:
    linear-gradient(180deg, rgba(255, 248, 223, 0.64), rgba(251, 248, 252, 0.92)),
    radial-gradient(circle at 84% 12%, rgba(215, 168, 58, 0.18), transparent 32%);
}

.wellbeing-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(215, 168, 58, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 248, 223, 0.96), rgba(255, 250, 237, 0.84)),
    var(--white);
  box-shadow: var(--shadow);
}

.wellbeing-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(241, 203, 106, 0.22), transparent 42%);
  transform: translateX(-100%);
  animation: shinePass 8s ease-in-out infinite;
  pointer-events: none;
}

.wellbeing-panel .section-copy {
  position: relative;
  z-index: 1;
}

.experience-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 12px;
}

.experience-list span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--purple-950);
  border: 1px solid rgba(215, 168, 58, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241, 203, 106, 0.34), rgba(255, 248, 223, 0.78));
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(215, 168, 58, 0.12);
}

.wellbeing-note {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  padding: 22px 24px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
}

.wellbeing-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-400);
  font-size: 1.15rem;
}

.wellbeing-note p {
  margin-bottom: 0;
  color: rgba(255, 248, 223, 0.78);
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(28, 8, 40, 0.08);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding: 0 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.why-item {
  padding: 28px;
  border: 1px solid rgba(241, 203, 106, 0.16);
  background: rgba(255, 248, 223, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 203, 106, 0.5);
}

.why-item span {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--purple-950);
  background: linear-gradient(135deg, var(--gold-400), #fff0a8, var(--gold-500));
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(241, 203, 106, 0);
  transition: box-shadow 0.25s ease;
}

.why-item:hover span {
  box-shadow: 0 0 22px rgba(241, 203, 106, 0.48);
}

.why-item p {
  margin-bottom: 0;
  color: rgba(255, 248, 223, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--purple-900);
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  opacity: 0.82;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(241, 203, 106, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 56px;
  align-items: start;
}

.contact {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 203, 106, 0.22), transparent 30%),
    linear-gradient(135deg, #fff8df, #fbf8fc 48%, #f0e5f4);
}

.contact .section-copy p {
  color: var(--muted);
}

.contact .section-copy h2 {
  color: var(--purple-900);
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(75, 11, 104, 0.12);
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card div {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(75, 11, 104, 0.12);
  font-style: normal;
}

.contact-card a:last-child,
.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card strong {
  color: var(--purple-800);
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(241, 203, 106, 0.14);
}

.contact-card span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.social-link span,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg,
.footer-social svg {
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  padding: 36px 0 26px;
  color: rgba(255, 248, 223, 0.86);
  background:
    radial-gradient(circle at 88% 12%, rgba(241, 203, 106, 0.14), transparent 28%),
    linear-gradient(135deg, var(--purple-950), var(--purple-800));
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: 170px;
  animation: logoGlow 7s ease-in-out infinite;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-contact {
  justify-content: flex-end;
}

.footer-links a,
.footer-contact a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-400);
  text-shadow: 0 0 16px rgba(241, 203, 106, 0.28);
}

.footer p {
  width: min(var(--max), calc(100% - 40px));
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(241, 203, 106, 0.18);
  color: rgba(255, 248, 223, 0.7);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  overflow: hidden;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  font-weight: 900;
  transition: transform 0.25s ease;
}

.whatsapp-float::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--white);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 44;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--purple-950);
  border: 1px solid rgba(75, 11, 104, 0.12);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), #fff0a8, var(--gold-500));
  box-shadow: 0 14px 34px rgba(75, 11, 104, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.to-top:hover,
.to-top:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(215, 168, 58, 0.34);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(12, 4, 16, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-height: 88vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(241, 203, 106, 0.2);
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-grid,
  .wellbeing-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 70px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 70px 14px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(241, 203, 106, 0.2);
    border-radius: var(--radius);
    background: rgba(75, 11, 104, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 92svh;
    padding: 112px 0 82px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(23, 5, 31, 0.92), rgba(42, 7, 59, 0.56)),
      rgba(23, 5, 31, 0.38);
  }

  .hero-content {
    margin-left: auto;
  }

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

  .hero-signal {
    display: none;
  }

  .stats,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wellbeing-panel {
    gap: 24px;
    padding: 26px;
  }

  .experience-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .to-top {
    right: 14px;
    bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
