/* MAESTRO PALCO - CSS com Design System MAESTRO */

/* Design Tokens MAESTRO */
:root {
  /* ── Colors: Midnight (Primary/Background) ── */
  --m-midnight-950: #141422;
  --m-midnight-900: #1C1C2E;
  --m-midnight-800: #23233A;
  --m-midnight-700: #2D2D4A;
  --m-midnight-600: #37376A;
  --m-midnight-500: #3F3F72;
  /* ── Colors: Gold (Accent) ── */
  --m-gold-900: #6B5220;
  --m-gold-800: #886828;
  --m-gold-700: #A07D34;
  --m-gold-600: #B89340;
  --m-gold-500: #C9A84C;
  --m-gold-400: #DFBE62;
  --m-gold-300: #F0D080;
  --m-gold-200: #FFE399;
  --m-gold-100: #FFEFC2;
  /* ── Colors: Slate (Neutral) ── */
  --m-slate-200: #E2E8F0;
  --m-slate-300: #CBD5E1;
  --m-slate-400: #94A3B8;
  --m-slate-500: #64748B;
  --m-slate-600: #475569;
  --m-slate-700: #334155;
  /* ── Semantic ── */
  --bg:          var(--m-midnight-900);
  --bg-card:     var(--m-midnight-800);
  --bg-elevated: var(--m-midnight-700);
  --bg-deep:     var(--m-midnight-950);
  --text:        var(--m-slate-200);
  --text-muted:  var(--m-slate-400);
  --text-faint:  var(--m-slate-500);
  --accent:      var(--m-gold-500);
  --accent-lt:   var(--m-gold-300);
  --accent-bg:   rgba(201, 168, 76, 0.08);
  --border:      rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.25);
  --inverse:     #0A0A14;
  /* ── Feedback ── */
  --success: #4ADE80;
  --warning: #FBBF24;
  --error:   #F87171;
  --info:    #60A5FA;
  
  /* Typography MAESTRO */
  --font-display: 'Montserrat', 'Arial Black', Helvetica, sans-serif;
  --font-sans:    'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
  
  /* ── Spacing MAESTRO ── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  
  /* ── Radius MAESTRO ── */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;
  
  /* ── Shadows MAESTRO ── */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 24px rgba(201, 168, 76, 0.15);
  
  /* ── Motion MAESTRO ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  
  /* Legacy mappings for compatibility */
  --spacing-1: var(--space-1);
  --spacing-2: var(--space-2);
  --spacing-3: var(--space-3);
  --spacing-4: var(--space-4);
  --spacing-5: var(--space-5);
  --spacing-6: var(--space-6);
  --spacing-8: var(--space-8);
  --spacing-10: var(--space-10);
  --spacing-12: var(--space-12);
  --spacing-16: var(--space-16);
  --spacing-20: var(--space-20);
  --spacing-24: var(--space-24);
  --spacing-32: var(--space-20);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-base: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.06);
  --shadow-base: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.12);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-2xl: 0 35px 60px -15px rgb(0 0 0 / 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Z-Index */
  --z-base: 0;
  --z-sticky: 20;
  --z-modal: 40;
  
  /* Breakpoints */
  --container-xl: 1280px;
  --container-md: 768px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Typography */
.heading {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-4);
}

.h1 {
  font-size: clamp(24px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.h3 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
}

.h4 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.h5 {
  font-size: 20px;
  line-height: 1.4;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

.text-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.text-lg {
  font-size: 18px;
  line-height: 1.7;
}

.text-emphasis {
  color: var(--accent);
  font-weight: 600;
}

.text-highlight {
  color: var(--accent);
  font-weight: 600;
}

.text-white { color: #FFFFFF; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Quote */
.quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-muted);
  position: relative;
  padding-left: var(--space-8);
}

.quote::before {
  content: """;
  position: absolute;
  left: 0;
  top: -0.25em;
  font-size: 3em;
  color: var(--accent);
  opacity: 0.3;
}

/* Lists */
.list-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-benefits li {
  position: relative;
  padding-left: var(--spacing-8);
  margin-bottom: var(--spacing-3);
  line-height: var(--line-height-relaxed);
}

.list-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3) var(--spacing-6);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--inverse);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--accent-lt);
}

.btn-secondary {
  background: var(--m-midnight-700);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--m-midnight-600);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--inverse);
  border-color: var(--accent);
}

.btn-lg {
  padding: var(--spacing-4) var(--spacing-8);
  font-size: 18px;
}

.btn-xl {
  padding: var(--spacing-5) var(--spacing-10);
  font-size: 20px;
  border-radius: var(--radius-xl);
}


/* Layout */
.section {
  padding: var(--spacing-20) 0;
  position: relative;
  overflow: hidden;
}

.section-sm {
  padding: var(--spacing-12) 0;
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-6);
}

/* Hero */
.hero {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-vsl {
  position: relative;
  z-index: 1;
}

.hero-vsl iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Mobile: Stack Vertical */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .hero-content {
    text-align: center;
  }
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--accent);
  color: var(--inverse);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-4);
  animation: fadeInDown 0.6s ease-out;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out;
  margin-bottom: var(--space-6);
  max-width: 500px;
}

.hero-cta {
  animation: fadeInUp 1.2s ease-out;
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
}

.hero-cta .btn {
  font-size: 14px;
  padding: var(--space-2) var(--space-4);
}

/* Pain Points */
.section-pain {
  background: var(--bg-card);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-6);
  margin-top: var(--spacing-12);
}

.pain-item {
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.pain-item:nth-child(1) { animation-delay: 0.1s; }
.pain-item:nth-child(2) { animation-delay: 0.2s; }
.pain-item:nth-child(3) { animation-delay: 0.3s; }
.pain-item:nth-child(4) { animation-delay: 0.4s; }

.pain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: var(--bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-md);
  color: var(--accent);
}

/* New Reality */
.section-reality {
  background: linear-gradient(135deg, var(--accent) 0%, var(--m-gold-700) 100%);
  color: var(--inverse);
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-8);
  margin-top: var(--spacing-12);
}

.reality-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.card-body {
  padding: var(--spacing-6);
}

.card-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.card-testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 3px solid var(--accent);
}

.card-testimonial-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.card-testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.card-testimonial-rating {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  color: var(--accent);
}

.card-grid-testimonials {
  display: grid;
  gap: var(--spacing-8);
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Method Cards */
.card-method {
  text-align: center;
  padding: var(--spacing-8);
  background: var(--color-white);
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-method-circle {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.card-method-why .card-method-circle {
  background: linear-gradient(135deg, var(--accent), var(--m-gold-700));
  animation: pulse 3s infinite;
}

.card-method-how .card-method-circle {
  background: linear-gradient(135deg, var(--m-midnight-600), var(--m-midnight-700));
}

.card-method-what .card-method-circle {
  background: linear-gradient(135deg, var(--m-gold-800), var(--m-gold-600));
}

.method-circles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--spacing-10);
  margin-top: var(--spacing-16);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.card-method-why {
  grid-column: 1 / -1;
  margin-bottom: var(--spacing-8);
}

.card-method-how {
  grid-column: 1;
  grid-row: 2;
}

.card-method-what {
  grid-column: 2;
  grid-row: 2;
}

/* Mobile: Stack all cards */
@media (max-width: 768px) {
  .method-circles {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
  }
  
  .card-method-why,
  .card-method-how,
  .card-method-what {
    grid-column: 1;
    grid-row: auto;
  }
  
  .card-method-why {
    margin-bottom: var(--spacing-6);
  }
  
  .card-method {
    padding: var(--spacing-6);
  }
  
  .card-method-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-4);
    font-size: 16px;
  }
}

/* Social Proof */
.section-proof {
  background: var(--bg-card);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-6);
  margin-bottom: var(--spacing-12);
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Urgency */
.section-urgency {
  background: linear-gradient(135deg, var(--m-gold-800) 0%, var(--accent) 100%);
  color: var(--inverse);
  text-align: center;
}

.urgency-timer {
  display: flex;
  justify-content: center;
  gap: var(--spacing-4);
  margin: var(--spacing-8) 0;
}

.timer-block {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-4);
  min-width: 80px;
}

.timer-number {
  font-size: 32px;
  font-weight: var(--font-weight-black);
  line-height: 1;
  margin-bottom: var(--spacing-1);
}

.timer-label {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* CTA */
.section-cta {
  background: var(--bg-deep);
  color: var(--text);
  text-align: center;
  padding: var(--space-20) 0;
}

.cta-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-8);
  align-items: center;
  margin-top: var(--spacing-12);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-option {
  padding: var(--spacing-8);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.cta-option-bad {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* Pricing Card */
.pricing-card {
  background: var(--m-midnight-900);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: var(--spacing-8);
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: scale(1.05);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-6);
}

.pricing-badge {
  background: var(--accent);
  color: var(--inverse);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-3);
  display: inline-block;
}

.pricing-title {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: var(--space-2);
}

.pricing-price {
  color: var(--accent);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: var(--space-2);
}

.pricing-subtitle {
  color: var(--color-neutral-400);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.pricing-features {
  background: var(--color-neutral-800);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  margin: var(--spacing-6) 0;
}

.features-label {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: var(--color-white);
  padding: var(--space-2) 0;
  position: relative;
  padding-left: var(--space-5);
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.pricing-guarantee {
  background: rgba(200,165,76,0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--spacing-4);
  margin: var(--spacing-4) 0;
}

.guarantee-badge {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-2);
}

.guarantee-text {
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.pricing-context {
  margin: var(--spacing-4) 0;
}

.pricing-context p {
  color: var(--color-neutral-300);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.pricing-btn {
  background: var(--accent);
  color: var(--inverse);
  display: block;
  width: 100%;
  padding: var(--spacing-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin: var(--spacing-6) 0;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-btn:hover {
  background: var(--m-gold-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,165,76,0.3);
}

.pricing-footer {
  text-align: center;
}

.pricing-footer p {
  color: var(--color-neutral-500);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.cta-divider {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  opacity: 0.5;
}

/* Utility Classes */
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }
.mb-12 { margin-bottom: var(--spacing-12); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }
.mt-12 { margin-top: var(--spacing-12); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .section {
    padding: var(--spacing-12) 0;
  }
  
  .cta-vs {
    grid-template-columns: 1fr;
  }
  
  .cta-divider {
    transform: rotate(90deg);
  }
  
  .pricing-card {
    transform: scale(1);
    margin: var(--spacing-4);
    padding: var(--spacing-6);
  }
  
  .pricing-price {
    font-size: 56px;
  }
  
  .pricing-title {
    font-size: 24px;
  }
  
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .card-grid-testimonials {
    grid-template-columns: 1fr;
  }
  
  .method-circles {
    grid-template-columns: 1fr;
  }
}

/* ── Section About ── */
.section-about {
  background: var(--bg);
  color: var(--text);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.highlight-quote {
  background: var(--accent-bg);
  padding: var(--spacing-4);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: var(--spacing-6);
  }
  
  .about-photo {
    max-width: 300px;
  }
}

/* Print Styles */
@media print {
}

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