.vm-screen {
  display: none;
  width: 100%;
  background: #ffffff;
}

.vm-screen-active {
  display: block;
}

/* =========================
   DESKTOP / MOBILE
========================= */

.vm-question-left > .vm-question-visual {
  display: none;
}

.vm-result-mobile-title {
  display: none;
}

/* =========================
   INTRO
========================= */

.vm-intro-container {
  max-width: 1118px;
  /* min-height: 856px; */
  padding: 96px 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 78px;
}

.vm-intro-copy {
  width: 559px;
}

.vm-intro-copy h1 {
  font-family: "Santander Headline", Arial, sans-serif;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: -0.5px;
}

.vm-intro-copy p {
  margin: 24px 0 32px;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
}

.vm-intro-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-intro-visual img {
  width: 100%;
  max-width: 375px;
  height: auto;
  display: block;
}

/* =========================
   BOTONES
========================= */

.vm-primary-btn.vm-branch-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vm-primary-btn.vm-branch-btn:visited,
.vm-primary-btn.vm-branch-btn:hover,
.vm-primary-btn.vm-branch-btn:active {
  text-decoration: none;
}

.vm-primary-btn {
  height: 40px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: #ec0000;
  color: #ffffff;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.vm-primary-btn:hover {
  background: #cc0000;
}

.vm-primary-btn.vm-disabled,
.vm-primary-btn:disabled {
  background: #d9d9d9;
  color: #999999;
  cursor: not-allowed;
}

.vm-primary-btn.vm-disabled:hover,
.vm-primary-btn:disabled:hover {
  background: #d9d9d9;
}

.vm-next-btn {
  min-width: 192px;
}

.vm-back-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: none;
  border-radius: 50%;
  background: #ec0000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.vm-back-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

/* =========================
   PREGUNTAS
========================= */

.vm-question-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 88px 0 80px;
}

.vm-question-header {
  text-align: center;
  margin-bottom: 32px;
}

.vm-question-header h2 {
  font-family: "Santander Headline", Arial, sans-serif;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 700;
  color: #1f1f1f;
}

.vm-question-header > p:not(.vm-step-text) {
  margin-top: 16px;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #333333;
}

.vm-progress {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 34px 0 18px;
}

.vm-progress span {
  height: 4px;
  border-radius: 999px;
  background: #d8d8d8;
}

.vm-progress span.active {
  background: #ec0000;
}

.vm-step-text {
  text-align: left;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f1f1f;
}

.vm-question-content {
  display: grid;
  grid-template-columns: 518px 354px;
  column-gap: 88px;
  align-items: start;
}

.vm-question-left h3 {
  margin-bottom: 24px;
  font-family: "Santander Headline", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.vm-question-helper {
  margin-top: -18px;
  margin-bottom: 24px;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: #333333;
}

/* =========================
   OPCIONES
========================= */

.vm-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vm-option-card {
  width: 518px;
  min-height: 81px;
  padding: 16px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 48px 1fr 26px;
  align-items: center;
  column-gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: border 0.2s ease, background 0.2s ease;
}

.vm-option-card:hover {
  border-color: #bcbcbc;
}

.vm-option-card.selected {
  border-color: #2b8268;
  background: #edf9f5;
}

.vm-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-option-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.vm-option-card.selected .vm-option-icon {
  background: #00712f;
}

.vm-option-card.selected .vm-option-icon img {
  filter: brightness(0) invert(1);
}

.vm-option-text {
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f1f1f;
}

.vm-check {
  width: 20px;
  height: 20px;
  border: 2px solid #9b9b9b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-check img {
  width: 20px;
  height: 20px;
  display: none;
}

.vm-option-card.selected .vm-check {
  border: none;
}

.vm-option-card.selected .vm-check img {
  display: block;
}

/* =========================
   CAMPO MONTO
========================= */

.vm-money-field {
  width: 518px;
  min-height: 80px;
  padding: 13px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background: #ffffff;
}

.vm-money-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #6f6f6f;
}

.vm-info-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.vm-money-input-wrap {
  margin-top: 2px;
  display: flex;
  align-items: center;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.vm-money-input-wrap span {
  margin-right: 2px;
}

.vm-money-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
  background: transparent;
}

.vm-money-field:focus-within {
  border-color: #767676;
}

/* =========================
   ACCIONES E IMAGEN
========================= */

.vm-question-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-question-visual {
  width: 354px;
  height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-question-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESULTADO
========================= */

.vm-result-wrapper {
  max-width: 960px;
  min-height: 856px;
  margin: 0 auto;
  padding: 80px 0 72px;
}

.vm-result-header {
  text-align: center;
  margin-bottom: 42px;
}

.vm-result-header h2 {
  font-family: "Santander Headline", Arial, sans-serif;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 700;
  color: #191919;
  letter-spacing: -0.5px;
}

.vm-result-header p {
  margin-top: 20px;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #4c4c4c;
}

.vm-result-comparison {
  position: relative;
  display: grid;
  grid-template-columns: 440px 38px 440px;
  column-gap: 21px;
  align-items: center;
  margin-bottom: 40px;
}

.vm-result-card {
  width: 440px;
  min-height: 230px;
  border-radius: 16px;
  background: #ffffff;
  padding: 28px 24px 24px;
}

.vm-without-card {
  border: 1px solid #d9d9d9;
}

.vm-with-card {
  min-height: 310px;
  padding: 4px 4px 24px;
  border: none;
  border-radius: 16px;
  background: #a3e0ce;
  overflow: hidden;
}

.vm-with-card .vm-result-card-title {
  width: 100%;
  height: 46px;
  margin: 0 0 24px;
  padding: 8px 12px;
  border-radius: 12px 12px 8px 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-result-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.vm-result-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vm-result-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.vm-result-card-title h3 {
  font-family: "Santander Headline", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.vm-without-title h3 {
  color: #191919;
}

.vm-with-title h3 {
  color: #1e6350;
  white-space: nowrap;
}

.vm-with-card .vm-card-description,
.vm-with-card .vm-result-time,
.vm-with-card .vm-equivalent-row {
  margin-left: 20px;
  margin-right: 20px;
}

.vm-with-card .vm-result-bar {
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
}

.vm-card-description {
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: #4c4c4c;
}

.vm-card-description strong {
  font-weight: 700;
  color: #191919;
}

.vm-insured-description {
  margin-bottom: 14px;
}

.vm-result-time {
  margin-top: 14px;
  margin-bottom: 24px;
}

.vm-with-card .vm-result-time {
  margin-top: 8px;
  margin-bottom: 26px;
}

.vm-result-time strong {
  display: block;
  font-family: "Santander Headline", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #191919;
}

.vm-result-time span {
  display: block;
  margin-top: 2px;
  font-family: "Santander Text", "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #4c4c4c;
}

.vm-with-card .vm-result-time strong,
.vm-with-card .vm-result-time span {
  color: #191919;
}

/* =========================
   BARRAS RESULTADO
========================= */

.vm-result-bar {
  width: 100%;
}

.vm-bar-track {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #d2d2d2;
  overflow: hidden;
}

.vm-with-card .vm-bar-track {
  background: #ffffff;
}

.vm-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  border-radius: 999px;
  background: #ec0000;
  transition: width 0.4s ease;
}

.vm-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.vm-bar-labels span {
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #191919;
}

/* =========================
   EQUIVALENCIA
========================= */

.vm-equivalent-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  align-items: start;
  margin-top: 28px;
}

.vm-money-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vm-money-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.vm-equivalent-row p {
  font-family: "Santander Text", "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #191919;
}

.vm-equivalent-row strong {
  font-weight: 700;
}

.vm-equivalent-row span {
  font-weight: inherit;
}

/* =========================
   VS
========================= */

.vm-vs-separator {
  width: 38px;
  height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vm-vs-separator::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #d9d9d9;
  transform: translateX(-50%);
}

.vm-vs-separator span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4c4c4c;
}

/* =========================
   NOTA RESULTADO
========================= */

.vm-result-note {
  width: 950px;
  min-height: 63px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f2f2f2;
  display: grid;
  grid-template-columns: 39px 1fr;
  column-gap: 12px;
  align-items: center;
  margin: 0 auto 32px;
  overflow: hidden;
}

.vm-note-icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-note-icon-img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  display: block;
}

.vm-note-copy strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
  color: #191919;
}

.vm-note-copy p {
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #191919;
}

.vm-note-copy b {
  font-weight: 700;
}

/* =========================
   CTA RESULTADO
========================= */

.vm-result-desktop-cta {
  width: 562px;
  margin: 0 auto 24px;
  text-align: center;
}

.vm-result-desktop-cta p {
  font-family: "Santander Text", "Santander Micro Text", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  color: #191919;
}

.vm-result-desktop-cta strong {
  font-weight: 700;
}

/* =========================
   ACCIONES RESULTADO
========================= */

.vm-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.vm-recalculate-btn {
  height: 40px;
  padding: 0 16px;
  border: none;
  background: transparent;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ec0000;
  cursor: pointer;
}

.vm-branch-btn {
  min-width: 153px;
  height: 40px;
  font-size: 16px;
}

/* =========================
   DISCLAIMER RESULTADO
========================= */

.vm-result-disclaimer {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-top: 40px;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 32px 24px;
  background: #f0f0f0;
  overflow-x: clip;
}

.vm-result-disclaimer p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Santander Micro Text", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  color: #575757;
}

/* =========================
   RESPONSIVE MOBILE CORREGIDO
========================= */

@media(max-width: 1199px){
    .vm-intro-container {
      max-width: 100%;
      min-height: auto;
      padding: 72px 24px;
      grid-template-columns: 1fr;
      row-gap: 28px;
      text-align: left;
    }

    .vm-intro-copy {
      width: 100%;
    }

    .vm-intro-copy h1 {
      font-size: 36px;
    }
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .vm-screen,
  .vm-question-wrapper,
  .vm-result-wrapper {
    color: #222222;
  }

  .vm-screen h1,
  .vm-screen h2,
  .vm-screen h3,
  .vm-screen p,
  .vm-screen span,
  .vm-screen label,
  .vm-screen input,
  .vm-screen strong,
  .vm-screen b {
    color: #222222;
  }

  .vm-primary-btn,
  .vm-primary-btn span,
  .vm-primary-btn strong,
  .vm-primary-btn.vm-branch-btn {
    color: #ffffff;
  }

  .vm-primary-btn.vm-disabled,
  .vm-primary-btn:disabled {
    color: #999999;
  }

  .vm-intro-copy {
    width: 100%;
  }

  .vm-intro-copy h1 {
    font-size: 40px;
    line-height: 1.18;
    text-align: left;
  }

  .vm-intro-copy p {
    max-width: 100%;
    margin: 16px 0 28px;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
  }

  .vm-intro-copy .vm-primary-btn {
    width: 100%;
    min-width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
  }

  .vm-intro-visual {
    width: 100%;
    height: auto;
  }

  .vm-intro-visual img {
    max-width: 300px;
    margin: 0 auto;
  }

  .vm-question-wrapper {
    max-width: 100%;
    padding: 56px 16px 72px;
  }

  .vm-question-header {
    text-align: left;
    margin-bottom: 8px;
  }

  .vm-question-header h2 {
    max-width: 100%;
    margin: 0;
    font-size: 40px;
    line-height: 1.18;
    text-align: left;
  }

  .vm-question-header > p:not(.vm-step-text) {
    max-width: 100%;
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    text-align: left;
  }

  .vm-progress {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 38px 0 10px;
  }

  .vm-progress span {
    height: 4px;
    border-radius: 999px;
  }

  .vm-step-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
  }

  .vm-question-content {
    grid-template-columns: 1fr;
  }

  .vm-question-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .vm-question-left h3 {
    order: 1;
    max-width: 100%;
    margin: 26px 0 22px;
    text-align: left;
    font-size: 20px;
    line-height: 1.2;
  }

  .vm-question-helper {
    order: 2;
    max-width: 100%;
    margin: -12px 0 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
  }

  .vm-options {
    order: 3;
    width: 100%;
    gap: 10px;
  }

  .vm-option-card {
    width: 100%;
    max-width: 100%;
    min-height: 80px;
    padding: 14px 16px 14px 12px;
    border-radius: 12px;
    grid-template-columns: 48px 1fr 20px;
    column-gap: 12px;
    text-align: left;
  }

  .vm-option-text {
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
  }

  .vm-check {
    width: 16px;
    height: 16px;
    border-width: 1.5px;
  }

  .vm-check img {
    width: 16px;
    height: 16px;
  }

  .vm-money-field {
    order: 3;
    width: 100%;
    max-width: 100%;
    min-height: 82px;
    border-radius: 16px;
    text-align: left;
  }

  .vm-money-field label,
  .vm-money-input-wrap {
    text-align: left;
  }

  .vm-question-visual-desktop {
    display: none;
  }

  .vm-question-actions {
    order: 4;
    width: 100%;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .vm-question-actions .vm-back-btn {
    order: 1;
    width: 100%;
    min-width: 100%;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vm-question-actions .vm-back-btn:hover {
    background: transparent;
  }

  .vm-question-actions .vm-back-btn img {
    display: none;
  }

  .vm-question-actions .vm-back-btn::before {
    content: "Atrás";
    font-family: "Santander Micro Text", Arial, sans-serif;
    color: #ec0000;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
  }

  .vm-question-actions .vm-primary-btn,
  .vm-question-actions .vm-next-btn {
    order: 2;
    width: 100%;
    min-width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
  }

  .vm-question-left > .vm-question-visual {
    order: 5;
    width: 100%;
    height: auto;
    margin-top: 28px;
    display: flex;
    justify-content: center;
  }

  .vm-question-left > .vm-question-visual img {
    width: auto;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
  }

  .vm-result-wrapper {
    max-width: 100%;
    min-height: auto;
    padding: 56px 16px 72px;
  }

  .vm-result-header {
    margin-bottom: 40px;
    text-align: left;
  }

  .vm-result-header h2 {
    max-width: 100%;
    margin: 0;
    font-size: 44px;
    line-height: 1.18;
    text-align: left;
  }

  .vm-result-header p {
    max-width: 100%;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
  }

 

  .vm-result-comparison {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-bottom: 32px;
  }

  .vm-result-card {
    width: 100%;
    border-radius: 16px;
  }

  .vm-without-card {
    padding: 28px 24px 24px;
    border: 1px solid #d9d9d9;
    background: #ffffff;
  }

  .vm-with-card {
    min-height: auto;
    padding: 4px 4px 24px;
    border-radius: 16px;
    background: #a3e0ce;
    box-shadow: none;
  }

  .vm-with-card .vm-result-card-title {
    height: auto;
    min-height: 46px;
  }

  .vm-with-title h3 {
    font-size: 22px;
    white-space: normal;
    color: #1e6350;
  }

  .vm-without-title h3 {
    font-size: 24px;
  }

  .vm-with-card .vm-card-description,
  .vm-with-card .vm-result-time,
  .vm-with-card .vm-equivalent-row {
    margin-left: 20px;
    margin-right: 20px;
  }

  .vm-with-card .vm-result-bar {
    margin-left: 20px;
    margin-right: 20px;
  }

  .vm-vs-separator {
    width: 100%;
    height: 38px;
  }

  .vm-vs-separator::before {
    top: 50%;
    bottom: auto;
    left: 50%;
    width: 112px;
    height: 1px;
    transform: translate(-50%, -50%);
  }

  .vm-vs-separator span {
    width: 38px;
    height: 38px;
  }

  .vm-equivalent-row {
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: start;
  }

  .vm-equivalent-row p {
    font-size: 16px;
    line-height: 1.45;
  }

  .vm-result-note {
    width: 100%;
    max-width: 100%;
    min-height: 63px;
    height: auto;
    padding: 12px 16px;
    border-radius: 8px;
    grid-template-columns: 39px 1fr;
    column-gap: 12px;
    align-items: center;
  }

  .vm-note-copy p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .vm-result-desktop-cta {
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px;
    text-align: left;
  }

  .vm-result-desktop-cta p,
  .vm-result-desktop-cta strong {
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
  }

  .vm-result-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .vm-recalculate-btn {
    width: 100%;
    min-width: 100%;
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: transparent;
    font-size: 16px;
    color: #ec0000;
  }

  .vm-branch-btn,
  .vm-result-actions .vm-primary-btn,
  .vm-result-actions .vm-branch-btn {
    width: 100%;
    min-width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
  }

  .vm-result-disclaimer {
    margin-top: 36px;
    padding: 24px 16px;
  }

  .vm-result-disclaimer p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
  }
}

/* =========================
   MOBILE PEQUEÑO
========================= */

@media (max-width: 390px) {
  .vm-question-wrapper,
  .vm-result-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vm-question-header h2,
  .vm-result-header h2 {
    font-size: 42px;
  }

  .vm-question-left > .vm-question-visual img {
    max-width: 245px;
  }
}

/* =========================
   ANIMACIÓN INTRO
========================= */

.vm-transition-lock {
  overflow-x: hidden;
}

.vm-slide-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.vm-slide-viewport .vm-screen {
  display: block;
}

.vm-slide-viewport-inner {
  display: flex;
  width: 200%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.vm-slide-viewport .vm-screen {
  width: 50%;
  flex: 0 0 50%;
  background: #ffffff;
}

.vm-slide-viewport.slide-to-left .vm-slide-viewport-inner {
  transform: translateX(-50%);
}

.vm-slide-viewport.slide-to-right .vm-slide-viewport-inner {
  transform: translateX(0);
}

/* =========================
   ANIMACIÓN SOLO CONTENIDO DE PREGUNTAS
========================= */

.vm-question-slide-viewport {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #ffffff;
  transform: translateZ(0);
}

.vm-question-slide-inner {
  display: flex;
  width: 200%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.vm-question-slide-panel {
  width: 50%;
  flex: 0 0 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vm-question-slide-panel > .vm-question-content {
  width: 960px;
  max-width: 960px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 900px) {
  .vm-question-slide-panel > .vm-question-content {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}


.vm-mobile-break {
  display: none;
}

@media (max-width: 900px) {
  .vm-mobile-break {
    display: block;
  }

  .vm-result-title {
    font-size: 40px;
    line-height: 1.18;
  }
}

@media (max-width: 900px) {
  .vm-result-desktop-cta {
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px;
    text-align: left;
  }

  .vm-result-desktop-cta strong {
    display: block;
    margin-bottom: 8px;
  }

  .vm-result-desktop-cta p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
  }
}