/* =====================================================================
   MOVESION LANDING (ES) — stili blocchi ACF
   Design tokens
   ===================================================================== */
:root {
  --mvs-red: #e30234;
  --mvs-ink: #0b1220;
  --mvs-white: #ffffff;
  --mvs-font-display: "Funnel Display", "Neue Haas Grotesk", Arial, sans-serif;
  --mvs-font-ui: "Inter", Arial, sans-serif;
}

/* =====================================================================
   SEZIONE 1 — TOP BAR
   ===================================================================== */
.mvs-topbar {
  background: var(--mvs-red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--mvs-white);
  width: 100%;
}
.mvs-topbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  flex-wrap: wrap;
}
.mvs-topbar__msg-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}
.mvs-topbar__icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  /* forza il bianco a prescindere dal colore sorgente dell'SVG */
  filter: brightness(0) invert(1);
}
.mvs-topbar__msg {
  margin: 0;
  font-family: var(--mvs-font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--mvs-white);
}

/* Countdown a pillole */
.mvs-countdown {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.mvs-countdown__pill {
  min-width: 35px;
  height: 28px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  font-family: var(--mvs-font-ui);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--mvs-white);
}
.mvs-countdown__sep {
  font-family: var(--mvs-font-ui);
  font-weight: 400;
  font-size: 11px;
  color: var(--mvs-white);
}

@media (max-width: 768px) {
  .mvs-topbar__msg {
    font-size: 13px;
    text-align: center;
  }
  .mvs-topbar__inner {
    gap: 12px;
  }
}

/* =====================================================================
   PAGE SHELL — rende il contenuto della landing full-bleed
   (neutralizza il wrapper Impreza l-section / l-section-h per questa pagina)
   ===================================================================== */
.page-id-8 .l-section {
  padding-top: 0;
  padding-bottom: 0;
}
.page-id-8 .l-section > .l-section-h {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.page-id-8 .mvs-topbar {
  margin: 0;
}
