/* ==========================================================================
   RM CONCEITO — DESIGN SYSTEM & ESTILOS PREMIUM
   Direção de Arte: O COPY | Método PRO MAX ULTRA v12
   Paleta: Preto Profundo, Cinza Titânio, Branco Puro
   ========================================================================== */

:root {
  /* Tokens de Cor */
  --bg-deep: #050507;
  --bg-surface: #0B0B0F;
  --bg-card: rgba(16, 17, 24, 0.75);
  --bg-card-hover: rgba(24, 26, 36, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.22);
  --border-hover: rgba(255, 255, 255, 0.35);

  --text-primary: #FFFFFF;
  --text-secondary: #A0A3B1;
  --text-muted: #686B7C;
  
  --accent-white: #FFFFFF;
  --accent-glow: rgba(255, 255, 255, 0.15);
  --accent-status: #10B981;
  --accent-status-glow: rgba(16, 185, 129, 0.4);

  /* Tipografia */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Geometria & Efeitos */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-elevated: 0 20px 45px -12px rgba(0, 0, 0, 0.8);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Foco Acessível WCAG 2.2 AA */
:focus-visible {
  outline: 2px solid var(--accent-white);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   ATMOSFERA & BACKGROUND (THREE.JS + ORBES)
   -------------------------------------------------------------------------- */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.ambient-light {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
}

.top-light {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.bottom-light {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   LAYOUT & CONTAINER PRINCIPAL (CANVAS EDITORIAL)
   -------------------------------------------------------------------------- */
.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  padding: 32px 18px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 600px) {
  .page-wrapper {
    padding: 48px 24px 64px;
  }
  
  .main-container {
    background: rgba(11, 12, 17, 0.8);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 28px 36px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* Avatar Oficial com Halo */
.brand-avatar-container {
  position: relative;
  width: 124px;
  height: 124px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  filter: blur(12px);
  z-index: 1;
}

.avatar-ring {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Status Pill */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-status);
  box-shadow: 0 0 10px var(--accent-status-glow);
  animation: pulse 2s infinite ease-in-out;
}

.status-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #34D399;
  text-transform: uppercase;
}

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

/* Títulos */
.brand-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.icon-pin {
  color: #FFFFFF;
}

/* Prova Oficial da Bio */
.official-proof-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  margin-top: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.proof-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.proof-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   SHINY SWEEP GLOW (EFEITO LUXUOSO DISCRETO)
   -------------------------------------------------------------------------- */
.shiny-sweep {
  position: relative;
  overflow: hidden;
}

.shiny-sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: sweepLoop 4.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sweepLoop {
  0%, 70% { left: -120%; }
  100% { left: 160%; }
}

/* --------------------------------------------------------------------------
   2. SHOWCASE VISUAL EDITORIAL (FACHADA OFICIAL)
   -------------------------------------------------------------------------- */
.showcase-section {
  width: 100%;
}

.showcase-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
}

.hero-single-image {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: calc(var(--radius-lg) - 1px);
  overflow: hidden;
  background: #090A0D;
}

@media (min-width: 600px) {
  .hero-single-image {
    height: 260px;
  }
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.hero-single-image:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(to top, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.4) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.showcase-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.showcase-text {
  font-size: 0.76rem;
  color: #D1D4DE;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   3. AÇÕES PRINCIPAIS / CARDS DE ALTA CONVERSÃO
   -------------------------------------------------------------------------- */
.actions-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.section-title-subtle {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 6px;
  margin-bottom: 2px;
}

.action-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 18px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.action-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.action-card:active {
  transform: translateY(1px);
}

/* Card Destacado (WhatsApp) */
.highlight-card {
  background: rgba(22, 24, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.highlight-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* Ícones dos Cards */
.card-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transition: transform var(--transition-fast);
}

.action-card:hover .card-icon-box {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.1);
}

.card-icon-wpp {
  color: #25D366;
}

.card-icon-insta {
  color: #E1306C;
}

.card-icon-maps {
  color: #FFFFFF;
}

/* Conteúdo de Texto do Card */
.card-text-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.card-headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.card-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}

.pill-subtle {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-sub {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-arrow {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.action-card:hover .card-arrow {
  color: var(--text-primary);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. BLOCO DE HORÁRIOS DE FUNCIONAMENTO (CARD FINAL)
   -------------------------------------------------------------------------- */
.schedule-section {
  width: 100%;
}

.editorial-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 4px;
}

.schedule-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.status-pulse-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.status-dot-open {
  background-color: var(--accent-status);
  box-shadow: 0 0 8px var(--accent-status-glow);
  animation: pulse 2s infinite ease-in-out;
}

.status-dot-closed {
  background-color: #EF4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.status-live-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.schedule-footer-action {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.btn-maps-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.btn-maps-profile:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.btn-maps-icon {
  display: flex;
  align-items: center;
}

.btn-maps-arrow {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.btn-maps-profile:hover .btn-maps-arrow {
  transform: translateX(3px);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  padding: 2px 0;
}

.schedule-day {
  color: var(--text-secondary);
  font-weight: 600;
  white-space: nowrap;
}

.schedule-separator {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  margin: 0 4px;
}

.schedule-time {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.schedule-closed .schedule-day {
  color: var(--text-muted);
}

.closed-tag {
  color: #EF4444;
  font-weight: 800;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. MAPA INTERATIVO
   -------------------------------------------------------------------------- */
.map-section {
  width: 100%;
}

.map-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(14, 15, 22, 0.9);
  border-bottom: 1px solid var(--border-subtle);
}

.map-pin-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.map-direct-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast);
}

.map-direct-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 230px;
  background: #111218;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

.map-footer-bar {
  padding: 12px 18px;
  background: rgba(14, 15, 22, 0.9);
  border-top: 1px solid var(--border-subtle);
}

.map-address-text {
  font-size: 0.76rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   DIFERENCIAIS DA MARCA (CARDS HORIZONTAIS)
   -------------------------------------------------------------------------- */
.trust-section {
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.trust-item {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast);
}

.trust-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: var(--bg-card-hover);
  transform: translateY(-2px);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.trust-desc {
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.38;
}

@media (max-width: 380px) {
  .trust-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 2px 2px 6px;
    margin: 0 -2px;
  }
  .trust-grid::-webkit-scrollbar {
    display: none;
  }
  .trust-item {
    flex: 0 0 78%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 14px 12px;
  }
}

/* --------------------------------------------------------------------------
   7. RODAPÉ DE 2 LINHAS (O COPY)
   -------------------------------------------------------------------------- */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-signature {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.signature-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: opacity var(--transition-fast);
}

.signature-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   RESPONSIVIDADE & AJUSTES DE VIEWPORT
   -------------------------------------------------------------------------- */

/* Telas muito pequenas (≤360px) */
@media (max-width: 360px) {
  .page-wrapper {
    padding: 20px 12px 36px;
  }
  
  .brand-title {
    font-size: 1.8rem;
  }

  .schedule-row {
    font-size: 0.75rem;
    gap: 4px;
  }

  .schedule-time {
    font-size: 0.76rem;
  }

  .closed-tag {
    font-size: 0.66rem;
    padding: 1px 6px;
  }
}

/* Telas médias / Tablets (768px+) */
@media (min-width: 768px) {
  .page-wrapper {
    max-width: 500px;
  }
  
  .brand-title {
    font-size: 2.3rem;
  }
}

/* Acessibilidade: prefers-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;
  }
  
  .shiny-sweep::after {
    display: none !important;
  }
  
  .status-pulse {
    animation: none !important;
  }
}
