/*
Theme Name: La Tribu del Dragón
Description: Tema personalizado para La Tribu del Dragón — comunidad de transformación personal en Subachoque, Colombia.
Version: 1.0
Author: Efectodi
Text Domain: dragon
*/

/* ═══════════════════════════════════════════════════════════
   DRAGON — Estilos Globales Compartidos
   ═══════════════════════════════════════════════════════════ */

/* ─── FUENTE DRAGONLORD ─── */
@font-face {
  font-family: 'Dragonlord';
  src: url('font/Dragonlord.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── DESIGN TOKENS ─── */
:root {
  --black:        #090909;
  --deep:         #0e0c0c;
  --surface:      #161212;
  --card:         #1e1818;
  --border:       #2e2222;
  --gold:         #b6a06f;
  --gold-light:   #c9b480;
  --gold-bright:  #d4c090;
  --red:          #9b1c1c;
  --red-mid:      #c0392b;
  --orange:       #d45d0a;
  --flame:        #f07316;
  --text:         #ffffff;
  --muted:        #a08878;
  --subtle:       #5a4a42;
  --dragon-from:  #9b1c1c;
  --dragon-to:    #b6a06f;
  --parejas-from: #3b1580;
  --parejas-to:   #9b6ef0;
  --manif-from:   #0b6b52;
  --manif-to:     #2dd4a0;
}

/* ─── TYPOGRAPHY ─── */
.display    { font-family: 'Cinzel Decorative', serif; font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; }
.heading    { font-family: 'Cinzel', serif; font-weight: 700; line-height: 1.2; }
.subheading { font-family: 'Cinzel', serif; font-weight: 600; line-height: 1.3; }
.brand-name { font-family: 'Dragonlord', serif; font-weight: normal; }

/* ─── LAYOUT ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,9,9,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,34,34,0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(9,9,9,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  padding: 8px 14px; border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--gold-light); background: rgba(182,160,111,0.07); }
.nav-links .nav-dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
}
.nav-links .nav-link-pagos { color: var(--gold-light); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--muted);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(9,9,9,0.98); border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-cta-mobile {
  margin-top: 16px; text-align: center; border-bottom: none;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff; border-radius: 3px; padding: 14px;
}
.nav-mobile .nav-link-pagos { color: var(--gold-light); }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--deep);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; gap: 0;
}
.stat-item { flex: 1; text-align: center; max-width: 280px; }
.stat-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.stat-divider { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; margin: 0 32px; }

/* ─── DIVIDER ORNAMENT ─── */
.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 12px 0;
}
.divider-ornament::before, .divider-ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.divider-ornament::after { background: linear-gradient(90deg, var(--border), transparent); }
.ornament-icon { color: var(--gold); font-size: 1.4rem; }

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-label.center { justify-content: center; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 24px; color: var(--text); }
.section-title .accent { color: var(--gold-light); }
.section-title.center { text-align: center; }
.section-title.center-mb { text-align: center; margin-bottom: 20px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 60%, var(--gold) 100%);
  color: #fff; font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 40px; border: none; border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 30px rgba(200,80,0,0.4);
  animation: heartbeat 882ms ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(200,80,0,0.6);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-primary.btn-hero { font-size: 1rem; padding: 22px 60px; box-shadow: 0 8px 50px rgba(200,80,0,0.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold-light);
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 17px 36px; border: 1px solid var(--gold); border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { background: rgba(182,160,111,0.1); color: var(--gold-bright); }

/* ─── VIDEO CARDS ─── */
.video-card {
  position: relative; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 9/16;
}
.video-card:hover {
  border-color: rgba(182,160,111,0.5);
  box-shadow: 0 12px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(182,160,111,0.2);
}
.video-card video { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-overlay-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45); cursor: pointer; transition: background 0.3s ease;
}
.video-overlay-btn:hover { background: rgba(0,0,0,0.2); }
.video-overlay-btn.hidden { display: none; }
.play-circle {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(200,80,0,0.6); transition: transform 0.2s ease;
}
.video-overlay-btn:hover .play-circle { transform: scale(1.1); }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(182,160,111,0.06), transparent);
  border-radius: 0 8px 8px 0;
  margin: 40px 0;
}
.quote-block p { font-size: clamp(1.1rem, 2.2vw, 1.35rem); line-height: 1.8; color: #ddd0c4; font-style: italic; }
.quote-block strong { color: var(--gold-light); font-style: normal; }

/* ─── AUDIENCE CARDS ─── */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.audience-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 40px 36px; position: relative; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.audience-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.audience-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.audience-card-title { font-size: 1.4rem; margin-bottom: 16px; color: var(--gold-light); }
.audience-card-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.audience-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.audience-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: #c8b8ac; line-height: 1.55; }
.audience-list li::before { content: '▸'; color: var(--flame); flex-shrink: 0; margin-top: 2px; }

/* ─── INCLUDES GRID ─── */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.include-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 28px; text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.include-item:hover { border-color: var(--gold); background: rgba(182,160,111,0.05); }
.include-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(182,160,111,0.3); border-radius: 8px;
  background: rgba(182,160,111,0.06);
}
.include-icon svg { display: block; }
.include-icon.icon-emoji { font-size: 2.2rem; width: auto; height: auto; border: none; background: none; }
.include-title {
  font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px;
}
.include-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 24px; text-align: center;
}
.cta-strip p { font-size: 1rem; color: #c8b8ac; margin-bottom: 20px; font-style: italic; }
.cta-strip strong { color: var(--gold-light); font-style: normal; }

/* ─── CTA FINAL ─── */
#cta-final {
  background: var(--deep); text-align: center; padding: 90px 24px;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(180,40,0,0.3), transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 110%, rgba(220,100,0,0.15), transparent 60%);
  pointer-events: none;
}
.cta-final-title {
  font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 24px;
  background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 50%, var(--flame) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-final-sub { max-width: 680px; margin: 0 auto 48px; font-size: clamp(1rem, 1.8vw, 1.2rem); color: #c8b8ac; line-height: 1.8; }
.cta-inner { position: relative; z-index: 1; }

/* ─── GUARANTEE ─── */
.guarantee-box {
  max-width: 860px; margin: 48px auto 0;
  background: linear-gradient(135deg, rgba(155,28,28,0.15), rgba(182,160,111,0.08));
  border: 1px solid var(--red-mid); border-radius: 12px; padding: 56px 64px;
  position: relative; overflow: hidden;
}
.guarantee-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180,40,0,0.15), transparent 70%);
  pointer-events: none;
}
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(155,28,28,0.3); border: 1px solid var(--red-mid);
  color: #f08080; font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 2px; margin-bottom: 28px;
}
.guarantee-quote { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.85; color: #d4c0b0; font-style: italic; }
.guarantee-quote strong { color: var(--gold-light); font-style: normal; }

/* ─── STEPS ─── */
.steps-row { display: flex; gap: 0; margin: 32px 0; }
.step { flex: 1; text-align: center; padding: 0 24px; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20px;
  width: 1px; height: 60%; background: var(--border);
}
.step-num {
  font-family: 'Cinzel Decorative', serif; font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.step-title { font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

/* ─── PAYMENT GRID ─── */
.payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.payment-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 20px 18px;
}
.payment-bank {
  font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.1em;
  color: var(--gold-light); margin-bottom: 12px; text-transform: uppercase;
}
.payment-row { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.payment-label { font-size: 0.75rem; color: var(--muted); }
.payment-value { font-size: 0.75rem; color: var(--text); font-weight: 500; text-align: right; }

/* ─── COMPROBANTE BOX ─── */
.comprobante-box {
  max-width: 600px; margin: 0 auto;
  background: rgba(182,160,111,0.06); border: 1px solid rgba(182,160,111,0.3);
  border-radius: 10px; padding: 32px 40px; text-align: center;
}
.comprobante-notice { font-size: 0.92rem; color: #c8b8ac; line-height: 1.7; margin-bottom: 20px; }
.comprobante-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  color: #fff; font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 30px rgba(200,80,0,0.4);
}
.comprobante-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ─── BENEFIT BOX ─── */
.benefit-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 40px;
}
.benefit-quote { font-size: clamp(1rem, 1.8vw, 1.2rem); color: #c8b8ac; line-height: 1.8; font-style: italic; }
.benefit-quote strong { color: var(--gold-light); font-style: normal; }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 56px 24px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-logo {
  font-family: 'Cinzel Decorative', serif; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; max-width: 320px; }
.footer-col-title { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.84rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1100px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { color: var(--subtle); font-size: 0.78rem; letter-spacing: 0.05em; }
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 6px; color: var(--muted); transition: color 0.2s, border-color 0.2s; text-decoration: none; }
.footer-social a:hover { color: var(--gold-light); border-color: var(--gold); }
.footer-simple { text-align: center; }
footer p { color: var(--subtle); font-size: 0.8rem; letter-spacing: 0.05em; }
footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold-light); }

/* ─── WHATSAPP FLOTANTE ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.45); }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes heartbeat {
  0%   { transform: scale(1);    box-shadow: 0 4px 30px rgba(200,80,0,0.4); }
  7%   { transform: scale(1.03); box-shadow: 0 6px 36px rgba(200,80,0,0.55); }
  14%  { transform: scale(1);    box-shadow: 0 4px 30px rgba(200,80,0,0.4); }
  21%  { transform: scale(1.02); box-shadow: 0 5px 32px rgba(200,80,0,0.48); }
  30%  { transform: scale(1);    box-shadow: 0 4px 30px rgba(200,80,0,0.4); }
  100% { transform: scale(1);    box-shadow: 0 4px 30px rgba(200,80,0,0.4); }
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE GLOBAL ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .guarantee-box { padding: 40px 28px; }
  .stat-divider { width: 56px; height: 1px; margin: 0; }
  .stats-strip { flex-direction: column; gap: 28px; }
  .steps-row { flex-direction: column; }
  .step:not(:last-child)::after { width: 60%; height: 1px; top: auto; bottom: 0; right: auto; left: 50%; transform: translateX(-50%); }
  .payment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-strip { flex-direction: column; gap: 28px; }
  section { padding: 52px 0; }
  .container { padding: 0 16px; }
}
@media (max-width: 480px) {
  .includes-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > :first-child { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
