html {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Golos Text", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Activation Alert - FIRST */
.activation-alert {
  background: #ff5252;
  color: white;
  padding: 30px 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 82, 82, 0.6);
  }
}

.activation-alert-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
}

.warning-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.activation-alert-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}

.activation-alert-text {
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}

.activation-alert-text strong {
  font-size: 26px;
  text-decoration: underline;
}

/* Phone call alert */
.call-alert {
  background: #fff9c4;
  border-left: 5px solid #ffa000;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.call-alert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.call-alert-title {
  font-size: 24px;
  color: #e65100;
  font-weight: bold;
}

.call-alert-text {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

/* Steps */
.steps-container {
  margin: 30px 0;
}

.step-card {
  background: white;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-title {
  font-size: 22px;
  color: #075e54;
  font-weight: 600;
}

.step-description {
  font-size: 19px;
  color: #555;
  margin-left: 65px;
  line-height: 1.5;
}

.step-completed {
  opacity: 0.7;
}

.step-completed .step-number {
  background: #90ee90;
}

.checkmark-small {
  width: 25px;
  height: 25px;
}

/* Queue number */
.queue-section {
  text-align: center;
  margin: 40px 0 30px 0;
}

.queue-title {
  font-size: 26px;
  color: #075e54;
  margin-bottom: 15px;
}

.queue-number {
  font-size: 72px;
  color: #25d366;
  font-weight: bold;
  line-height: 1;
}

/* Countdown */
.countdown-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-label {
  font-size: 20px;
  color: #666;
  margin-bottom: 15px;
}

.countdown-number {
  font-size: 64px;
  color: #25d366;
  font-weight: bold;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 16px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .activation-alert {
    padding: 25px 20px;
  }
  .activation-alert-title {
    font-size: 26px;
  }
  .activation-alert-text {
    font-size: 20px;
  }
  .activation-alert-text strong {
    font-size: 22px;
  }
  .warning-icon {
    width: 50px;
    height: 50px;
  }
  .call-alert-title {
    font-size: 20px;
  }
  .call-alert-text {
    font-size: 18px;
  }
  .step-title {
    font-size: 19px;
  }
  .step-description {
    font-size: 17px;
  }
  .queue-number {
    font-size: 56px;
  }
  .countdown-number {
    font-size: 48px;
  }
}
.swiper-container {
  width: 100%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 4em;
  margin-top: 2em;
}

.tpl-signal:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0dbd0d;
  -webkit-animation: pulse 3s linear infinite;
  animation: pulse 3s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 5px #1aca1a40;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px #1aca1a40;
  }
}

.tpl-signal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #0dbd0d;
  position: relative;
  margin-top: 2px;
}

@keyframes pulse2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.scroll-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollUp 40s linear infinite;
}
.scroll-list li {
  text-align: center;
  white-space: nowrap;
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.scroll-list {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  z-index: 0;
}

@keyframes rotateText {
  0% {
    transform: translateX(7px) translateY(0);
  }
  12.5% {
    transform: translateX(4px) translateY(4px);
  }
  25% {
    transform: translateX(0) translateY(7px);
  }
  37.5% {
    transform: translateX(-4px) translateY(4px);
  }
  50% {
    transform: translateX(-7px) translateY(0);
  }
  62.5% {
    transform: translateX(-4px) translateY(-4px);
  }
  75% {
    transform: translateX(0) translateY(-7px);
  }
  87.5% {
    transform: translateX(4px) translateY(-4px);
  }
  100% {
    transform: translateX(7px) translateY(0);
  }
}

#rotate {
  animation: rotateText 10s linear infinite;
}

.z-alto {
  z-index: 1010;
}

.logo {
  width: 350px;
}

.pc {
  display: flex;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.cel {
  display: none;
}

@media (max-width: 1024px) {
  .cel {
    display: flex;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

#submit-loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  text-align: center;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

#submit-loader p {
  margin-top: 16px;
}

.submit-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: submit-spin 0.8s linear infinite;
}

@keyframes submit-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.title-class {
  font-size: 20px;
  font-weight: 600;
}

#section2 {
  display: none;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
  width: 100%;
  text-align: center;
  color: #000;
  overflow: hidden;
  font-weight: 500;
  font-size: 1.2em;
  z-index: 1002;
  font-family: "Poppins", sans-serif;
}

.topform {
  background-color: #fff;
  width: 100%;
  text-align: center;
  color: #ffffff;
  box-shadow: 1px 1px 3px 3px #0000001e;
  overflow: hidden;
  font-weight: 500;
  font-size: 1.2em;
  border-radius: 1em;
  z-index: 1002;
}

.forma__title {
  text-align: center;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 30px;
  padding: 0.5em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  z-index: 1002;
}

.form-container {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-align: center;
  z-index: 1002;
  width: 100%;
}

.form-container input {
  width: 100%;
}

.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active {
  background-color: #621132;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-btn-go-to-step,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-btn-go-to-step,
.formwrap-outer .intgrtn-form-signup .intgrtn-form-signup,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-btn-go-to-step,
.formwrap-outer .intgrtn-form-signup .intgrtn-form-optin {
  margin: 0 auto;
  display: block;
  font-size: 17px;
  font-weight: bold;
  position: relative;
  color: #fff;
  border-radius: 6px;
  background: #621132;
  text-transform: uppercase;
  width: 100%;
  padding: 16px 16px;
  cursor: pointer;
  white-space: normal;
  text-align: center;
}

.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-steps-navigation,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-steps-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item {
  display: inline-block;
  background: #ececec;
  color: #fff;
  font-size: 2em;
  line-height: 1.1em;
  border-radius: 3px;
  font-weight: bold;
  height: 7px;
  width: 33%;
  margin-right: 2px;
  text-indent: 100%;
  overflow: hidden;
}

.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item:after,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item:after,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item:after {
  content: "";
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder
  .intgrtn-input,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder2
  .intgrtn-input2,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder
  .intgrtn-input,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder2
  .intgrtn-input2,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder
  .intgrtn-input,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder2
  .intgrtn-input2 {
  padding: 12px;
  font-size: 1rem;
  line-height: 2;
  color: #000000;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}
@media all and (max-width: 768px) {
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup-3-steps
    .intgrtn-input-holder
    .intgrtn-input
    .intgrtn-areas-dropdown,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup-3-steps
    .intgrtn-input-holder2
    .intgrtn-input2
    .intgrtn-areas-dropdown,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup
    .intgrtn-input-holder
    .intgrtn-input
    .intgrtn-areas-dropdown,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup
    .intgrtn-input-holder2
    .intgrtn-input2
    .intgrtn-areas-dropdown,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-optin
    .intgrtn-input-holder
    .intgrtn-input
    .intgrtn-areas-dropdown,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-optin
    .intgrtn-input-holder2
    .intgrtn-input2
    .intgrtn-areas-dropdown {
    width: 270px;
  }
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose {
  margin: 10px 0;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message {
  font-size: 0.8em !important;
  margin-bottom: 10px;
  line-height: 1 !important;
  -webkit-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  text-align: left !important;
  padding-left: 5px;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder2
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched {
  color: #000;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder.intgrtn-input-holder-password,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder2.intgrtn-input-holder-password,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder.intgrtn-input-holder-password,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder2.intgrtn-input-holder-password,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder.intgrtn-input-holder-password,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder2.intgrtn-input-holder-password {
  display: none;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder.intgrtn-input-holder-password
  .intgrtn-btn-generate-password-holder,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-input-holder2.intgrtn-input-holder-password
  .intgrtn-btn-generate-password-holder,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder.intgrtn-input-holder-password
  .intgrtn-btn-generate-password-holder,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  .intgrtn-input-holder2.intgrtn-input-holder-password
  .intgrtn-btn-generate-password-holder,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder.intgrtn-input-holder-password
  .intgrtn-btn-generate-password-holder,
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  .intgrtn-input-holder2.intgrtn-input-holder-password
  .intgrtn-btn-generate-password-holder {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 760px) {
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup-3-steps
    .intgrtn-btn-go-to-step,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup-3-steps
    .intgrtn-btn-submit,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-signup
    .intgrtn-btn-go-to-step,
  .formwrap-outer .intgrtn-form-signup .intgrtn-form-signup .intgrtn-btn-submit,
  .formwrap-outer
    .intgrtn-form-signup
    .intgrtn-form-optin
    .intgrtn-btn-go-to-step,
  .formwrap-outer .intgrtn-form-signup .intgrtn-form-optin {
    font-size: 16px;
  }
}

.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-btn-go-to-step {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 16px;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-btn-go-to-step:hover {
  background: #621132;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  [data-intgrtn-message-id="passwordConfirmMatch"],
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup
  [data-intgrtn-message-id="passwordConfirmMatch"],
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-optin
  [data-intgrtn-message-id="passwordConfirmMatch"] {
  display: none;
}
.formwrap-outer
  .intgrtn-form-signup
  .intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item {
  width: 50%;
}

.dark .formwrap small,
.dark .formwrap .small {
  display: none !important;
}

.phoneNumber {
  color: black;
}

.intgrtn-input-holder.valid .errorinput .input-status-error {
  display: inline;
}

.intgrtn-input-holder2.valid .errorinput .input-status-error {
  display: inline;
}

.intgrtn-input-holder.valid .input-status-check {
  display: inline;
}

.intgrtn-input-holder2.valid .input-status-check {
  display: inline;
}

.intgrtn-input-holder.invalid .input-status-error {
  display: inline;
}

.intgrtn-input-holder2.invalid .input-status-error {
  display: inline;
}
.intgrtn-input-holder-phone {
  width: 100%;
}

.iti__selected-dial-code {
  color: #717171;
  font-size: 16px;
  margin-right: 6px;
}

.iti__country-name {
  color: black;
}

.iti__selected-flag {
  border-radius: 5px;
  margin-left: 5px;
}
.iti {
  width: 100% !important;
}

.modalwhitw .intgrtn-btn-submit {
  background-color: #CE1126 !important;
  -webkit-box-shadow: #CE1126 0 0 0 0;
  box-shadow: #CE1126 0 0 0 0;
  border: #CE1126 solid 1px;
}

.intgrtn-btn-submit:disabled {
  opacity: 0.5;
  animation: none;
}

.intgrtn-btn-go-to-step,
.intgrtn-btn-submit {
  font-weight: 600;
  border-radius: 4px;
  width: 100%;
  background: linear-gradient(180deg, #1aca1a 0%, #06b606 100%);
  color: #f9f9f9;
  padding: 12px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fa-feather::before {
  content: "";
}
.fa-feather-pointed::before {
  content: "";
}
.fa-feather-alt::before {
  content: "";
}

h1 {
  font-display: swap;
}

/* --------------------------------------- FINISH FORM STYLES ------------------------------ */

@media (max-width: 600px) {
  .topform {
    max-width: 100%;
    box-shadow: 1px 1px 6px 2px #00000044;
  }

  .forma__title {
    margin-bottom: 0em;
  }

  .formwrap-outer .intgrtn-form-signup {
    padding: 16px;
  }
}

.intgrtn-input-holder2 {
  position: relative;
  padding-bottom: 0em;
}

.intgrtn-input-holder {
  position: relative;
  padding-bottom: 0em;
}

.intgrtn-input {
  padding-right: 30px;
}

.intgrtn-input-message-error,
.intgrtn-input-message-error2 {
  color: rgb(255, 255, 255);
  font-size: 12px;
  position: relative;
  padding-top: 0.5em;
  display: none;
}

.iti__search-input {
  display: none;
}

/* Ocultar los iconos por defecto */
.input-status-check,
.input-status-error {
  display: none;
  position: absolute;
  right: 10px; /* Alinea los íconos a la derecha del input */
  transform: translateY(-50%);
  font-size: 18px; /* Ajusta el tamaño según sea necesario */
  pointer-events: none; /* Asegura que los íconos no interfieran con el input */
}

.input-status-check {
  top: 50%;
  color: green;
}

.input-status-error {
  top: 28px;
  color: red;
}

/* Phone input wrap: contiene solo el input y los iconos check/error,
 * para que se posicionen verticalmente sin que el .phone-hint los empuje */
.phone-input-wrap {
  position: relative;
  width: 100%;
}
.phone-input-wrap .input-status-check,
.phone-input-wrap .input-status-error {
  top: 50%;
}

/* Phone hint card (aparece debajo del input del teléfono) */
.phone-hint {
  position: relative;
  margin-top: 28px;
  padding: 32px 14px 14px;
  background: #f0faf4;
  border: 1px solid #c7d6f5;
  border-left: 4px solid #006847;
  border-radius: 8px;
  text-align: center;
}
.phone-hint__icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #006847;
  color: #fff;
  border-radius: 50%;
  border: 3px solid #f0faf4;
  box-shadow: 0 2px 6px rgba(0, 104, 71, 0.25);
}
.phone-hint__text {
  display: block;
  line-height: 1.3;
}
.phone-hint__title {
  display: block;
  color: #006847;
  font-size: 14px;
  font-weight: 700;
}
.phone-hint__sub {
  display: block;
  color: #334155;
  font-size: 12px;
  margin-top: 2px;
}
@media (max-width: 480px) {
  .phone-hint {
    margin-top: 24px;
    padding: 28px 10px 12px;
  }
  .phone-hint__icon {
    width: 36px;
    height: 36px;
    top: -18px;
  }
  .phone-hint__title {
    font-size: 13px;
  }
  .phone-hint__sub {
    font-size: 11px;
  }
}

.intgrtn-btn-submit-holder {
  padding: 0.5em 0em;
}

@media (max-width: 768px) {
  .intgrtn-btn-submit-holder {
    padding: 0.2em 0em;
  }
}

@media (min-width: 300px) and (max-width: 650px) {
  .standard_title {
    font-size: 30px;
  }

  .sc2 {
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
  }

  .card {
    padding: 80px 40px;
    width: 90%;
  }

  .result-container h1 {
    font-size: 3rem;
  }

  .sc4 {
    height: 950px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 120%;
    margin-top: 20px !important;
    padding-top: 108px !important;
  }

  .sc6 {
    padding-top: 120px !important;
    margin-top: 50px !important;
  }

  .sc6 h2 {
    font-size: 30px;
    line-height: 30px;
  }

  .sc7 {
    height: 105px;
    background-size: 170%;
  }
}

.stock__container {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 15px;
  background: rgb(1, 53, 168);
  background: linear-gradient(
    90deg,
    rgba(1, 53, 168, 0) 0%,
    rgba(1, 53, 168, 0.3828125) 12%,
    rgba(1, 53, 168, 0.6601234243697479) 21%,
    rgba(1, 53, 168, 1) 40%
  );
}

@media (max-width: 1536px) {
  #form-modal {
    padding: 0em 4em;
  }
  .general-wrapper {
    height: 100%;
  }
}

@media (max-width: 1280px) {
  .general-wrapper {
    height: 100%;
  }
}

@media (max-width: 640px) {
  .general-wrapper {
    height: 100%;
  }
}

@media (max-width: 1280px) {
  .absolute-form-wrapper {
    height: 100%;
    z-index: 1;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    top: 20px;
    margin: 1em 0em;
  }

  .main-container {
    background: #e7612300 url(../img/fondo-img-2.jpg) no-repeat 0;
    background-size: 100%;
    background-position: center;
    height: 100%;
  }
}

.frase-container {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frase-container::after {
  content: "";
  background-color: white;
  max-width: 440px;
  max-height: 180px;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

@media (max-width: 768px) {
  .frase-container::after {
    content: "";
    background-color: white;
    max-width: 220px;
    max-height: 300px;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
  }
}

@media (max-width: 450px) {
  .frase-container::after {
    content: "";
    background-color: white;
    max-width: 200px;
    max-height: 300px;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
  }
}

.gains-container {
  background-color: #08377e;
  max-width: 250px;
  min-width: 250px;
  padding: 1em;
  border-radius: 0.5em;
  color: white;
  position: absolute;
  left: 35%;
  bottom: -50px;
}

@media (max-width: 1280px) {
  .gains-container {
    left: 30%;
  }
}

@media (max-width: 768px) {
  .gains-container {
    left: 15%;
  }
}

@media (max-width: 450px) {
  .gains-container {
    left: 10%;
  }
}
.rs-range {
  margin-top: 29px;
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  background-color: #2b2a33;
}

.rs-range:focus {
  outline: none;
}

.rs-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 20px;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #d1d1d1;
  border-radius: 25px;
}

.rs-range::-moz-range-track {
  width: 100%;
  height: 100%;
  cursor: pointer;
  box-shadow: none;
  background-color: #000;
  border-radius: 25px;
}

.rs-range::-webkit-slider-thumb {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px solid #2b2a33;
  height: 30px;
  width: 30px;
  border-radius: 20px;
  background: red;
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  bottom: 4px;
}

.rs-range::-moz-range-thumb {
  box-shadow: none;
  border: 0px solid #2b2a33;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background: #343434;
  border: solid 2px #ffb400;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -20px;
}

/* ========= Hero (vista1) ========= */
.hero-title {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-wrap: balance;
}

.hero-stage {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
}

.scroll-list-hero {
  color: #bcbaba;
  font-weight: 800;
  font-size: 15px;
}

/* Replica exacta de los inline styles originales: passport y botón posicionados
 * absolutamente; el botón comparte el mismo punto de ancla y se desplaza con
 * margin-top:180px para quedar bajo la imagen. */
.hero-passport {
  width: 250px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  animation: pulse2 0.65s infinite ease-in-out;
}

.hero-cta-btn {
  font-weight: 800;
  padding-block: 12px;
  padding-inline: 20px;
  border-radius: 999px;
  font-size: 22px;
  background-color: #109230;
  margin-top: 180px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  color: #fff;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  animation: pulse2 0.8s infinite ease-in-out;
}

.hero-footer {
  background: #006847;
}

.hero-logo {
  width: 115px;
  height: auto;
}

.header-logo {
  max-width: 250px;
  max-height: 60px;
}

.requisitos-title {
  color: #0a7a52;
}

/* ========= SVG icons ========= */
.payment-card {
  /* Tamaño unificado: misma anchura, misma altura mínima */
  flex: 1 1 0;
  max-width: 360px;
  width: 100%;
  min-height: 150px;
  margin-bottom: 24px;

  background: #006847;
  color: #ffffff;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1.5px solid #006847;
  box-shadow: 0 6px 18px rgba(0, 104, 71, 0.2);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease, border-color 280ms ease;
}

/* Accent stripe que aparece desde arriba al hacer hover */
.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #ecf6f1 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Glow radial sutil en la esquina superior derecha al hacer hover */
.payment-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 320ms ease;
}

.payment-card:hover,
.payment-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 104, 71, 0.3);
  border-color: #0a8a5c;
  outline: none;
}

.payment-card:hover::before,
.payment-card:focus-visible::before {
  transform: scaleY(1);
}

.payment-card:hover::after,
.payment-card:focus-visible::after {
  opacity: 1;
}

.payment-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 104, 71, 0.12);
}

.payment-icon {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

.payment-arrow {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  --arrow-bg: #ffffff;
  --arrow-fg: #006847;
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.payment-card:hover .payment-arrow,
.payment-card:focus-visible .payment-arrow {
  transform: translateX(5px);
  --arrow-bg: #ecf6f1;
}

@media (prefers-reduced-motion: reduce) {
  .payment-card,
  .payment-card::before,
  .payment-card::after,
  .payment-arrow {
    transition: none;
  }
  .payment-card:hover {
    transform: none;
  }
}

.card-spinner {
  fill: #0a8a5c;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
}
.card-check {
  width: 28px;
  height: 28px;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.star-icon {
  width: 22px;
  height: 22px;
  fill: #fcbf49;
}
.heart-icon {
  width: 16px;
  height: 16px;
  fill: #CE1126;
}

.trust-badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: #00a900;
}
.trust-badge-text {
  color: #050f2c99;
}

/* ========= Reviews ========= */
.review-card {
  background-color: #ffffff;
  box-shadow: 0px 1px 1px 0px #041c2c1f;
  padding: 20px;
  border-radius: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* ========= CTA pulse buttons ========= */
.cta-pulse-blue,
.cta-pulse-green {
  max-width: 416px;
  border-radius: 12px;
  padding: 14.5px 15px;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}
.cta-pulse-blue {
  background: #006847;
}
.cta-pulse-green {
  background: #109230;
}

.hero-img2 {
  max-width: 200px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.safe-icon {
  max-width: 26px;
}

/* Badge "Sus datos están protegidos..." (logo + texto)
 * En mobile pasa a flex-column con el ícono arriba del texto */
@media (max-width: 768px) {
  .data-badge {
    flex-direction: column;
    text-align: center;
    gap: 6px !important;
  }
  .data-badge p {
    line-height: 1.3;
  }
}

/* =============================================================
 * VISUAL UPGRADE — Tokens, animaciones y mejoras de cada sección
 * ============================================================= */

:root {
  --brand-primary: #006847;
  --brand-secondary: #0a8a5c;
  --accent: #CE1126;
  --accent-deep: #a30910;
  --success: #0dbd0d;
  --success-deep: #06b606;
  --danger: #CE1126;
  --bg-soft: #f5fbf8;
  --bg-card: #ffffff;
  --shadow-sm: 0 4px 14px rgba(0, 104, 71, 0.07);
  --shadow-md: 0 12px 28px rgba(0, 104, 71, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 104, 71, 0.18);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ========= Hero (vista1) ========= */
.hero-vista1 {
  background: radial-gradient(
      ellipse at top,
      rgba(10, 138, 92, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #f5fbf8 100%);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero-top-bar {
  background: #006847;
  box-shadow: 0 4px 18px rgba(0, 104, 71, 0.3);
  overflow: hidden;
}

/* Zona reducida donde el texto flotante (#rotate) se mueve sin salirse del bar.
 * El alto deja un margen interno para que la animación rotateText (±7px) no toque los bordes. */
#rotate {
  max-height: 120px;
  overflow: hidden;
  padding: 8px 16px;
  max-width: 600px;
  width: 100%;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.1px;
}

/* Star decorativo arriba del título — círculo discreto sobre el navy */
.hero-rotate-star-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fcbf49;
  transition: background 240ms ease, transform 240ms ease;
}
.hero-rotate-star-wrap:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: scale(1.08);
}
.hero-rotate-star-wrap svg {
  display: block;
  color: #fcbf49;
}

.hero-stage::before {
  /* Halo radial detrás del passport */
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(10, 138, 92, 0.18) 0%,
    rgba(10, 138, 92, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-passport {
  /* Tilt + drop-shadow dramática */
  transform: translate(-50%, -50%) rotate(-4deg);
  filter: drop-shadow(0 25px 35px rgba(0, 104, 71, 0.35))
    drop-shadow(0 10px 15px rgba(0, 104, 71, 0.2));
  animation: passportFloat 3.2s ease-in-out infinite;
}

@keyframes passportFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-4deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px)) rotate(-4deg);
  }
}

/* Botón Acceder al programa — premium verde con shimmer */
.hero-cta-btn {
  background: linear-gradient(135deg, #1aca1a 0%, #06b606 100%);
  box-shadow: 0 12px 30px rgba(13, 189, 13, 0.55),
    0 4px 10px rgba(6, 182, 6, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: absolute;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  animation: shimmer 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  60%,
  100% {
    left: 130%;
  }
}

.hero-cta-btn:hover {
  box-shadow: 0 18px 40px rgba(13, 189, 13, 0.7),
    0 6px 14px rgba(6, 182, 6, 0.4);
}

/* ========= Banner img1 ========= */
.hero-banner-wrap {
  width: 100%;
  max-width: 780px;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 12px;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.hero-banner-wrap:hover .hero-banner-img {
  transform: scale(1.04);
}

/* ========= Mapa Nicaragua (img2) ========= */
.img2-wrap {
  display: inline-block;
  overflow: visible;
  transition: transform 400ms var(--ease-out);
}
.img2-wrap:hover {
  transform: translateY(-4px) scale(1.04);
}
.hero-img2 {
  filter: drop-shadow(0 8px 18px rgba(0, 104, 71, 0.25));
  transition: filter 400ms var(--ease-out);
}
.img2-wrap:hover .hero-img2 {
  filter: drop-shadow(0 14px 28px rgba(0, 104, 71, 0.35));
}

/* ========= Countdown timer del header ========= */
.countdown-timer {
  color: #fff;
  background: linear-gradient(135deg, #CE1126 0%, #8b0000 100%);
  padding: 10px 14px;
  border-radius: 10px;
  min-width: 78px;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(204, 11, 16, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: timerPulse 1.6s ease-in-out infinite;
}

@keyframes timerPulse {
  0%,
  100% {
    box-shadow: 0 6px 18px rgba(204, 11, 16, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 6px 26px rgba(204, 11, 16, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* ========= Form section #registro ========= */
/* Imagen ARS — billetes argentinos entre intro y requisitos */
.ars-image-wrap {
  width: 100%;
  max-width: 720px;
  margin: 24px auto 8px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 104, 71, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  isolation: isolate;
}
.ars-image {
  width: 100%;
  height: auto;
  display: block;
}
.ars-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 31, 77, 0.82) 60%, rgba(0, 31, 77, 0.96) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ars-image-caption strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1px;
}
.ars-image-caption span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}
@media (max-width: 640px) {
  .ars-image-wrap {
    margin: 18px auto 4px;
    border-radius: 14px;
  }
  .ars-image-caption {
    padding: 12px 16px 14px;
  }
  .ars-image-caption strong { font-size: 0.94rem; }
  .ars-image-caption span { font-size: 0.8rem; }
}

/* Heading que separa el countdown rojo del form-section azul */
.form-section-heading-wrap {
  text-align: center;
  margin: 26px auto 14px;
  max-width: 640px;
  width: 100%;
}
.form-section-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  font-weight: 700;
  color: #006847;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.form-section-heading__hl {
  color: #0a8a5c;
  position: relative;
  white-space: nowrap;
}
.form-section-heading__hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #CE1126 30%, #CE1126 70%, transparent 100%);
  border-radius: 2px;
}
.form-section-heading-sub {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
}

@media (max-width: 640px) {
  .form-section-heading-wrap {
    margin: 20px auto 10px;
    padding: 0 10px;
  }
  .form-section-heading-sub {
    font-size: 0.86rem;
  }
}

.form-section {
  background: linear-gradient(160deg, #006847 0%, #001f4d 100%);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 104, 71, 0.35),
    0 0 0 0 rgba(204, 11, 16, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(204, 11, 16, 0.42);
  animation: formSectionPulse 2.4s ease-in-out infinite;
}

@keyframes formSectionPulse {
  0%, 100% {
    box-shadow:
      0 25px 50px rgba(0, 104, 71, 0.35),
      0 0 0 0 rgba(204, 11, 16, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(204, 11, 16, 0.42);
  }
  50% {
    box-shadow:
      0 28px 60px rgba(0, 104, 71, 0.45),
      0 0 0 12px rgba(204, 11, 16, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(204, 11, 16, 0.85);
  }
}

/* Pill live "X personas se registraron..." arriba del age-step */
.form-section__live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(13, 189, 13, 0.16);
  border: 1px solid rgba(13, 189, 13, 0.5);
  color: #d1fae5;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  z-index: 2;
  max-width: 100%;
  text-align: center;
  line-height: 1.25;
}
.form-section__live-pill strong {
  color: #ffffff;
  font-weight: 800;
}
.form-section__live-text--long { display: inline; }
.form-section__live-text--short { display: none; }
@media (max-width: 640px) {
  .form-section__live-pill {
    font-size: 11.5px;
    padding: 6px 12px;
    gap: 5px;
  }
  .form-section__live-text--long { display: none; }
  .form-section__live-text--short { display: inline; }
}
@media (max-width: 380px) {
  .form-section__live-pill {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.form-section__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0dbd0d;
  box-shadow: 0 0 0 0 rgba(13, 189, 13, 0.7);
  animation: liveDotPulse 1.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes liveDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(13, 189, 13, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(13, 189, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 189, 13, 0); }
}

/* Highlight amarillo en "tu edad" del título */
.age-step-title__hl {
  color: #fcbf49;
  position: relative;
  white-space: nowrap;
}
.age-step-title__hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #fcbf49 30%, #fcbf49 70%, transparent 100%);
  border-radius: 2px;
}

.form-section::before {
  /* Glow superior */
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 480px;
  height: 240px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(10, 138, 92, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.form-section::after {
  /* Glow inferior derecho */
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(204, 11, 16, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.form-section > * {
  position: relative;
  z-index: 1;
}

/* ========= CTAs Obtener dinero — premium ========= */
.cta-pulse-blue,
.cta-pulse-green {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}
.cta-pulse-blue {
  background: linear-gradient(135deg, #0a8a5c 0%, #006847 100%);
  box-shadow: 0 14px 30px rgba(0, 104, 71, 0.4);
  animation: pulseBlue 1.5s infinite;
}

@keyframes pulseBlue {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(0, 104, 71, 0.4),
      0 0 0 5px rgba(10, 138, 92, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 104, 71, 0.4),
      0 0 0 0px rgba(10, 138, 92, 0);
  }
}
.cta-pulse-green {
  background: linear-gradient(135deg, #1aca1a 0%, #06b606 100%);
  box-shadow: 0 14px 30px rgba(13, 189, 13, 0.45);
}
.cta-pulse-blue::after,
.cta-pulse-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.cta-pulse-blue:hover,
.cta-pulse-green:hover {
  transform: translateY(-3px);
}
.cta-pulse-blue:hover {
  box-shadow: 0 20px 38px rgba(0, 104, 71, 0.55);
}
.cta-pulse-green:hover {
  box-shadow: 0 20px 38px rgba(13, 189, 13, 0.6);
}

/* ========= Cards de jubilados ========= */
.jubilados-title {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.25;
}

.jubilados-grid {
  max-width: 880px;
  margin: 0 auto;
}
.jubilados-grid > div {
  flex: 1 1 0;
  min-width: 0;
  max-width: 420px;
}

.jubilado-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 18px rgba(7, 40, 135, 0.1);
  border: 1px solid rgba(10, 138, 92, 0.08);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease;
}
.jubilado-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(7, 40, 135, 0.18);
}
.jubilado-card strong {
  font-size: 1.05em;
  color: var(--brand-primary);
}

/* ========= Opiniones (sección reviews) ========= */
.opiniones-header,
.opiniones-list {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

/* ========= Reviews polish ========= */
.review-card {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(4, 28, 44, 0.06);
  padding: 24px 22px 24px 26px;
  border-radius: 18px;
  border: 1px solid #eef4fa;
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease,
    border-color 320ms ease;
  align-items: flex-start;
  gap: 16px !important;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(4, 28, 44, 0.1);
  border-color: #c8e6d4;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ecf6f1;
  box-shadow: 0 4px 12px rgba(0, 104, 71, 0.12);
  flex-shrink: 0;
}

/* ========= Site header / navbar ========= */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0, 71, 171, 0.12);
  box-shadow: 0 2px 16px rgba(0, 104, 71, 0.05);
  transition: box-shadow 320ms ease, padding 280ms ease,
    background 320ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 104, 71, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: transform 280ms var(--ease-out);
}
.header-logo-link:hover {
  transform: scale(1.04);
}
.header-logo-link .header-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 104, 71, 0.15));
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1a2b4a;
  padding: 8px 0;
  cursor: pointer;
  transition: color 240ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0a8a5c 0%, #006847 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 360ms var(--ease-out);
}

.nav-link:hover {
  color: #006847;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Pill de rating 4,7 */
.nav-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ffffff 0%, #ecf6f1 100%);
  border: 1.5px solid #d6ede0;
  border-radius: 999px;
  font-weight: 700;
  color: #006847;
  cursor: pointer;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease,
    border-color 240ms ease;
  box-shadow: 0 4px 12px rgba(0, 104, 71, 0.1);
}

.nav-rating:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 104, 71, 0.2);
  border-color: #0a8a5c;
}

.nav-rating .star-icon {
  fill: #fcbf49;
}

/* Timer wrap (label + countdown) */
.timer-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 16px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
  border: 1.5px solid #fecaca;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(204, 11, 16, 0.08);
}

.timer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #991b1b;
  line-height: 1.2;
  text-align: right;
}

.timer-wrap .countdown-timer {
  margin: 0;
  font-size: 15px;
  padding: 8px 12px;
  min-width: 72px;
}

@media (max-width: 1024px) {
  .timer-wrap {
    padding: 6px 10px 6px 12px;
    gap: 8px;
    border-radius: 12px;
  }
  .timer-label {
    font-size: 11px;
    max-width: 90px;
  }
  .timer-wrap .countdown-timer {
    font-size: 13px;
    padding: 6px 10px;
    min-width: 62px;
  }
}

@media (max-width: 480px) {
  .timer-wrap {
    padding: 5px 8px 5px 10px;
    gap: 6px;
    border-radius: 10px;
  }
  .timer-label {
    font-size: 10px;
    max-width: 64px;
    line-height: 1.15;
  }
  .timer-wrap .countdown-timer {
    font-size: 12px;
    padding: 5px 8px;
    min-width: 56px;
  }
}

/* ========= Requisitos card ========= */
.requisitos-card {
  width: 100%;
  background: linear-gradient(160deg, #ffffff 0%, #ecf6f1 100%);
  border: 1.5px solid #d6ede0;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 12px 32px rgba(0, 104, 71, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.requisitos-card::before {
  /* Accent stripe izquierdo */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #0a8a5c 0%, #006847 100%);
}

.requisitos-card::after {
  /* Glow decorativo en esquina */
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(10, 138, 92, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.requisitos-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1.5px dashed #d6ede0;
  position: relative;
}

.requisitos-icon-chip {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0a8a5c 0%, #006847 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(10, 138, 92, 0.35);
}

.requisitos-icon-chip img {
  filter: brightness(0) invert(1);
}

.requisitos-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.requisitos-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #0a8a5c;
}

.requisitos-title-new {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #006847;
  line-height: 1.2;
}

.requisitos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.requisitos-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(10, 138, 92, 0.15);
  border-radius: 12px;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease,
    border-color 240ms ease, background 240ms ease;
}

.requisitos-item:hover {
  transform: translateX(4px);
  background: #ffffff;
  border-color: #0a8a5c;
  box-shadow: 0 6px 16px rgba(0, 104, 71, 0.1);
}

.requisitos-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0a8a5c 0%, #006847 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 104, 71, 0.25);
}

.requisitos-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #1a2b4a;
  padding-top: 4px;
}

.requisitos-text strong {
  color: #006847;
  font-weight: 800;
}

@media (max-width: 600px) {
  .requisitos-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .requisitos-icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .requisitos-title-new {
    font-size: 19px;
  }
  .requisitos-text {
    font-size: 14px;
  }
}

/* ========= Age step (#registro paso 1) ========= */
.age-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: center;
}

.age-step-eyebrow {
  display: inline-block;
  background: #CE1126;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-step-title {
  margin: 4px 0 0;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.age-step-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.5;
  max-width: 480px;
}

.age-arrow-down {
  width: 32px;
  height: 32px;
  color: #ffffff;
  margin-top: 4px;
  animation: ageArrowBounce 1.4s ease-in-out infinite;
}

@keyframes ageArrowBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.age-buttons-row {
  width: 100%;
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

/* Variante para 3 botones (rango etario por edad: 35-50 / 50-65 / 65+).
 * Mantiene los botones en fila incluso en mobile porque los labels son cortos. */
.age-buttons-row--three {
  gap: 8px;
}
.age-buttons-row--three .age-btn {
  padding: 14px 6px;
}
.age-buttons-row--three .age-btn-range {
  font-size: 19px;
  white-space: nowrap;
}
.age-buttons-row--three .age-btn-hint {
  font-size: 11px;
}

.age-btn {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 18px 12px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #1aca1a 0%, #06b606 100%);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13, 189, 13, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease,
    border-color 220ms ease;
  animation: ageBtnPulse 2.2s ease-in-out infinite;
}

.age-btn:nth-child(2) {
  animation-delay: 0.25s;
}
.age-btn:nth-child(3) {
  animation-delay: 0.5s;
}

.age-btn::after {
  /* Shimmer */
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

.age-btn-range {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.age-btn-hint {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.age-btn:hover,
.age-btn:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 36px rgba(13, 189, 13, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  animation-play-state: paused;
}

.age-btn:active {
  transform: translateY(-1px) scale(1.01);
}

@keyframes ageBtnPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(13, 189, 13, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 14px 36px rgba(13, 189, 13, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.age-step-helper {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
}

.age-helper-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .age-step-title {
    font-size: 26px;
  }
  .age-step-subtitle {
    font-size: 14.5px;
  }
  .age-buttons-row {
    flex-direction: column;
    gap: 10px;
  }
  .age-btn {
    padding: 18px 16px;
    min-height: 78px;
    gap: 4px;
  }
  .age-btn-range {
    font-size: 22px;
    line-height: 1.25;
  }
  .age-btn-hint {
    line-height: 1.2;
  }

  /* En mobile, la variante de 3 botones se mantiene en fila (labels cortos). */
  .age-buttons-row--three {
    flex-direction: row;
    gap: 6px;
  }
  .age-buttons-row--three .age-btn {
    padding: 14px 4px;
    min-height: 70px;
  }
  .age-buttons-row--three .age-btn-range {
    font-size: 17px;
  }
  .age-buttons-row--three .age-btn-hint {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-arrow-down,
  .age-btn,
  .age-btn::after,
  .form-section,
  .form-section__live-dot {
    animation: none !important;
  }
}

/* ========= Scroll reveal animation ========= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-cta-btn::after,
  .cta-pulse-blue::after,
  .cta-pulse-green::after,
  .hero-passport,
  .countdown-timer {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =============================================================
 * RESPONSIVE — Ajustes finos para mobile
 * ============================================================= */

/* ===== Tablet y mobile grande (<= 768px) ===== */
@media (max-width: 768px) {
  /* Hero rotate header */
  #rotate {
    font-size: 16px !important;
  }

  /* Logo del header vista2 más compacto */
  .header-logo {
    max-width: 160px;
    max-height: 48px;
  }

  /* Form section #registro: padding reducido */
  .form-section {
    padding: 28px 18px;
    border-radius: 14px;
  }
  .form-section::before,
  .form-section::after {
    display: none;
  }

  /* Hero banner img: aire lateral + margin-top menor */
  .hero-banner-wrap {
    width: calc(100% - 32px);
    max-width: 780px;
    margin: 24px auto 0;
  }

  /* CTAs Obtener dinero: en mobile el scale 1.05 desbordaba el viewport.
   * Reemplazamos por animaciones que sólo modifican la sombra. */
  .cta-pulse-blue {
    animation: pulseBlueMobile 1.5s infinite;
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
  .cta-pulse-green {
    animation: pulseGreenMobile 1.5s infinite;
  }
  @keyframes pulseBlueMobile {
    0%,
    100% {
      box-shadow: 0 14px 30px rgba(0, 104, 71, 0.4),
        0 0 0 5px rgba(10, 138, 92, 0.25);
    }
    50% {
      box-shadow: 0 18px 38px rgba(0, 104, 71, 0.55),
        0 0 0 0px rgba(10, 138, 92, 0);
    }
  }
  @keyframes pulseGreenMobile {
    0%,
    100% {
      box-shadow: 0 14px 30px rgba(13, 189, 13, 0.45),
        0 0 0 5px #1aca1a40;
    }
    50% {
      box-shadow: 0 18px 38px rgba(13, 189, 13, 0.6),
        0 0 0 0px rgba(255, 255, 255, 0);
    }
  }

  /* Cards principales del main column: aire lateral extra
   * Usamos width calc en lugar de margin para evitar overflow con width:100% */
  .form-section,
  .requisitos-card {
    width: calc(100% - 16px);
    margin-left: auto;
    margin-right: auto;
  }

  /* Bloques con max-width centrado: padding lateral mínimo */
  .jubilados-grid,
  .jubilados-title,
  .opiniones-header,
  .opiniones-list {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  /* Jubilados grid: en columna, las columnas no deben usar flex-grow */
  .jubilados-grid {
    gap: 16px;
  }
  .jubilados-grid > div {
    flex: none;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
  .jubilados-title {
    font-size: 22px !important;
    line-height: 1.3;
    padding: 0 8px;
  }
  .jubilado-card {
    padding: 12px 14px;
  }
  .jubilado-card p {
    font-size: 13px;
    line-height: 1.3;
  }
  .jubilado-card strong {
    font-size: 15px;
    line-height: 1.3;
  }
  .jubilado-card .card-spinner,
  .jubilado-card .card-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }
  /* Reduce el gap interno entre las 3 columnas (nombre | icon | amount) */
  .jubilado-card > div:first-child {
    gap: 8px;
  }

  /* Opiniones header: stack y centrar el rating */
  .opiniones-header {
    gap: 16px;
  }
  .opiniones-header > div {
    text-align: center;
    align-items: center !important;
  }

  /* Reviews: padding más compacto, avatar más chico */
  .review-card {
    padding: 18px 16px;
    gap: 12px !important;
  }
  .review-avatar {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }
  /* Nombre y teléfono apilados en mobile */
  .review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
  }
  .review-sep {
    display: none;
  }

  /* Payment cards: limitar ancho cuando se apilan en columna */
  .payment-card {
    flex: none;
    max-width: 420px;
    min-height: auto;
    padding: 22px 20px;
    gap: 12px !important;
  }
  .payment-card > div:first-child {
    font-size: 1rem !important;
    line-height: 1.3;
    gap: 10px !important;
    min-width: 0;
    flex: 1;
  }
  .payment-card .payment-icon {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
  }
  .payment-card .payment-arrow {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    flex-shrink: 0;
  }

  /* Hero passport más chico para pantallas tablet */
  .hero-passport {
    width: 220px;
  }

  /* Hero CTA button */
  .hero-cta-btn {
    font-size: 18px;
    padding-block: 10px;
    padding-inline: 18px;
  }

  /* Countdown timer del overlay (Procesando) */
  .countdown-timer {
    font-size: 14px;
    padding: 8px 12px;
    min-width: 64px;
  }
}

/* ===== Mobile pequeño (<= 480px) ===== */
@media (max-width: 480px) {
  /* Hero passport aún más chico */
  .hero-passport {
    width: 180px;
  }

  /* Hero stage: re-centrar verticalmente con menos top */
  .hero-cta-btn {
    margin-top: 130px;
    font-size: 17px;
  }

  /* Hero rotate header */
  #rotate {
    font-size: 14px !important;
    max-width: 340px;
    max-height: 140px;
    line-height: 1.3;
    padding: 6px 10px;
  }
  .hero-top-bar {
    height: 150px;
  }
  .hero-footer {
    height: 88px;
  }
  .hero-logo {
    width: 130px;
    height: auto;
  }
  /* Star más chico en mobile para que no robe espacio al texto */
  .hero-rotate-star-wrap {
    width: 22px;
    height: 22px;
  }
  .hero-rotate-star-wrap svg {
    width: 12px;
    height: 12px;
  }

  /* Form section: más compacto */
  .form-section {
    padding: 22px 14px;
  }

  /* Age step: títulos más chicos */
  .age-step-title {
    font-size: 22px;
  }
  .age-step-subtitle {
    font-size: 13.5px;
  }
  .form-section__live-pill {
    font-size: 11.5px;
    padding: 6px 12px;
  }

  /* Requisitos card */
  .requisitos-card {
    padding: 20px 14px;
  }
  .requisitos-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .requisitos-icon-chip {
    width: 40px;
    height: 40px;
  }
  .requisitos-title-new {
    font-size: 17px;
  }
  .requisitos-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .requisitos-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .requisitos-text {
    font-size: 13.5px;
  }

  /* Reviews: aún más compacto */
  .review-card {
    padding: 16px 14px;
  }
  .review-avatar {
    width: 40px;
    height: 40px;
  }

  /* Payment cards: padding compacto pero generoso en Y */
  .payment-card {
    padding: 20px 18px;
    gap: 10px !important;
  }
  .payment-card > div:first-child {
    font-size: 0.92rem !important;
    gap: 8px !important;
  }
  .payment-card .payment-icon {
    width: 24px !important;
    height: 24px !important;
  }

  /* Jubilados title aún más chico */
  .jubilados-title {
    font-size: 19px !important;
  }

  /* CTAs Obtener dinero más compactos */
  .cta-pulse-blue,
  .cta-pulse-green {
    padding: 12px 14px;
    font-size: 15px;
  }
}

/* =============================================================
 * BLOQUES EXCLUSIVOS DEL TARGET (YPF Argentina)
 * - vista-gracias (thank-you view)
 * - v2-family grid (3 cards "Lo que podés hacer con $180k–$350k")
 * - cupos counter (header counter)
 * ============================================================= */

/* ---------- V2 FAMILY GRID (3 cards) ---------- */
.v2-family-eyebrow {
  color: #0a8a5c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.v2-family-heading {
  font-family: Georgia, "Times New Roman", serif;
  color: #006847;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 6px;
}

.v2-family-heading span {
  background: linear-gradient(135deg, #0a8a5c 0%, #006847 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.v2-family-subheading {
  color: #6b6b6b;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.v2-family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0 4px;
}

@media (min-width: 768px) {
  .v2-family-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 0;
  }
}

.v2-family-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f5fbf8 100%);
  border: 1.5px solid #dbeee3;
  border-radius: 18px;
  padding: 28px 22px 24px;
  box-shadow: 0 8px 22px rgba(0, 104, 71, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease, border-color 320ms ease;
}

.v2-family-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0a8a5c 0%, #006847 100%);
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.v2-family-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(10, 138, 92, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 320ms ease;
}

.v2-family-card:hover,
.v2-family-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 104, 71, 0.16);
  border-color: #d6ede0;
}

.v2-family-card:hover::before,
.v2-family-card:focus-within::before {
  transform: scaleX(1);
}

.v2-family-card:hover::after,
.v2-family-card:focus-within::after {
  opacity: 1;
}

.v2-family-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecf6f1 0%, #c8e6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 6px 14px rgba(0, 104, 71, 0.08);
}

.v2-family-icon svg {
  width: 32px;
  height: 32px;
  color: #006847;
}

.v2-family-num {
  color: #0a8a5c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.v2-family-title {
  font-family: Georgia, "Times New Roman", serif;
  color: #006847;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
}

.v2-family-body {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- CUPOS COUNTER (header) ---------- */
.cupos-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 16px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1.5px solid #a7f3d0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(13, 189, 13, 0.12);
}

.cupos-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  line-height: 1.2;
  text-align: right;
}

/* ---------- BRAND-LINK (menciones inline "Trade Ai de YPF") ---------- */
.brand-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0, 104, 71, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}
.brand-link:hover,
.brand-link:focus-visible {
  color: #006847;
  text-decoration-color: #0a8a5c;
  outline: none;
}

.cupos-value {
  background: linear-gradient(135deg, #0dbd0d 0%, #06b606 100%);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  min-width: 84px;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(13, 189, 13, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: cuposPulse 1.8s ease-in-out infinite;
}

@keyframes cuposPulse {
  0%,
  100% {
    box-shadow: 0 6px 16px rgba(13, 189, 13, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(13, 189, 13, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* En mobile/tablet: oculta " restantes" para que el label sea "Cupos hoy:" en una línea */
@media (max-width: 1024px) {
  .cupos-wrap {
    padding: 6px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .cupos-label {
    font-size: 12px;
    line-height: 1.2;
    max-width: none;
    white-space: nowrap;
  }
  .cupos-label__full { display: none; }
  .cupos-value {
    font-size: 13px;
    padding: 6px 10px;
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .cupos-wrap {
    padding: 5px 8px;
    gap: 6px;
    border-radius: 10px;
  }
  .cupos-label {
    font-size: 11px;
    line-height: 1.15;
  }
  .cupos-value {
    font-size: 12px;
    padding: 5px 8px;
    min-width: 62px;
  }
}

/* =============================================================
 * CONVERSION ELEMENTS — Sticky CTA · Countdown · FAQ (V2 family)
 * Paleta: navy #006847 + cyan #0a8a5c + gold #CE1126
 * ============================================================= */

/* ========= Countdown — Cierre de inscripciones hoy ========= */
.urgency-countdown-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 720px;
  margin: 8px auto 0;
  padding: 14px 22px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
  border: 1.5px solid #fecaca;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(204, 11, 16, 0.10);
  color: #991b1b;
  animation: v2-urgencyPulse 2.4s ease-in-out infinite;
}

@keyframes v2-urgencyPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(204, 11, 16, 0.10); }
  50%      { box-shadow: 0 6px 28px rgba(204, 11, 16, 0.24); }
}

.urgency-countdown-v2 .urgency-countdown__icon {
  flex-shrink: 0;
  color: #CE1126;
}

.urgency-countdown-v2 .urgency-countdown__body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-countdown-v2 .urgency-countdown__label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.urgency-countdown-v2 .urgency-countdown__time {
  font-family: "Courier New", monospace;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, #CE1126 0%, #8b0000 100%);
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 1px;
  min-width: 112px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(204, 11, 16, 0.35);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .urgency-countdown-v2 { padding: 12px 16px; gap: 10px; border-radius: 12px; }
  .urgency-countdown-v2 .urgency-countdown__body { flex-direction: column; gap: 6px; }
  .urgency-countdown-v2 .urgency-countdown__label { font-size: 13px; }
  .urgency-countdown-v2 .urgency-countdown__time { font-size: 19px; padding: 5px 12px; min-width: 100px; }
}

/* ========= FAQ accordion (family) ========= */
.faq-section-v2 {
  width: 100%;
  background: linear-gradient(180deg, #f5fbf8 0%, #ffffff 100%);
  padding: 60px 20px 80px;
  position: relative;
}

.faq-section-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d6ede0 50%, transparent 100%);
  transform: translateX(-50%);
}

.faq-section-v2__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-eyebrow-v2 {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #0a8a5c;
  margin-bottom: 10px;
}

.faq-title-v2 {
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: #006847;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.faq-subtitle-v2 {
  text-align: center;
  color: #475569;
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.faq-item-v2 {
  background: #ffffff;
  border: 1px solid #dbeee3;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.faq-item-v2:hover {
  border-color: rgba(10, 138, 92, 0.4);
  box-shadow: 0 6px 18px rgba(0, 104, 71, 0.10);
}

.faq-item-v2[open] {
  border-color: #0a8a5c;
  box-shadow: 0 8px 24px rgba(10, 138, 92, 0.16);
}

.faq-item-v2__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #006847;
  line-height: 1.3;
  user-select: none;
}

.faq-item-v2__q::-webkit-details-marker { display: none; }
.faq-item-v2__q::marker { content: ""; }

.faq-item-v2__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecf6f1;
  color: #0a8a5c;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background 240ms ease, color 240ms ease;
}

.faq-item-v2[open] .faq-item-v2__chevron {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #0a8a5c 0%, #006847 100%);
  color: #ffffff;
}

.faq-item-v2__a {
  padding: 0 22px 20px 22px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item-v2__a p { margin: 0; }
.faq-item-v2__a strong { color: #006847; font-weight: 700; }

.faq-cta-v2 {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(160deg, #ffffff 0%, #ecf6f1 100%);
  border: 1.5px dashed #d6ede0;
  border-radius: 16px;
  text-align: center;
}

.faq-cta-v2 p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 16px;
}

.faq-cta-v2 .cta-pulse-green {
  margin: 0 auto;
  display: block;
}

@media (max-width: 640px) {
  .faq-section-v2 { padding: 44px 14px 60px; }
  .faq-item-v2__q { padding: 16px 18px; font-size: 0.98rem; }
  .faq-item-v2__chevron { width: 28px; height: 28px; font-size: 20px; }
  .faq-item-v2__a { padding: 0 18px 16px 18px; font-size: 0.94rem; }
  .faq-cta-v2 { padding: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .urgency-countdown-v2 { animation: none !important; transition: none !important; }
  .faq-item-v2,
  .faq-item-v2__chevron { transition: none !important; }
}

/* =============================================================
 * Mobile Sticky CTA — barra inferior fija (solo mobile, solo vista2)
 * Aparece tras scroll inicial, se oculta cuando el form está visible.
 * ============================================================= */
.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border-top: 1px solid #e5edf7;
    box-shadow: 0 -8px 24px rgba(0, 104, 71, 0.14);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    transform: translateY(110%);
    transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
  }
  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }
  .mobile-sticky-cta.is-hidden-near-form {
    transform: translateY(110%);
  }
  .mobile-sticky-cta__cupos {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex-shrink: 0;
  }
  .mobile-sticky-cta__cupos-label {
    font-size: 10px;
    color: #6b7a90;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
  }
  .mobile-sticky-cta__cupos-value {
    font-size: 16px;
    color: #006847;
    font-weight: 800;
  }
  .mobile-sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #109230 0%, #066b18 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    font-size: 16px;
    padding: 13px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(13, 189, 13, 0.45);
    animation: pulseGreenSticky 1.8s infinite;
    white-space: nowrap;
  }
  .mobile-sticky-cta__btn svg {
    flex-shrink: 0;
  }
  @keyframes pulseGreenSticky {
    0%, 100% {
      box-shadow: 0 8px 20px rgba(13, 189, 13, 0.45),
                  0 0 0 0 rgba(13, 189, 13, 0.45);
    }
    50% {
      box-shadow: 0 8px 20px rgba(13, 189, 13, 0.55),
                  0 0 0 8px rgba(13, 189, 13, 0);
    }
  }
  body.has-mobile-sticky-cta #vista2 { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-cta,
  .mobile-sticky-cta__btn {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Mobile ultra-pequeño (<= 380px, ej. 360px iPhone SE / Galaxy S8) ===== */
@media (max-width: 380px) {
  .hero-top-bar {
    height: 138px;
  }
  .hero-footer {
    height: 78px;
  }
  .hero-logo {
    width: 112px;
  }
  #rotate {
    font-size: 13px !important;
    max-width: 310px !important;
    max-height: 130px;
    padding: 4px 8px;
  }
  .hero-rotate-star-wrap {
    width: 20px;
    height: 20px;
  }
  .hero-rotate-star-wrap svg {
    width: 11px;
    height: 11px;
  }
  .hero-passport {
    width: 140px;
  }
  .hero-cta-btn {
    margin-top: 95px;
    font-size: 15px;
    padding-block: 9px;
    padding-inline: 16px;
  }
  .hero-stage::before {
    width: 320px;
    height: 320px;
  }
  /* Sticky CTA aún más compacto */
  .mobile-sticky-cta {
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .mobile-sticky-cta__btn {
    font-size: 14px;
    padding: 11px 12px;
  }
  .mobile-sticky-cta__cupos-label { font-size: 9px; }
  .mobile-sticky-cta__cupos-value { font-size: 14px; }
}

/* ============================================================
   v2.5 — Submit loader overrides + success modal + confetti canvas
   ============================================================ */
#submit-loader {
  display: none;
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  transform: none !important;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}
#submit-loader > .success-modal { pointer-events: auto; }

#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 768px) {
  #confetti-canvas { display: none; }
}

.success-modal {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 28px 26px 22px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  font-family: "Source Sans Pro", "Golos Text", sans-serif;
  color: #1F2937;
  animation: success-modal-in 0.45s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@keyframes success-modal-in {
  0%   { opacity: 0; transform: translateY(20px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.success-modal__check {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: success-check-pop 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@keyframes success-check-pop {
  0%   { opacity: 0; transform: scale(0.4); }
  60%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
.success-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
}
.success-modal__subtitle {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}
.success-modal__subtitle strong { color: #111827; font-weight: 700; }
.success-modal__alert {
  background: #FFF8E1;
  border: 1px solid #F5D78A;
  border-left: 4px solid #E8A53A;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  text-align: left;
}
.success-modal__alert p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: #5C4A1B;
}
.success-modal__alert strong { color: #4A3A14; }
.success-modal__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.success-modal__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #1F2937;
  font-weight: 500;
}
.success-modal__checklist svg { flex-shrink: 0; }
.success-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #E5E7EB;
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}
.success-modal__spinner {
  width: 18px; height: 18px;
  border: 2.5px solid #E5E7EB;
  border-top-color: #00387c;
  border-radius: 50%;
  animation: submit-spin 0.8s linear infinite;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .success-modal { padding: 24px 18px 18px; max-width: 100%; }
  .success-modal__title { font-size: 19px; }
  .success-modal__subtitle { font-size: 14px; }
  .success-modal__check { width: 64px; height: 64px; }
}

/* ============================================================
   v2.5 — Importante antes de registrarse (alert card)
   ============================================================ */
.important-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #FFF8E1;
    border: 1px solid #F5D78A;
    border-left: 4px solid #E8A53A;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 10px 0 6px;
    color: #5C4A1B;
}
.important-notice__icon {
    flex-shrink: 0;
    color: #C7891E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.important-notice__body { flex: 1; min-width: 0; }
.important-notice__title {
    margin: 0 0 4px;
    font-weight: 700;
    color: #4A3A14;
    font-size: 15px;
    line-height: 1.3;
}
.important-notice__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #5C4A1B;
}
.important-notice__text strong { color: #4A3A14; }

/* ============================================================
   v2.5 — Registros en tiempo real card
   ============================================================ */
.live-slots {
    background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFE 100%);
    border: 1px solid #D6E6F2;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 10px 0 6px;
    box-shadow: 0 2px 6px rgba(0, 56, 124, 0.06);
}
.live-slots__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.live-slots__pulse {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #16A34A;
    position: relative;
    flex-shrink: 0;
}
.live-slots__pulse::after {
    content: '';
    position: absolute; inset: -3px;
    border-radius: 50%;
    background: #16A34A;
    opacity: 0.35;
    animation: live-slots-pulse 1.6s ease-out infinite;
}
@keyframes live-slots-pulse {
    0%   { transform: scale(0.8); opacity: 0.45; }
    100% { transform: scale(1.8); opacity: 0; }
}
.live-slots__label {
    font-weight: 700;
    color: #00387c;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.live-slots__bar {
    height: 10px;
    background: #E8F0F9;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}
.live-slots__fill {
    height: 100%;
    background: linear-gradient(90deg, #1E88E5 0%, #00387c 100%);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.live-slots__stats {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}
.live-slots__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: #5A6B7C;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.live-slots__stat strong {
    font-size: 22px;
    color: #00387c;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.live-slots__stat--right { text-align: right; align-items: flex-end; }
.live-slots__footnote {
    margin: 10px 0 0;
    font-size: 12px;
    color: #7A8898;
    text-align: center;
}

/* ============================================================
   v2.5 — Money step
   ============================================================ */
.money-buttons-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.money-buttons-row .age-btn {
    min-height: 60px;
    padding: 14px 12px;
    font-size: 15px;
}
.money-buttons-row .age-btn .age-btn-range {
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
}
@media (max-width: 480px) {
    .money-buttons-row { grid-template-columns: 1fr; }
    .money-buttons-row .age-btn { min-height: 52px; font-size: 14px; }
}

/* ============================================================
   v2.5 — Form phone alert (siempre visible en el form)
   ============================================================ */
.form-phone-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF8E1;
    border: 1px solid #F5D78A;
    border-left: 4px solid #E8A53A;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    color: #5C4A1B;
}
.form-phone-alert__icon {
    flex-shrink: 0;
    color: #C7891E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.form-phone-alert__text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
    color: #5C4A1B;
}
.form-phone-alert__text strong { color: #4A3A14; }
.form-phone-alert--info {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-left: 4px solid #2563EB;
    color: #1E3A8A;
}
.form-phone-alert--info .form-phone-alert__icon { color: #2563EB; }
.form-phone-alert--info .form-phone-alert__text { color: #1E3A8A; }
.form-phone-alert--info .form-phone-alert__text strong { color: #1E3A8A; }

/* Fix: spacing entre dial-code y el input phone */
input#phone,
input#phone[type="tel"],
input.iti__tel-input#phone {
    padding-left: 85px !important;
}

/* ============================================================
   v2.5 — Live popups (registros en tiempo real)
   ============================================================ */
.live-popup-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.live-popup {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #E1E8EF;
    border-radius: 12px;
    padding: 10px 14px 10px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    min-width: 260px;
    max-width: 320px;
    opacity: 0;
    transform: translateX(-110%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.live-popup.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.live-popup.is-leaving {
    opacity: 0;
    transform: translateX(-110%);
}
.live-popup__avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live-popup__body { flex: 1; min-width: 0; }
.live-popup__title {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.25;
}
.live-popup__check { color: #16A34A; flex-shrink: 0; }
.live-popup__meta {
    margin: 0;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.2;
}
.live-popup__close {
    background: transparent;
    border: 0;
    font-size: 20px;
    line-height: 1;
    color: #9CA3AF;
    cursor: pointer;
    padding: 2px 4px;
    margin: -4px -2px -4px 4px;
    flex-shrink: 0;
}
.live-popup__close:hover { color: #4B5563; }
@media (max-width: 480px) {
    .live-popup-container {
        left: 10px;
        right: 10px;
        bottom: 80px;
    }
    .live-popup {
        min-width: 0;
        width: 100%;
        max-width: none;
    }
}
