/* ==========================================================================
   ATRAPA OFERTAS - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Palette */
  --bg-primary: #07111D;
  --bg-secondary: #0D1B2A;
  --bg-tertiary: #122338;
  --bg-card: #0F1F33;
  --bg-card-hover: #152942;
  
  --orange-primary: #FF6A00;
  --orange-hover: #FF7D1E;
  --orange-light: #FFF0E6;
  --orange-glow: rgba(255, 106, 0, 0.28);
  --orange-border: rgba(255, 106, 0, 0.35);

  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA5A;
  --whatsapp-glow: rgba(37, 211, 102, 0.28);

  --green-emerald: #22C55E;
  --green-light: #ECFDF5;

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-subtle: #D8E0EA;
  --text-muted: #8E9CAE;
  --text-dark: #0D1B2A;
  --text-dark-muted: #5A6675;

  /* Lines & Borders */
  --border-light: rgba(255, 255, 255, 0.10);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-solid: #1C2D42;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.38);

  /* Layout - Balanced desktop container */
  --container-max: 1360px;
  --header-height: 88px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.3s var(--ease-spring);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 29, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(7, 17, 29, 0.98);
  border-bottom-color: var(--border-medium);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.header-container {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: clamp(48px, 4.5vw, 58px);
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.02);
}

/* Right-aligned Navigation and WhatsApp button group */
.header-right-group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-subtle);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link.active {
  color: var(--text-white);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--orange-primary);
  border-radius: var(--radius-pill);
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-header:active {
  transform: translateY(0);
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  padding: 8px;
  z-index: 110;
}

.mobile-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(7, 17, 29, 0.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 110px 28px 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-subtle);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--orange-primary);
  background: rgba(255, 106, 0, 0.08);
  border-color: var(--orange-border);
}

.btn-whatsapp-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 24px var(--whatsapp-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  padding: clamp(50px, 5.5vw, 84px) 0 clamp(60px, 6.5vw, 100px);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

/* Background Atmosphere Elements */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-pattern-dots {
  position: absolute;
  top: 70px;
  left: 30px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.hero-glow-top-right {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.14) 0%, rgba(7, 17, 29, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-bottom-left {
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.20) 0%, rgba(7, 17, 29, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
}

/* Left Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  margin-bottom: 4px;
}

.title-white {
  color: var(--text-white);
}

.title-orange {
  color: var(--orange-primary);
  text-shadow: 0 4px 32px rgba(255, 106, 0, 0.4);
}

.hero-description {
  font-size: clamp(16.5px, 1.8vw, 20px);
  color: var(--text-subtle);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-description strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Hero CTA Button */
.hero-cta-wrap {
  margin-bottom: 42px;
  width: 100%;
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  padding: 17px 32px;
  border-radius: var(--radius-pill);
  font-size: clamp(15.5px, 1.6vw, 18px);
  font-weight: 700;
  box-shadow: 0 10px 34px var(--whatsapp-glow);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.5);
}

.btn-hero-whatsapp:hover .arrow-icon {
  transform: translateX(4px);
}

.arrow-icon {
  transition: transform var(--transition-fast);
}

/* Trust Badges Strip */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 40px);
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.25;
}

/* Category Quick Pills */
.hero-category-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: rgba(18, 35, 56, 0.75);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-subtle);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  cursor: default;
}

.cat-pill:hover {
  background: var(--bg-tertiary);
  border-color: var(--orange-border);
  color: var(--text-white);
  transform: translateY(-2px);
}

.cat-pill svg {
  color: var(--orange-primary);
}

/* Right Side: QR Card Component */
.hero-card-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spark Accents */
.qr-spark {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--orange-primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  pointer-events: none;
  animation: spark-twinkle 2.5s infinite ease-in-out;
}

.qr-spark-tr {
  top: 15px;
  right: 15px;
  animation-delay: 0.4s;
}

.qr-spark-bl {
  bottom: 25px;
  left: 15px;
  animation-delay: 1.2s;
}

@keyframes spark-twinkle {
  0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.3) rotate(45deg); opacity: 1; filter: drop-shadow(0 0 6px var(--orange-primary)); }
}

.qr-card {
  width: 100%;
  max-width: 450px;
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 38px 32px 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 106, 0, 0.3);
}

.qr-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}

.qr-card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.qr-card-subtitle {
  font-size: 14px;
  color: var(--text-dark-muted);
  font-weight: 500;
}

/* QR Code Box */
.qr-code-wrapper {
  width: 100%;
  max-width: 330px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2.5px solid #FF8533;
  padding: 14px;
  margin-bottom: 24px;
  box-shadow: 0 8px 26px rgba(255, 106, 0, 0.14);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.qr-code-wrapper:hover {
  transform: scale(1.02);
  border-color: var(--orange-primary);
}

.qr-frame {
  width: 100%;
  display: grid;
  place-items: center;
}

.qr-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.qr-card-footer {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid #ECEFF3;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.verified-icon {
  flex-shrink: 0;
}

.verified-text {
  display: flex;
  flex-direction: column;
}

.verified-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.verified-text span {
  font-size: 11.5px;
  color: var(--text-dark-muted);
  line-height: 1.35;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0 110px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 46px;
}

.section-header.text-center {
  text-align: center;
}

.dot-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  margin-right: 6px;
}

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--orange-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--orange-primary);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--orange-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 26px 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-subtle);
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--text-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #040A12;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 36px;
  color: var(--text-muted);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 380px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--orange-primary);
}

.footer-wa-link {
  color: var(--whatsapp-green) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MOBILE FLOATING STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 17, 29, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-top: 1px solid var(--border-medium);
  z-index: 90;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.btn-mobile-sticky {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--whatsapp-glow);
}

/* --- Toast Notification --- */
.toast-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-tertiary);
  color: var(--text-white);
  border: 1px solid var(--orange-primary);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-message.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablets and below (max 992px) */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 600px;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-category-pills {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile Devices (max 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 74px;
  }

  .hero-section {
    padding: 36px 0 60px;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-trust-badges {
    gap: 16px;
  }

  .trust-item {
    gap: 8px;
  }

  .qr-card {
    padding: 28px 20px 22px;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }

  .toast-message {
    bottom: 90px;
  }
}

/* Small Phones (max 480px) */
@media (max-width: 480px) {
  .hero-trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: rgba(18, 35, 56, 0.5);
    padding: 16px;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .trust-item {
    width: 100%;
  }

  .hero-category-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .cat-pill-more {
    grid-column: span 2;
    justify-content: center;
  }

  .btn-hero-whatsapp {
    width: 100%;
    padding: 14px 20px;
  }

  .header-actions .btn-whatsapp-header {
    display: none;
  }
}

/* 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;
  }
}
