/* La sección CTA con física Matter.js solo se muestra en escritorio (ralentiza el móvil) */
.mxd-gravity-cta {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .mxd-gravity-cta {
    display: block;
  }
}

.fw-mark__content {
  font-size: 24cqw;
}
@media only screen and (min-width: 992px) {
  .fw-mark__content {
    font-size: 24cqw;
  }
}

.demo-card__image .img-01 {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  .demo-card__image .img-01 {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

/* Preload Notice (pausa de precarga tras la portada) */
.mxd-preload-notice {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.mxd-preload-notice.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s;
}
.mxd-preload-notice .btn-line-default {
  color: #e3e3f0;
}
.mxd-preload-notice .btn-line-default svg {
  fill: #e3e3f0;
}

/* Old Browser Notice (aviso de navegador antiguo) */
.mxd-oldbrowser-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background-color: #ff6a00;
  color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font: normal 500 1.4rem/1.5 "JetBrains Mono", sans-serif;
  -webkit-box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
          box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}
.mxd-oldbrowser-notice[hidden] {
  display: none;
}
.mxd-oldbrowser-notice__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.6rem 2rem;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
}
.mxd-oldbrowser-notice__text {
  margin: 0;
  color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 280px;
          flex: 1 1 280px;
}
.mxd-oldbrowser-notice__close {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  -moz-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.mxd-oldbrowser-notice__close:hover {
  background-color: #ffffff;
  color: #ff6a00;
}
