/* ==========================================================================
   OBSCURA — Fotografia | Rafael Duarte
   Mobile-first, tema noturno, sem blur, sem exagero de radius/pílulas
   ========================================================================== */

:root {
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --bg-raise: #1b1b1e;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f2efe9;
  --text-muted: #a7a39c;
  --accent: #c9a961;
  --accent-soft: rgba(201, 169, 97, 0.14);
  --accent-dim: #8a7238;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --radius-s: 3px;
  --radius-m: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9rem;
}

.section-title {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1.15;
}

.section-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); }

/* All primary sections occupy the full viewport (per request) */
.hero,
.section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--space-section);
  position: relative;
}

.section.about,
.section.contact { justify-content: center; }

.section-alt { background: var(--bg-alt); }

/* ---------------------------- Reveal on scroll --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #14120a;
}
.btn-primary:hover { background: #e0bd79; }

.btn-outline {
  border-color: rgba(242, 239, 233, 0.35);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --------------------------------- Header --------------------------------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 1000;
  transition: width 0.1s linear;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding-block: 1.15rem;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.86);
  padding-block: 0.75rem;
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.logo-dot { color: var(--accent); }

.nav-desktop { display: none; }

.nav-cta { display: none; }

.menu-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 950;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------- Mobile nav ------------------------------ */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem 1.75rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 890;
}
.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  position: relative;
}
.nav-mobile-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav-mobile-link:hover::after,
.nav-mobile-link:focus-visible::after { width: 100%; }

.nav-mobile-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-mobile-social a:hover { color: var(--accent); }

/* ----------------------------------- Hero ---------------------------------- */
.hero {
  padding-block: 0;
  align-items: flex-start;
  color: var(--text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.72) 55%, rgba(8,8,9,0.94) 100%);
}

.hero-content {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-top: 7.5rem;
}

.hero-title {
  font-size: clamp(2.3rem, 9vw, 4.6rem);
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  max-width: 46ch;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.scroll-cue {
  position: absolute;
  left: 1.25rem;
  bottom: 6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.scroll-cue:hover { color: var(--accent); }
.scroll-cue-line {
  position: relative;
  width: 1px;
  height: 46px;
  background: rgba(242, 239, 233, 0.25);
  overflow: hidden;
}
.scroll-cue-dot {
  position: absolute;
  left: -1.5px;
  top: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { top: -10px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 46px; opacity: 0; }
}

/* ----------------------------------- About ---------------------------------- */
.about-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.about-media {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-media-frame {
  position: absolute;
  top: 14px; left: 14px;
  right: -14px; bottom: -14px;
  border: 1px solid var(--accent);
  z-index: -1;
}

.about-p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  max-width: 54ch;
}

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
.stat { border-top: 1px solid var(--border); padding-top: 0.85rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--accent);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* --------------------------------- Portfolio --------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--text-muted); }
.filter-btn.is-active {
  color: #14120a;
  background: var(--accent);
  border-color: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.gallery-item.is-hidden { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 45%, rgba(8,8,9,0.88) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gi-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
}
.gi-cat {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* --------------------------------- Services --------------------------------- */
.services-grid {
  display: grid;
  gap: 1.1rem;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 2rem 1.6rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
  background: var(--bg-raise);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s var(--ease);
}
.service-link:hover { gap: 0.6rem; }

/* --------------------------------- Process ----------------------------------- */
.process-list {
  display: grid;
  gap: 2rem;
}
.process-step { position: relative; padding-left: 3.6rem; }
.process-number {
  position: absolute;
  left: 0; top: -0.3rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--accent-dim);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; max-width: 42ch; }

/* -------------------------------- Testimonials -------------------------------- */
.slider { max-width: 720px; margin-inline: auto; width: 100%; }
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.slide {
  flex: 0 0 100%;
  padding: 0 0.25rem;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.slide-author { display: flex; align-items: center; gap: 0.9rem; }
.slide-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.slide-author strong { display: block; font-size: 0.95rem; font-weight: 500; }
.slide-author span { font-size: 0.8rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
}
.slider-btn:hover { border-color: var(--accent); color: var(--accent); }
.slider-btn:active { transform: scale(0.92); }

.slider-dots { display: flex; gap: 0.5rem; }
.slider-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.slider-dots button.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ---------------------------------- Contact ----------------------------------- */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info { list-style: none; padding: 0; margin: 2.25rem 0 0; }
.contact-info li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.98rem;
}
.contact-info li:last-child { border-bottom: 1px solid var(--border); }
.ci-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-info a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.45rem; }
.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-raise);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a7a39c' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-submit { margin-top: 0.4rem; justify-content: center; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.form-row.has-error input,
.form-row.has-error textarea { border-color: #c9524f; }

/* ---------------------------------- Footer ------------------------------------ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 3.5rem 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 0.5rem; }
.footer-nav a { font-size: 0.88rem; color: var(--text-muted); }
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.footer-social a { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-muted); }
.footer-social a:hover { color: var(--accent); }
.footer-copy { font-size: 0.76rem; color: var(--text-muted); opacity: 0.7; margin-top: 1.5rem; }
.footer-credit { font-size: 0.76rem; color: var(--text-muted); opacity: 0.7; margin-top: 0.35rem; }
.footer-credit a { color: var(--accent); opacity: 1; }
.footer-credit a:hover { text-decoration: underline; }

/* ------------------------------ Disclaimer modal --------------------------------- */
.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 6, 7, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.disclaimer-modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.disclaimer-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-m);
  max-width: 480px;
  width: 100%;
  padding: 2rem 1.75rem;
  transform: translateY(0);
}

.disclaimer-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.disclaimer-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.disclaimer-box p a { color: var(--accent); }
.disclaimer-box p a:hover { text-decoration: underline; }
.disclaimer-box strong { color: var(--text); font-weight: 500; }

.disclaimer-box .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }

/* --------------------------------- Demo banner ------------------------------------ */
.demo-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 480;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100% - 2rem);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 0.6rem 0.85rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.demo-banner.is-visible { opacity: 1; transform: translateY(0); }
.demo-banner a { color: var(--accent); }
.demo-banner a:hover { text-decoration: underline; }
.demo-banner button {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.demo-banner button:hover { color: var(--text); }

@media (min-width: 1024px) {
  .demo-banner { font-size: 0.76rem; }
}

/* ------------------------------- Back to top ----------------------------------- */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.3s var(--ease);
  z-index: 500;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--accent); color: var(--accent); }

/* =========================================================================
   Breakpoints — mobile-first (min-width)
   ========================================================================= */

@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-top: 8.5rem; }
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .about-media { margin-inline: 0; max-width: none; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 2.2rem;
  }
  .nav-link {
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    padding-bottom: 4px;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.35s var(--ease);
  }
  .nav-link:hover { color: var(--text); }
  .nav-link:hover::after { width: 100%; }

  .nav-cta { display: inline-flex; padding: 0.65rem 1.3rem; font-size: 0.85rem; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .process-list { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 5rem; }
}

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