@font-face {
  font-family: "Circular";
  src:
    url("../fonts/CircularStd-Book.woff2") format("woff2"),
    url("../fonts/CircularStd-Book.woff") format("woff"),
    url("../fonts/CircularStd-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular";
  src:
    url("../fonts/CircularStd-Medium.woff2") format("woff2"),
    url("../fonts/CircularStd-Medium.woff") format("woff"),
    url("../fonts/CircularStd-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular";
  src:
    url("../fonts/CircularStd-Bold.woff2") format("woff2"),
    url("../fonts/CircularStd-Bold.woff") format("woff"),
    url("../fonts/CircularStd-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap");

:root {
  --White: #fff;
  --Dark-Blue: #07707b;
  --Background-Blue: #e7f6f7;
  --CTA: #f5a623;
  --Font-Black: #022023;
  --Neutral-Medium: #867d79;
  --Neutral-Light: #cac6c4;
  --Check-Background: #c2d0d0;
  --Primary-Blue: #0aa0af;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  background: #13a9b8;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.home-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* =========================
   HERO BASE
========================= */

.hero-wrapper {
  flex: 1 1 auto;
  min-height: 100dvh;
  background:
    linear-gradient(rgba(7, 112, 123, 0.08), rgba(7, 112, 123, 0.08)),
    url("../img/ilustracion_final.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-wrapper-all {
  flex: 1 1 auto;
  min-height: 100dvh;
  background:
    linear-gradient(rgba(7, 112, 123, 0.08), rgba(7, 112, 123, 0.08)),
    url("../img/background_desktop_02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-container-encuentra {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =========================
   HOME NUEVA
========================= */

.home-hero {
  padding-bottom: 120px;
}

.home-landing {
  min-height: calc(100dvh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-copy {
  flex: 0 1 390px;
  display: flex;
  align-items: center;
}

.home-main-title {
  margin: 0 0 10px;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.08px;
  text-align: left;
}

.home-info-box {
  width: 100%;
  max-width: 855px;
  margin: 0 auto;
  display: flex;
  min-height: 300px;
  padding: 70px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  border-radius: 0 0 162px 0;
  border: 2px solid var(--White);
  background: #0aa0af;
  backdrop-filter: blur(1px);
  text-align: left;
}

.home-info-text {
  margin: 0;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 140%;
}

.home-start-btn {
  display: inline-flex;
  min-width: 95px;
  height: 32px;
  padding: 0 18px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: 0.2s ease;
  cursor: pointer;
}

.home-start-btn:hover,
.home-start-btn:focus,
.home-start-btn:active {
  background: #e09b25;
  border-color: #e09b25;
  color: var(--White);
}

/* =========================
   MODAL FORMULARIO
========================= */

.registro-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.registro-modal.is-open {
  display: flex;
}

.registro-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 32, 35, 0.55);
}

.registro-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.modal-form-card {
  position: relative;
}

.registro-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50px;
  background: var(--CTA);
  color: #fff;
  font-size: 20px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  z-index: 5;
}

.modal-form-card {
  max-width: none;
  min-height: auto;
  margin-right: 0;
  padding: 56px 20px 24px;
}

/* =========================
   FORMULARIO
========================= */

.form-card {
  display: flex;
  width: 100%;
  max-width: 640px;
  min-height: 448px;
  padding: 45px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  border-radius: 8px;
  border: 1px solid var(--Dark-Blue);
  background: var(--Background-Blue);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.form-card form {
  width: 100%;
}

.custom-input {
  display: flex;
  min-width: 240px;
  width: 100%;
  padding: 12px 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Neutral-Light);
  background: #fff;
  color: var(--Neutral-Medium);
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  box-shadow: none !important;
}

.custom-input::placeholder {
  color: var(--Neutral-Medium);
  opacity: 1;
}

.custom-input:focus {
  border-color: var(--Dark-Blue);
  box-shadow: 0 0 0 0.15rem rgba(7, 112, 123, 0.12) !important;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.custom-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 0;
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-left: 0 !important;
  border-radius: 4px;
  border: 0;
  background-color: var(--Check-Background);
  box-shadow: none !important;
  cursor: pointer;
  flex: 0 0 16px;
}

.custom-checkbox:focus {
  box-shadow: none !important;
}

.custom-checkbox:checked {
  background-color: var(--Check-Background);
  border-color: var(--Check-Background);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9' viewBox='0 0 13 9' fill='none'%3E%3Cpath d='M11.4667 0.799988L4.13332 8.13332L0.799988 4.79999' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10.667px 7.333px;
}

.custom-check-label {
  color: var(--Font-Black);
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.custom-check-label a {
  color: var(--Font-Black);
  font-family: "Circular", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
}

.captcha-box {
  margin-bottom: 16px;
}

.submit-btn {
  display: flex;
  width: 25%;
  height: 50px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 50px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: #022023;
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 0.2s ease;
  margin: auto;
}

.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
  background: #e09b25;
  border-color: #e09b25;
}

#msg {
  text-align: left;
}

.invalid-feedback {
  font-size: 13px;
}

/* =========================
   FOOTER
========================= */

.footer-band {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: -120px;
  background: transparent;
}

.footer-inner {
  display: flex;
  width: 100%;
  min-height: 120px;
  padding: 20px 0 20px 135px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: 0 200px 0 0;
  background: var(--Background-Blue);
  position: relative;
}

.footer-logo {
  width: 217px;
  max-width: 100%;
  height: auto;
}

/* =========================
   ESTADOS INVALID
========================= */

.form-control.is-invalid {
  border-color: #dc3545 !important;
}

.form-check-input.is-invalid {
  outline: 1px solid #dc3545;
}

/* =========================
   JUEGO
========================= */

.game-page .hero-wrapper {
  min-height: 100dvh;
}

.game-page .hero-wrapper-all {
  min-height: 100dvh;
}

.game-layout {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-title {
  color: var(--White);
  text-align: center;
  font-family: "Circular", sans-serif;
  font-size: 54px;
  font-style: normal;
  line-height: 120%;
  letter-spacing: -1.28px;
}
.game-description {
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.game-description-normal {
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.game-grid {
  width: 100%;
  max-width: 910px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 0 auto;
}

.game-card {
  display: flex;
  height: 180px;
  min-height: 150px;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
  gap: 21px;
  align-self: stretch;
  border-radius: 0 0 75px 0;
  border: 1px solid var(--White);
  background: var(--Primary-Blue);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  padding-bottom: 10px;
}

.game-card:hover {
  transform: translateY(-2px);
}

.game-card.selected,
.game-card.opcion.selected {
  border-color: #04707b;
  background-color: #04707b;
  box-shadow: 0 0 0 2px rgba(4, 160, 175, 0.4);
}

.game-card-image {
  height: 100%;
  background: #cfd9da;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;

  background: transparent;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card-text {
  flex: 1 1 auto;
  padding: 20px 28px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-text span {
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  max-width: 210px;
}

.game-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.game-submit-btn {
  display: inline-flex;
  min-width: 95px;
  height: 32px;
  padding: 0 18px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: 0.2s ease;
  cursor: pointer;
}

.game-submit-btn:hover,
.game-submit-btn:focus,
.game-submit-btn:active {
  background: #e09b25;
  border-color: #e09b25;
  color: var(--White);
}

/* Loader */
#loaderOverlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 32, 35, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.35);
  border-top: 6px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* =========================
   GRACIAS
========================= */

.thanks-page .hero-wrapper {
  min-height: calc(100dvh - 120px);
}
.thanks-page .hero-wrapper-all {
  min-height: calc(100dvh - 120px);
}

.thanks-hero {
  background: url("../img/img_desktop.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.thanks-layout {
  width: 100%;
  min-height: calc(100dvh - 160px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
}

.thanks-box {
  display: flex;
  width: 550px;
  max-width: 100%;
  height: 340px;
  padding: 0 0 40px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  border-radius: 0 0 0 162px;
  border: 3px solid var(--White);
  margin-bottom: 100px;
}

.thanks-title {
  margin: 0;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 54px;
  font-style: normal;
  line-height: 120%;
}

.thanks-subtitle {
  margin: 0;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}
.thanks-subtitle-mini {
  margin: 0;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}
.thanks-subtitle-mini a {
  text-decoration: underline;
  color: #fff;
}
.thanks-mobile {
  display: none;
}

.footer-logo--mobile {
  display: none;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399.98px) {
  .hero-container {
    max-width: 1320px;
    padding: 0 40px;
  }
  .hero-container-encuentra {
    max-width: 1320px;
    padding: 0 40px;
  }
  .home-main-title {
    font-size: 48px;
  }

  .home-info-box {
    flex-basis: 700px;
  }

  .footer-inner {
    padding-left: 72px;
  }

  .game-title {
    font-size: 48px;
  }

  .thanks-box {
    width: 640px;
    height: 320px;
    padding: 0 0 36px 64px;
  }

  .thanks-title {
    font-size: 48px;
  }

  .thanks-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 1199.98px) {
  .hero-container {
    max-width: 1140px;
    padding: 0 32px;
  }
  .hero-container-encuentra {
    max-width: 1140px;
    padding: 0 32px;
  }

  .home-landing {
    gap: 40px;
  }

  .home-main-title {
    font-size: 42px;
  }

  .home-info-box {
    min-height: 200px;
  }

  .game-layout {
    max-width: 980px;
  }

  .game-title {
    font-size: 42px;
  }
  .thanks-title {
    font-size: 42px;
  }

  .game-grid {
    max-width: 860px;
  }

  .game-card {
    height: 170px;
  }
}

@media (max-width: 991.98px) {
  .hero-wrapper {
    min-height: auto;
    padding: 32px 0;
  }
  .hero-wrapper-all {
    min-height: auto;
    padding: 32px 0;
  }

  .hero-container {
    padding: 0 24px;
  }

  .hero-container-encuentra {
    padding: 0 24px;
  }

  .home-landing {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .home-copy,
  .home-info-box {
    width: 100%;
    max-width: 100%;
  }

  .home-main-title {
    font-size: 40px;
  }

  .home-info-box {
    min-height: auto;
  }

  .footer-band {
    margin-top: -96px;
  }

  .footer-inner {
    padding: 20px 24px;
    border-radius: 0 90px 0 0;
  }

  .registro-modal__dialog {
    width: min(100%, 640px);
  }

  .game-layout {
    padding: 24px 0 30px;
  }

  .game-title {
    font-size: 40px;
    margin-bottom: 28px;
  }

  .game-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .game-card {
    height: 170px;
  }

  .game-actions {
    margin-top: 24px;
  }

  .thanks-layout {
    min-height: auto;
    padding: 32px 0;
  }

  .thanks-box {
    width: 100%;
    height: auto;
    min-height: 260px;
    padding: 32px 24px 32px 32px;
    gap: 16px;
    border-radius: 0 0 0 100px;
  }

  .thanks-title {
    font-size: 40px;
  }

  .thanks-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-wrapper {
    min-height: auto;
    padding: 20px 0 0;
    align-items: flex-start;

    background:
      linear-gradient(rgba(7, 112, 123, 0.08), rgba(7, 112, 123, 0.08)),
      url("../img/ilustracion_final.webp");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .game-description {
    color: var(--White);
    font-family: "Circular", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .game-description-normal {
    color: var(--White);
    font-family: "Circular", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .hero-wrapper-all {
    min-height: auto;
    padding: 20px 0 0;
    align-items: flex-start;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-container-encuentra {
    padding: 0 16px;
  }

  .home-landing {
    min-height: calc(100dvh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .home-main-title {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.4px;
    text-align: left;
  }

  .home-info-box {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 24px 20px 28px;
    border-width: 2px;
    border-radius: 0 0 90px 0;
    gap: 10px;
    max-height: none;
    margin: 0 auto;
  }

  .home-info-text {
    font-size: 13px;
    line-height: 140%;
  }

  .home-start-btn {
    min-width: 120px;
    height: 38px;
    padding: 0 22px;
    font-size: 13px;
    margin-top: 6px;
  }

  .registro-modal {
    padding: 16px 12px;
  }

  .registro-modal__dialog {
    width: 100%;
  }

  .registro-modal__close {
    top: 12px;
    right: 12px;
  }

  .modal-form-card {
    padding: 56px 16px 20px;
  }

  .form-card {
    padding: 50px 16px;
    border-radius: 8px;
    min-height: auto;
  }

  .g-recaptcha {
    transform: scale(0.92);
    transform-origin: left top;
  }

  .footer-band {
    margin-top: 0;
    z-index: 1;
  }

  .footer-inner {
    min-height: 112px;
    padding: 24px 16px 28px;
    border-radius: 32px 32px 0 0;
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    width: 110px;
  }

  .game-title {
    font-size: 40px;
    letter-spacing: -0.6px;
    text-align: left;
  }

  .game-grid {
    gap: 14px;
  }

  .game-card {
    height: auto;
    min-height: 140px;
    gap: 30px;
    border-radius: 0 0 75px 0;
  }

  .game-card-text {
    padding: 16px 16px 16px 0;
  }

  .game-card-text span {
    font-size: 14px;
    max-width: none;
  }

  .game-submit-btn {
    min-width: 110px;
  }

  .home-copy {
    flex: 0;
    margin-top: 0px;
  }
  .home-info-box {
    flex-basis: 0px;
  }

  .custom-input {
    font-size: 13px;
  }

  .custom-check-label {
    font-size: 13px;
  }

  .custom-check-label a {
    font-size: 13px;
  }

  /* ===== GRACIAS MOBILE ===== */

  .thanks-page {
    background: #ffffff;
  }

  .thanks-page .hero-wrapper {
    background: #ffffff;
    min-height: auto;
    padding: 0;
    align-items: flex-start;
  }

  .thanks-page .hero-wrapper-all {
    background: #ffffff;
    min-height: auto;
    padding: 0;
    align-items: flex-start;
  }

  .thanks-page .hero-container {
    padding: 0 16px;
    max-width: 100%;
  }

  .thanks-page .thanks-layout {
    min-height: auto;
    padding: 24px 0 0;
    display: block;
  }

  .thanks-box--desktop {
    display: none;
  }

  .thanks-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .thanks-mobile__image-wrap {
    width: 100%;
    padding: 0 16px;
  }

  .thanks-mobile__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 0 48px 0;
    object-fit: cover;
    margin-bottom: 0;
  }

  .thanks-mobile__card {
    display: flex;
    width: 270px;
    max-width: calc(100% - 16px);
    min-height: 220px;
    padding: 24px 20px 24px 55px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-radius: 0 0 0 120px;
    background: var(--Primary-Blue);
    position: relative;
    z-index: 2;
    margin-top: -60px;
    margin-right: 5px;
    margin-bottom: 24px;
  }

  .thanks-mobile__title {
    margin: 0;
    color: var(--White);
    font-family: "Circular", sans-serif;
    font-size: 28px;
    font-style: normal;
    line-height: 120%;
  }

  .thanks-mobile__subtitle {
    margin: 0;
    color: var(--White);
    font-family: "Circular", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }

  .thanks-footer {
    margin-top: 0;
    z-index: 1;
  }

  .thanks-footer-inner {
    min-height: 143px;
    padding: 24px 16px 28px;
    border-radius: 32px 32px 0 0;
    background: var(--Primary-Blue);
    align-items: center;
    justify-content: center;
    margin-top: 60px;
  }

  .thanks-footer .footer-logo--desktop {
    display: none;
  }

  .thanks-footer .footer-logo--mobile {
    display: block;
    width: 170px;
    max-width: 100%;
    height: auto;
  }

  .thanks-subtitle {
    font-size: 13px;
    font-weight: 300;
  }

  .thanks-subtitle-mini {
    font-size: 12px;
  }
}

/* =========================
   ENCUENTRA
========================= */

.encuentra-page .hero-wrapper {
  min-height: 100dvh;
}
.encuentra-page .hero-wrapper-all {
  min-height: 100dvh;
}
.encuentra-hero {
  background:
    linear-gradient(rgba(7, 112, 123, 0.08), rgba(7, 112, 123, 0.08)),
    url("../img/background_desktop_02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.encuentra-layout {
  width: 100%;
  min-height: calc(100dvh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 0 24px;
}

.encuentra-title {
  margin: 0;
  color: var(--White);
  text-align: center;
  font-family: "Circular", sans-serif;
  font-size: 54px;
  font-style: normal;

  line-height: 120%;
}

.encuentra-image-box {
  position: relative;
  width: 100%;
}

.encuentra-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-bottom: 10px;
}

.encuentra-desktop-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.encuentra-btn {
  display: inline-flex;
  min-width: 95px;
  height: 32px;
  padding: 0 18px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: 0.2s ease;
  cursor: pointer;
  margin-bottom: 100px;
}

.encuentra-btn:hover,
.encuentra-btn:focus,
.encuentra-btn:active {
  background: #e09b25;
  border-color: #e09b25;
  color: var(--White);
}

/* =========================
   ENCUENTRA RESPONSIVE
========================= */

@media (max-width: 1399.98px) {
  .encuentra-title {
    font-size: 48px;
  }

  .encuentra-image-box {
    max-width: 980px;
  }
}

@media (max-width: 1199.98px) {
  .encuentra-title {
    font-size: 42px;
  }

  .encuentra-layout {
    padding: 24px 0 24px;
  }
}

@media (max-width: 991.98px) {
  .encuentra-layout {
    min-height: auto;
    padding: 24px 0 32px;
    gap: 16px;
  }

  .encuentra-title {
    font-size: 32px;
  }

  .encuentra-image-box {
    max-width: 100%;
  }

  .encuentra-btn {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .encuentra-page .hero-wrapper {
    min-height: auto;
    padding: 20px 0 0;
    align-items: flex-start;
  }
  .encuentra-page .hero-wrapper-all {
    min-height: auto;
    padding: 20px 0 0;
    align-items: flex-start;
  }

  .encuentra-page .hero-container-encuentra {
    padding: 0 16px;
  }

  .encuentra-layout {
    min-height: auto;
    padding: 0 0 24px;
    gap: 14px;
  }

  .encuentra-title {
    font-size: 24px;
    letter-spacing: -0.4px;
  }

  .encuentra-image-box {
    width: 100%;
  }

  .encuentra-btn {
    right: 8px;
    bottom: 8px;
    min-width: 84px;
    height: 26px;
    padding: 0 12px;
    font-size: 10px;
  }
}

/* =========================
   ENCUENTRA - MOBILE CARD / MODAL
========================= */

.encuentra-mobile-card,
.encuentra-modal {
  display: none;
}

@media (max-width: 575.98px), (max-height: 575.98px) {
  .encuentra-page .hero-wrapper {
    min-height: auto;
    padding: 20px 0 0;
    align-items: flex-start;
  }
  .encuentra-page .hero-wrapper-all {
    min-height: auto;
    padding: 20px 0 0;
    align-items: flex-start;
  }

  .encuentra-page .hero-container-encuentra {
    padding: 0 16px;
  }

  .encuentra-layout {
    min-height: auto;
    padding: 0 0 24px;
    align-items: flex-start;
    gap: 20px;
  }

  .encuentra-title {
    margin: 0;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.8px;
    text-align: left;
    max-width: 260px;
    margin-top: 50px;
  }

  .encuentra-image-box {
    width: 100%;
  }

  .encuentra-desktop-box {
    display: none;
  }

  .encuentra-mobile-card {
    display: flex;
    width: 100%;
    padding: 40px 16px 42px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 0 0 75px 0;
    border: 1px solid var(--White);
    background: var(--Primary-Blue);
  }

  .encuentra-mobile-preview-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 48px 0;
    background: #fff;
  }

  .encuentra-mobile-preview {
    display: block;
    width: 100%;
    height: auto;
  }

  .encuentra-mobile-text {
    margin: 0;
    color: var(--White);
    text-align: center;
    font-family: "Circular", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }

  .encuentra-mobile-btn {
    display: inline-flex;
    min-width: 112px;
    height: 32px;
    padding: 0 18px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid var(--CTA);
    background: var(--CTA);
    color: var(--White);
    font-family: "Circular", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
  }

  .encuentra-mobile-btn:hover,
  .encuentra-mobile-btn:focus,
  .encuentra-mobile-btn:active {
    background: #e09b25;
    border-color: #e09b25;
    color: var(--White);
  }

  .encuentra-mobile-btn svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  /* MODAL MOBILE */
  .encuentra-modal.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1300;
  }

  .encuentra-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 32, 35, 0.18);
  }

  .encuentra-modal__dialog {
    position: absolute;
    inset: 10px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  .encuentra-modal__scroller {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .encuentra-modal__image {
    display: block;
    width: 100%;
    height: 100%;
  }

  .encuentra-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: var(--CTA);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .encuentra-modal__zoom-indicator {
    position: absolute;
    right: 12px;
    bottom: 58px;
    z-index: 3;
    width: 42px;
    height: 58px;
    border: 0;
    border-radius: 50px;
    background: #07707b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .encuentra-modal__zoom-indicator svg {
    width: 14px;
    height: 14px;
    display: block;
  }

  .encuentra-modal__cta {
    position: absolute;
    left: 12px;
    bottom: 42px;
    z-index: 3;
    display: inline-flex;
    width: 32px;
    height: 120px;
    padding: 12px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #fabb56;
    background: #fabb56;
    color: #022023;
    font-family: "Circular", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .encuentra-modal__cta:hover,
  .encuentra-modal__cta:focus,
  .encuentra-modal__cta:active {
    background: #e09b25;
    border-color: #e09b25;
  }
  .hero-wrapper-all {
    flex: 1 1 auto;
    min-height: 100dvh;
    background:
      linear-gradient(rgba(7, 112, 123, 0.08), rgba(7, 112, 123, 0.08)),
      url(../img/background_mb_02.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
}

.incorrect-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.incorrect-popup-overlay.active {
  display: flex;
}

.incorrect-popup-box {
  width: 100%;
  max-width: 460px;
  background: #e7f6f7;
  color: #ffffff;
  border-radius: 0 0 75px 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  padding: 42px 12px 42px;
  position: relative;
  font-family: Arial, sans-serif;
}

.incorrect-popup-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.incorrect-popup-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.incorrect-popup-icon {
  color: #ff2d2d;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.incorrect-popup-text {
  font-size: 20px;
  font-weight: 500;
  color: #022023;
  text-align: center;
  margin: auto;
}

.incorrect-popup-actions {
  display: flex;
  justify-content: flex-end;
}

.incorrect-popup-btn {
  background: #fabb56;
  color: #022023;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
  margin: auto;
}

.incorrect-popup-btn:hover {
  background: #e09b25;
}

.incorrect-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  background: #fabb56;
  color: #022023;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50px;
}

@media (max-width: 576px) {
  .incorrect-popup-box {
    max-width: 92%;
    padding: 40px 18px 40px;
  }

  .incorrect-popup-text {
    font-size: 18px;
  }

  .incorrect-popup-btn {
    width: 100%;
  }

  .incorrect-popup-actions {
    justify-content: stretch;
  }
}

/*Parte clicable para ampliar ilustración*/
/* =========================
   HOME HERO - IMÁGENES CLICABLES
========================= */

.hero-container--interactive {
  position: relative;
}

/* Capa interactiva */
.hero-art-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Botones clicables */
.hero-art-trigger {
  position: absolute;
  pointer-events: auto;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* =========================
   ZONA CLICABLE DESKTOP (SIN IMAGEN)
========================= */

.hero-art-trigger--letters {
  left: 60px;
  bottom: -48px;
  width: min(100%, 1120px);
  height: 220px;
  background: transparent;
}

/* =========================
   ICONO DESKTOP (GRANDE Y PEGADO A DERECHA)
========================= */

.hero-art-trigger--zoom {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  z-index: 5; /* por encima del layout */
}

.hero-art-trigger--zoom img {
  width: 100%;
  height: auto;
}

.hero-art-trigger--zoom:hover {
  transform: translateY(-50%) scale(1.05);
}

/* =========================
   MOBILE (OCULTO POR DEFECTO)
========================= */

.hero-art-trigger--zoom-mobile {
  display: none;
}

/* =========================
   AJUSTES RESPONSIVE
========================= */

@media (max-width: 1399.98px) {
  .hero-art-trigger--letters {
    left: 42px;
    width: calc(100% - 84px);
  }

  .hero-art-trigger--zoom {
    width: 180px;
  }
}

@media (max-width: 1199.98px) {
  .hero-art-trigger--letters {
    left: 34px;
    bottom: -36px;
    width: calc(100% - 68px);
  }

  .hero-art-trigger--zoom {
    width: 160px;
  }
}

@media (max-width: 991.98px) {
  .hero-art-trigger--letters {
    left: 24px;
    bottom: -18px;
    width: calc(100% - 48px);
  }

  .hero-art-trigger--zoom {
    width: 130px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {
  /* Ocultar TODO lo de desktop */
  .hero-art-trigger--letters,
  .hero-art-trigger--zoom {
    display: none;
  }

  /* Mostrar solo mobile */
  .hero-art-trigger--zoom-mobile {
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: -215px;
    width: 100%;
    z-index: 10;
  }

  .hero-art-trigger--zoom-mobile img {
    width: 100%;
    height: auto;
    display: block;
  }

  .footer-band {
    margin-top: -36px;
    z-index: 3;
    background: transparent;
  }
  .game-actions {
    margin-bottom: 60px;
  }
}

/* =========================
   MODAL ILUSTRACIÓN (CENTRADO PERFECTO)
========================= */

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
}

.image-modal.is-open {
  display: block;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 32, 35, 0.72);
}

/* CENTRADO REAL (SIN FONDO BLANCO NI BORDES) */
.image-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
  width: min(92vw, 1100px);
  max-height: 90vh;

  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.image-modal__content {
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: transparent !important;
}

.image-modal__content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.image-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--CTA);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================
   MODAL MOBILE
========================= */

@media (max-width: 575.98px) {
  .image-modal__dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);

    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .image-modal__content {
    max-height: calc(100vh - 20px);
    background: transparent !important;
  }

  .image-modal__content img {
    border-radius: 0;
  }
}

.encuentra-image-zoom-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.encuentra-image-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.encuentra-image-zoomable {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.25s ease;
  will-change: transform;
}

.encuentra-zoom-controls {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.encuentra-zoom-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--CTA);
  color: var(--White);
  font-family: "Circular", sans-serif;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

@media (max-width: 575.98px) {
  .encuentra-zoom-controls {
    display: none;
  }
}

/*NUEVO*/
.encuentra-image-zoom-wrap {
  position: relative;
  width: 100%;
}

.encuentra-image-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: default;
  user-select: none;
}

.encuentra-image-frame.is-draggable {
  cursor: grab;
}

.encuentra-image-frame.is-dragging {
  cursor: grabbing;
}

.encuentra-image-zoomable {
  display: block;
  width: 100%;
  height: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition: transform 0.22s ease;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.encuentra-image-frame.is-dragging .encuentra-image-zoomable {
  transition: none;
}

.encuentra-zoom-controls {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.encuentra-zoom-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.encuentra-zoom-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.encuentra-zoom-btn:hover {
  transform: scale(1.04);
}

.encuentra-zoom-btn:active {
  transform: scale(0.98);
}

@media (max-width: 575.98px) {
  .encuentra-zoom-controls {
    display: none;
  }
}

/*Altura images*/
@media (max-width: 575.98px) {
  .game-card {
    display: flex;
    align-items: stretch;
    min-height: 160px;
    height: 160px;
  }

  .game-card-image {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 100%;
    flex: 0 0 120px;
    overflow: hidden;
    border-radius: 0 0 48px 0;
  }

  .game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .game-card-text {
    flex: 1 1 auto;
    padding: 16px 16px 16px 0;
  }
}

.br-desktop {
  display: inline;
}

@media (max-width: 575.98px) {
  .br-desktop {
    display: none;
  }
}

/* =========================
   HOME INDEX REDISEÑO FIGMA
========================= */

/* =========================
   HOME INDEX REDISEÑO FIGMA
========================= */

.home-index-body {
  background: var(--Background-Blue);
}

.home-page--figma {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--Background-Blue);
}

.home-page--figma .footer-band {
  display: none;
}

.home-header {
  position: relative;
  z-index: 5;
  display: flex;
  flex: 0 0 88px;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px 10px 40px;
  background: var(--Background-Blue);
}

.home-header__brand {
  display: inline-flex;
  align-items: center;
}

.home-header__brand svg {
  display: block;
  width: 153px;
  height: auto;
}

.home-header__privacy {
  color: var(--Primary-Blue);
  font-family: "Circular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
}

.home-stage {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  background: var(--Background-Blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 40px;
}

.home-stage__art {
  position: absolute;
  inset: 0;
  background: url("../img/ilustracion_final.webp") center center / cover
    no-repeat;
}

/* Capa centrada con la forma transparente */
.home-stage__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 621px;
  min-height: 555px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 27px 30px;
  background: url("../img/info_01_desktop.webp") center center / contain
    no-repeat;
}

.home-stage__content {
  width: 100%;
  max-width: 566px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.home-page--figma .home-main-title {
  margin: 0;
  color: var(--Font-Black, #022023);
  font-family: "Circular", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.96px;
}

.home-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.home-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-step__icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-step__icon img,
.steps-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.home-step__text {
  margin: 0;
  color: var(--Font-Black, #022023);
  font-family: "Circular", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.home-step__text strong {
  font-weight: 700;
}

.home-prize {
  margin: 0;
  color: var(--Font-Black, #022023);
  font-family: "Circular", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.home-page--figma .home-start-btn {
  display: inline-flex;
  min-height: 56px;
  padding: 14px 28px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: var(--Font-Black, #022023);
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  box-shadow: none;
}

.home-page--figma .home-start-btn:hover,
.home-page--figma .home-start-btn:focus,
.home-page--figma .home-start-btn:active {
  background: #f5a623;
  border-color: #f5a623;
  color: var(--Font-Black, #022023);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399.98px) {
  .home-header {
    padding: 10px 48px 10px 32px;
  }

  .home-stage__overlay {
    max-width: 700px;
    min-height: 490px;
    padding: 52px 48px 48px;
  }

  .home-stage__content {
    max-width: 450px;
  }

  .home-page--figma .home-main-title {
    font-size: 44px;
  }

  .home-step__text,
  .home-prize {
    font-size: 28px;
  }
}

@media (max-width: 1199.98px) {
  .home-header {
    padding: 10px 32px 10px 24px;
  }

  .home-stage {
    padding: 28px 20px 32px;
  }

  .home-stage__overlay {
    max-width: 640px;
    min-height: 450px;
    padding: 46px 40px 42px;
  }

  .home-stage__content {
    max-width: 410px;
    gap: 24px;
  }

  .home-page--figma .home-main-title {
    font-size: 38px;
  }

  .home-step__text,
  .home-prize {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .home-header {
    flex: 0 0 80px;
    height: 80px;
    padding: 10px 24px 10px 16px;
  }

  .home-header__brand svg {
    width: 128px;
  }

  .home-stage {
    padding: 24px 16px 28px;
  }

  .home-stage__overlay {
    max-width: 580px;
    min-height: 410px;
    padding: 40px 34px;
  }

  .home-stage__content {
    max-width: 380px;
    gap: 22px;
  }

  .home-page--figma .home-main-title {
    font-size: 34px;
  }

  .home-step {
    gap: 12px;
  }

  .home-step__icon,
  .home-step__icon img,
  .steps-img {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .home-step__text,
  .home-prize {
    font-size: 21px;
  }

  .home-page--figma .home-start-btn {
    min-height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .home-page--figma {
    min-height: 100vh;
    height: 100vh;
  }

  .home-header {
    flex: 0 0 72px;
    height: 72px;
    padding: 12px 16px;
  }

  .home-header__brand svg {
    width: 110px;
  }

  .home-header__privacy {
    font-size: 12px;
  }

  .home-stage {
    padding: 16px 12px 20px;
    align-items: center;
    justify-content: center;
  }

  .home-stage__art {
    background-position: 68% center;
  }

  .home-stage__overlay {
    width: 100%;
    max-width: 420px;
    min-height: 420px;
    padding: 0px;
    background-size: 100% 100%;
  }

  .home-stage__content {
    max-width: 290px;
    gap: 20px;
  }

  .home-page--figma .home-main-title {
    font-size: 35px;
    line-height: 120%;
    letter-spacing: -0.56px;
  }

  .home-steps {
    gap: 12px;
  }

  .home-step {
    gap: 10px;
    align-items: flex-start;
  }

  .home-step__icon,
  .home-step__icon img,
  .steps-img {
    width: 28px;
    min-width: 28px;
    height: 28px;
  }

  .home-step__text,
  .home-prize {
    font-size: 17px;
    line-height: 120%;
  }

  .home-page--figma .home-start-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-height: 820px) and (min-width: 576px) {
  .home-stage__overlay {
    max-width: 555px;
    min-height: 460px;
    padding: 42px 40px;
  }

  .home-stage__content {
    gap: 22px;
  }

  .home-page--figma .home-main-title {
    font-size: 42px;
  }

  .home-step__text,
  .home-prize {
    font-size: 24px;
  }

  .home-page--figma .home-start-btn {
    min-height: 48px;
    font-size: 18px;
  }
}

@media (max-height: 700px) and (min-width: 576px) {
  .home-header {
    flex: 0 0 72px;
    height: 72px;
    padding: 8px 48px 8px 32px;
  }

  .home-header__brand svg {
    width: 132px;
  }

  .home-header__privacy {
    font-size: 14px;
  }

  .home-stage__overlay {
    max-width: 620px;
    min-height: 390px;
    padding: 34px 34px 30px;
  }

  .home-stage__content {
    max-width: 390px;
    gap: 18px;
  }

  .home-page--figma .home-main-title {
    font-size: 34px;
  }

  .home-step__icon,
  .home-step__icon img,
  .steps-img {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }

  .home-step__text,
  .home-prize {
    font-size: 20px;
  }

  .home-page--figma .home-start-btn {
    min-height: 42px;
    padding: 8px 20px;
    font-size: 16px;
  }
}

/* =========================
   FIX BOTÓN "¡LO TENGO!"
   IGUAL A "¡EMPIEZA YA!"
========================= */

.encuentra-btn,
.encuentra-mobile-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: auto;
  min-height: 56px;
  height: auto;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: var(--Font-Black, #022023);
  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  box-shadow: none;
  transition: 0.2s ease;
  cursor: pointer;
}

.encuentra-btn:hover,
.encuentra-btn:focus,
.encuentra-btn:active,
.encuentra-mobile-btn:hover,
.encuentra-mobile-btn:focus,
.encuentra-mobile-btn:active {
  background: #f5a623;
  border-color: #f5a623;
  color: var(--Font-Black, #022023);
}

/* Ajuste para el icono del botón mobile */
.encuentra-mobile-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* Mobile */
@media (max-width: 575.98px) {
  .encuentra-btn,
  .encuentra-mobile-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Pantallas bajas */
@media (max-height: 820px) and (min-width: 576px) {
  .encuentra-btn,
  .encuentra-mobile-btn {
    min-height: 48px;
    font-size: 18px;
  }
}

@media (max-height: 700px) and (min-width: 576px) {
  .encuentra-btn,
  .encuentra-mobile-btn {
    min-height: 42px;
    padding: 8px 20px;
    font-size: 16px;
  }
}

/* =========================
   FIX BOTÓN ENVIAR = MISMO ESTILO CTA
========================= */

.game-submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  min-width: auto;
  min-height: 56px;
  height: auto;
  padding: 14px 28px;

  border-radius: 50px;
  border: 1px solid #fabb56;
  background: #fabb56;
  color: var(--Font-Black, #022023);

  font-family: "Circular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  box-shadow: none;
  transition: 0.2s ease;
  cursor: pointer;
}

/* Hover igual */
.game-submit-btn:hover,
.game-submit-btn:focus,
.game-submit-btn:active {
  background: #f5a623;
  border-color: #f5a623;
  color: var(--Font-Black, #022023);
}

/* Estado disabled coherente */
.game-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================
   RESPONSIVE (igual que otros botones)
========================= */

@media (max-width: 575.98px) {
  .game-submit-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-height: 820px) and (min-width: 576px) {
  .game-submit-btn {
    min-height: 48px;
    font-size: 18px;
  }
}

@media (max-height: 700px) and (min-width: 576px) {
  .game-submit-btn {
    min-height: 42px;
    padding: 8px 20px;
    font-size: 16px;
  }
}

/* =========================
   GRACIAS NUEVO
========================= */

.thanks-page .hero-wrapper {
  min-height: calc(100dvh - 88px);
}

.thanks-hero {
  background: url("../img/img_desktop.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.thanks-container {
  max-width: 1280px;
}

.thanks-layout {
  width: 100%;
  min-height: calc(100dvh - 88px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 56px;
}

.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 530px;
  max-width: 100%;
}

.thanks-content--desktop {
  display: flex;
}

.thanks-content--mobile {
  display: none;
}

/* =========================
   DESKTOP / TABLET
========================= */

.thanks-card {
  display: flex;
  width: 100%;
  min-height: 443px;
  padding: 27px 30px 26px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  border-radius: 0 0 75px 0;
  background: var(--Primary-Blue, #0aa0af);
}

.thanks-card__title {
  margin: 0;
  color: var(--White, #fff);
  text-align: left;
  font-family: "Circular", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.28px;
}

.thanks-card__text {
  margin: 0;
  color: var(--White, #fff);
  font-family: "Circular", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.thanks-card__text--spaced {
  margin-top: 80px;
}

.thanks-card__product {
  margin: 0;
  color: var(--White, #fff);
  font-family: "Circular", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.thanks-card__inline-light {
  font-weight: 400;
}

.thanks-pill {
  display: flex;
  width: 100%;
  min-height: 50px;
  padding: 20px 24px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border-radius: 0 50px 50px 0;
  border: 1px solid #fabb56;
  background: #fabb56;
  margin-top: 14px;
}

.thanks-pill__text {
  margin: 0;
  color: var(--Font-Black, #022023);
  font-family: "Circular", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.thanks-pill__text strong {
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.48px;
}

.thanks-pill__text a {
  color: var(--Font-Black, #022023);
  text-decoration: underline;
}

/* =========================
   TABLET / SMALL DESKTOP
========================= */

@media (max-width: 1199.98px) {
  .thanks-layout {
    padding-left: 24px;
  }

  .thanks-content {
    width: 470px;
  }

  .thanks-card {
    min-height: 390px;
    padding: 28px 26px 26px 24px;
  }

  .thanks-card__title {
    font-size: 54px;
  }

  .thanks-card__text,
  .thanks-card__product {
    font-size: 32px;
  }

  .thanks-card__text--spaced {
    margin-top: 50px;
  }

  .thanks-pill {
    padding: 16px 20px;
  }

  .thanks-pill__text {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .thanks-page .hero-wrapper {
    min-height: calc(100dvh - 80px);
  }

  .thanks-layout {
    min-height: calc(100dvh - 80px);
    padding-left: 0;
    justify-content: flex-start;
  }

  .thanks-content {
    width: 420px;
  }

  .thanks-card {
    min-height: 350px;
  }

  .thanks-card__title {
    font-size: 46px;
  }

  .thanks-card__text,
  .thanks-card__product {
    font-size: 28px;
  }

  .thanks-card__text--spaced {
    margin-top: 30px;
  }

  .thanks-pill__text {
    font-size: 18px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {
  .incorrect-popup-btn {
    width: 39% !important;
  }
  .thanks-page {
    background: #ffffff;
  }

  .thanks-page .hero-wrapper {
    min-height: calc(90dvh - 72px);
    padding: 0;
    align-items: flex-start;
  }

  .thanks-hero {
    background: url("../img/img_mobile-nueva.webp") !important;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
  }

  .thanks-page .hero-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .thanks-layout {
    min-height: calc(100dvh - 72px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 24px;
  }

  .thanks-content--desktop {
    display: none;
  }

  .thanks-content--mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: calc(100% - 24px);
    margin-left: 0;
    margin-right: 0;
    margin-top: 250px;
  }

  .thanks-mobile-card {
    display: flex;
    width: 100%;
    min-height: 286px;
    padding: 24px 22px 24px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    border-radius: 0 0 75px 0;
    background: var(--Primary-Blue, #0aa0af);
  }

  .thanks-mobile-card__title {
    margin: 0;
    color: var(--White, #fff);
    font-family: "Circular", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.64px;
  }

  .thanks-mobile-card__text {
    margin: 0;
    color: var(--White, #fff);
    font-family: "Circular", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }

  .thanks-mobile-card__text--spaced {
    margin-top: 18px;
  }

  .thanks-mobile-card__product {
    margin: 0;
    color: var(--White, #fff);
    font-family: "Circular", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }

  .thanks-mobile-card__inline-light {
    font-weight: 400;
  }

  .thanks-mobile-pill {
    display: flex;
    width: 100%;
    min-height: 50px;
    padding: 16px 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    border-radius: 0 50px 50px 0;
    border: 1px solid #fabb56;
    background: #fabb56;
    margin-top: 10px;
  }

  .thanks-mobile-pill__text {
    margin: 0;
    color: var(--Font-Black, #022023);
    font-family: "Circular", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
  }

  .thanks-mobile-pill__text strong {
    font-weight: 700;
  }

  .thanks-mobile-pill__text a {
    color: var(--Font-Black, #022023);
    text-decoration: underline;
  }
}

.registro-modal__intro {
  width: 100%;
  margin: 0 0 20px;
  color: #022023;
  font-family: "Circular", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

@media (max-width: 575.98px) {
  .registro-modal__intro {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .submit-btn {
    display: flex;
    width: 39%;
    height: 49px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 50px;
    border: 1px solid #fabb56;
    background: #fabb56;
    color: #022023;
    font-family: "Circular", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s ease;
    margin: auto;
  }
}

.home-header__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (orientation: landscape) and (pointer: coarse) {
  .encuentra-modal__image {
    transform: rotate(-90deg);
    transform-origin: center center;

    width: 100vh;
    height: 100vw;
    object-fit: contain;
  }

  .encuentra-modal__scroller {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  /* BOTÓN "¡LO TENGO!" */
  .encuentra-modal__cta {
    left: auto;
    right: 12px;
    bottom: 20px;

    /* 👇 hacerlo horizontal */
    writing-mode: horizontal-tb;
    text-orientation: initial;

    width: auto;
    height: auto;
    padding: 10px 18px;

    border-radius: 50px; /* estilo pill bonito */
  }

  /* ZOOM arriba derecha */
  .encuentra-modal__zoom-indicator {
    right: 12px;
    top: 12px;
    bottom: auto;
  }
}
