html {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
}

.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;
}

/*  */
.vertical .answer-btn {
  margin-bottom: 6px;
  border-radius: 6px;
  background: #018cd4;
  padding: 12px 8px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
}

.vertical .answer-btn:hover {
  border: none;
  opacity: 0.9;
}

.answer-btn {
  background: #fff;
  padding: 14px 16px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 1px solid red;
  border-radius: 12px;
  min-height: 48px;
  cursor: pointer;
  touch-action: manipulation;
}
.vertical {
  padding-left: 8px;
  margin-bottom: 10px;
  justify-content: left;
  flex-direction: column;
}

.vertical {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.horizontal {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  padding-left: 8px;
}

.horizontal .answer-btn:not(:last-of-type) {
  margin-right: 6px;
}

.horizontal .answer-btn:hover {
  border: none;
  opacity: 0.9;
}

.horizontal .answer-btn {
  padding: 12px 40px;
  border-radius: 6px;
  background: #018cd4;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
}

.left-chat .chat-block2 {
  width: 100%;
  display: flex;
  line-height: 1.2;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  background: #018cd4;
  position: relative;
  border: 1px solid #d4dadd;
}

.right-chat .chat-block {
  border-radius: 6px;
  background: #dcf8c7;
  color: #000;
  padding: 8px 22px 22px 12px;
  position: relative;
  max-width: 84%;
  box-shadow: -1px 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.time,
.time-right {
  position: absolute;
  bottom: 8px;
  right: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.time {
  margin-left: 12px;
  margin-right: 12px;
  line-height: 12px;
}

.time-right {
  right: 10px;
  bottom: 6px;
}

.left-chat .chat-block {
  width: 100%;
  display: flex;
  line-height: 1.2;
  flex-direction: column;
  padding: 16px 16px 20px 16px;
  border-radius: 6px;
  background: #f9f9f9;
  position: relative;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.right-chat {
  margin-top: 10px;
  display: none;
  width: 100%;
  width: 100%;
  align-items: center;
  position: relative;
  justify-content: right;
  flex-direction: row-reverse;
}

.left-chat {
  margin-top: 10px;
  width: 100%;
  max-width: 85%;
  align-items: center;
  display: none;
  padding-left: 8px;
  position: relative;
  margin-bottom: 2px;
  justify-content: left;
  box-sizing: border-box;
  word-wrap: break-word;
}

.main-chat .chat_content {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.warn_content {
  background: #dffaff;
  border-radius: 25px;
  padding: 12px;
  color: #618195;
}

.date {
  margin: 15px auto;
  padding: 5px 20px;
  border-radius: 10px;
  background: #dbdfeb;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  color: #414350;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: fit-content;
}

.main-chat {
  width: 40%;
  padding: 0 16px;
  /* height: 86%; */
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 30px;
  margin: 0 auto;
  flex-grow: 1;
  scroll-behavior: smooth;
  max-width: 100%;
  box-sizing: border-box;
}

.online {
  color: #898989;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.024px;
  margin-top: -6px;
}

.logo_img {
  border-radius: 50%;
  background: #eceaea;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-right: 12px;
}

.header {
  width: 40%;
  margin: 0 auto;
  border-bottom: 1px solid #a4a39e;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  padding: 10px 0 5px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff0000 0%, #ff4444 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
  width: 0%;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Urgency Bar */
.urgency-bar {
  width: 100%;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border-left: 4px solid #ff6b00;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #664d03;
  margin-top: 8px;
  border-radius: 6px;
}

.urgency-pulse {
  width: 8px;
  height: 8px;
  background-color: #ff0000;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Live notification */
.live-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 90%;
  font-size: 14px;
}

.live-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.live-notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.live-notification-text {
  flex: 1;
}

.live-notification-name {
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.live-notification-action {
  color: #666;
  font-size: 13px;
}

.pattern-bg {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
}

.main-bg {
  background: url(../index/bg.webp) no-repeat center center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.intro-message {
  display: none;
}

/* Divs de botones - ocultos por defecto, full width cuando se muestran */
[class*="message-index-"]:not(.left-chat):not(.intro-message) {
  display: none;
  width: 100%;
  padding-left: 8px;
  box-sizing: border-box;
}

/* Typing indicator */
.typing-indicator {
  display: none;
  align-items: center;
  padding: 16px;
  margin-top: 10px;
  margin-left: 8px;
  width: fit-content;
  border-radius: 25px 25px 25px 0;
  background: #f9f9f9;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.typing-indicator span {
  height: 10px;
  width: 10px;
  background-color: #9e9ea1;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
  margin-right: 0;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Tablet and below */
@media (max-width: 900px) {
  .header {
    width: 100%;
    border-radius: 0 0 0 0;
  }

  .pattern-bg {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .main-chat {
    width: 100%;
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  .header {
    padding: 12px 8px;
  }

  .main-chat {
    padding: 0 12px;
  }

  .warn_content {
    padding: 10px;
    font-size: 13px;
  }

  .left-chat {
    padding-right: 15px;
  }

  .urgency-bar {
    font-size: 12px;
    padding: 6px 10px;
  }

  .live-notification {
    top: 10px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .live-notification-avatar {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .progress-text {
    font-size: 11px;
  }
}

/* Standard mobile phones */
@media (max-width: 480px) {
  .header {
    padding: 10px 6px;
  }

  .logo_img {
    width: 35px;
    margin-right: 8px;
  }

  .main-chat {
    padding: 0 8px;
  }

  .warn_content {
    padding: 8px;
    font-size: 12px;
  }

  .left-chat {
    padding-right: 10px;
    padding-left: 6px;
  }

  .date {
    font-size: 11px;
    padding: 4px 15px;
  }
}

/* Small mobile phones */
@media (max-width: 375px) {
  .header {
    padding: 8px 4px;
  }

  .logo_img {
    width: 32px;
    margin-right: 6px;
  }

  .main-chat {
    padding: 0 6px;
  }

  .left-chat .chat-block,
  .left-chat .chat-block2 {
    padding: 16px 16px 28px 16px;
    font-size: 15px;
  }

  .right-chat .chat-block {
    padding: 8px 22px 22px 12px;
    font-size: 14px;
  }

  .warn_content {
    padding: 8px;
    font-size: 11px;
  }
}

/* Landscape orientation optimization for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .pattern-bg {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header {
    padding: 8px 12px;
  }

  .main-chat {
    padding: 0 8px;
    padding-bottom: 15px;
  }

  .left-chat .chat-block,
  .left-chat .chat-block2 {
    padding: 10px 10px 28px 10px;
  }

  .right-chat .chat-block {
    padding: 8px 22px 22px 12px;
  }

  .date {
    margin: 10px auto;
    padding: 4px 15px;
    font-size: 11px;
  }

  .warn_content {
    padding: 8px;
    font-size: 12px;
  }

  .answer-btn {
    padding: 10px 14px;
    min-height: 40px;
  }
}

.pc {
  display: flex;
}

@media (max-width: 1280px) {
  .pc {
    display: none;
  }
}

.pc2 {
  display: flex;
}

@media (max-width: 600px) {
  .pc2 {
    display: none;
  }
}

#registro-dinamico {
  min-height: 2rem;
  max-width: 90%;
  text-align: center;
}

.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.fade-in {
  opacity: 1;
  transform: scale(1);
}

@keyframes pop {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pop {
  animation: pop 0.3s ease;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.z-alto {
  z-index: 1010;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  width: 80%;
  max-width: 700px;
  text-align: center;
  position: sticky;
}

.modal-loader {
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  gap: 4px;
  z-index: 9999px !important;
}

#form-modal {
  position: fixed;
  padding: 0em 44em;
  overflow-y: hidden;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9998;
}

#section2 {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.39) 0px 0px 14px;
  position: relative;
  width: 100%;
  text-align: center;
  color: #000;
  overflow: hidden;
  font-weight: 500;
  font-size: 1.2em;
  z-index: 1002;
  border-radius: 1em;
}

.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;
}

.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 16px;
  font-size: 16px;
  line-height: 2;
  color: #000000;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra hacia la derecha y abajo */
}
@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;
}

.iti__country-name {
  color: black;
}

.iti__selected-flag {
  border-radius: 5px;
  margin-left: 5px;
  pointer-events: none !important;
  cursor: default !important;
}

/* Hide flag dropdown arrow since country is locked */
.iti__arrow {
  display: none !important;
}

/* Prevent clicking on flag container */
.iti__flag-container {
  pointer-events: none !important;
  cursor: default !important;
}

.iti {
  width: 100% !important;
}

.modalwhitw .intgrtn-btn-submit {
  background-color: #c51313 !important;
  -webkit-box-shadow: #c51313 0 0 0 0;
  box-shadow: #c51313 0 0 0 0;
  border: #c51313 solid 1px;
}

.intgrtn-btn-submit:disabled {
  opacity: 0.5; /* Visualmente indica que está deshabilitado */
  animation: none;
}

.intgrtn-btn-go-to-step,
.intgrtn-btn-submit {
  font-weight: 700;
  width: 100%;
  border-radius: 5px;
  background: #0c4e6f;
  color: #fff;
  padding: 16px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 56px;
  cursor: pointer;
  touch-action: manipulation;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.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 {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.15) 0%,
    rgba(185, 28, 28, 0.15) 100%
  );
  border-left: 3px solid #ef4444;
  color: #ffffff;
  font-size: 11px;
  position: relative;
  padding: 8px 12px;
  margin-top: 8px;
  display: none;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.3s ease-out;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iti__search-input {
  display: none;
}

/* Ocultar los iconos por defecto */
.input-status-check,
.input-status-error {
  display: none;
  position: absolute;
  right: 20px; /* 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: 47%;
  color: green;
}

.input-status-error {
  top: 35%;
  color: red;
}

.intgrtn-input-holder.intgrtn-input-holder-phone span.input-status-error {
  top: 23%;
}
.intgrtn-input-holder2.intgrtn-input-holder-phone span.input-status-error {
  top: 23%;
}

.intgrtn-input-holder.intgrtn-input-holder-phone span.input-status-check {
  top: 47%;
}

.intgrtn-input-holder2.intgrtn-input-holder-phone span.input-status-check {
  top: 47%;
}

/* Fix icon positioning on mobile */
@media (max-width: 480px) {
  .input-status-check,
  .input-status-error {
    right: 15px;
    font-size: 16px;
  }

  .intgrtn-input-holder.intgrtn-input-holder-phone span.input-status-error,
  .intgrtn-input-holder2.intgrtn-input-holder-phone span.input-status-error {
    top: 25%;
    right: 15px;
  }

  .intgrtn-input-holder.intgrtn-input-holder-phone span.input-status-check,
  .intgrtn-input-holder2.intgrtn-input-holder-phone span.input-status-check {
    top: 48%;
    right: 15px;
  }
}

.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(../index/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;
}
