/* Nabvar Styles */
body.posmovi-no-scroll {
  position: fixed !important;
  width: 100% !important;
  left: 0;
}
.posmovi-header {
  background-color: #000000;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.posmovi-header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}
.posmovi-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.posmovi-nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.posmovi-logo {
  height: 40px;
  width: auto;
}
.posmovi-main-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  align-items: center;
}
.has-submenu {
  position: relative;
}
.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.submenu-indicator {
  font-size: 0.6em;
  transition: transform 0.3s ease;
}
.submenu {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e293b;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.submenu li a {
  padding: 0.75rem 1.5rem;
  display: block;
  white-space: nowrap;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.submenu li a:hover {
  background-color: rgba(56, 189, 248, 0.15);
}
.tablet-link {
  display: none;
}
.posmovi-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.posmovi-nav-link:hover,
.posmovi-nav-link.active {
  background-color: rgba(56, 189, 248, 0.15);
  color: #fff !important;
}
.posmovi-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.posmovi-demo-btn {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid #38bdf8;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  display: none;
}
.posmovi-demo-btn:hover {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
  text-decoration: none !important;
}
.posmovi-contact-btn {
  background-color: #25d366;
  color: #ffffff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.posmovi-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  animation: none;
  text-decoration: none !important;
}
.posmovi-contact-btn:hover span,
.posmovi-contact-btn:hover i {
  color: #ffffff !important;
}
.posmovi-hamburger-btn {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.posmovi-hamburger-btn.open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.posmovi-hamburger-btn.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.posmovi-hamburger-btn.open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.posmovi-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #000000;
  transform: translateY(-120%);
  transition: transform 0.35s ease-in-out;
  z-index: 999;
  padding-top: 0;
  overflow-y: auto;
}
.posmovi-mobile-menu.open {
  transform: translateY(0);
}
.posmovi-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.posmovi-mobile-menu-list li {
  margin: 0;
}
.has-submenu-mobile .submenu-mobile {
  list-style: none;
  padding-left: 0;
  display: none;
  background-color: #1a2742;
}
.has-submenu-mobile.open > .submenu-mobile {
  display: block;
}
.submenu-mobile li a {
  font-size: 16px !important;
  padding-left: 4.5rem !important;
}
.posmovi-mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}
.posmovi-mobile-nav-link i {
  margin-right: 18px;
  width: 22px;
  text-align: center;
  font-size: 20px;
  color: #38bdf8;
}
.mobile-buttons-wrapper {
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 18px 24px;
}
.posmovi-demo-btn-mobile {
  text-decoration: none;
  font-weight: bold;
  background: transparent;
  display: block;
}
.posmovi-demo-btn-mobile:hover span {
  background: linear-gradient(45deg, #38bdf8, #7dd3fc);
}
.posmovi-demo-btn-mobile span {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  border-radius: 50px;
  color: #fff;
  transition: background 0.2s ease;
}
.posmovi-demo-btn-mobile span i {
  margin-right: 12px;
  color: #fff;
}
@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (min-width: 768px) {
  .posmovi-main-menu {
    display: flex;
  }
  .has-submenu {
    display: list-item;
  }
  .posmovi-hamburger-btn {
    display: none;
  }
  .posmovi-contact-btn {
    padding: 0.6rem 1.2rem;
  }
  .posmovi-contact-btn span {
    display: inline;
  }
  .posmovi-contact-btn i {
    font-size: 1rem;
  }
  .posmovi-nav-actions {
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .posmovi-main-menu {
    gap: 2rem;
  }
  .posmovi-demo-btn {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .posmovi-nav-actions {
    gap: 0.5rem;
  }
  .posmovi-logo {
    max-height: 32px;
  }
  .posmovi-menu-container {
    display: none;
  }
  .posmovi-hamburger-btn {
    display: block;
  }
  .posmovi-demo-btn {
    display: none;
  }
  .posmovi-contact-btn {
    background-color: #25d366;
    animation: none;
    padding: 0.5rem 0.8rem;
    height: auto;
  }
  .posmovi-contact-btn span {
    display: none;
  }
  .posmovi-contact-btn i {
    display: inline-block;
    font-size: 1.2rem;
  }
}
/* End of Navbar Styles */

/* Start of Solicitud de Licencia */
#register-form-section {
  background-image: url("https://www.posmovi.com/wp-content/uploads/2025/10/Posmovi-Register-License.webp");
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  padding: 1.1rem 1rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
#register-form-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #0f172a, transparent);
  z-index: 1;
  pointer-events: none;
}
.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
}
.form-container {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  background: radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.15),
      transparent 50%
    ),
    linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.form-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1rem 1.5rem;
  background: radial-gradient(
    circle at top center,
    rgba(56, 189, 248, 0.1),
    transparent 70%
  );
}
.form-header-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.form-header-text {
  display: flex;
  flex-direction: column;
}
.form-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}
.form-subtitle {
  margin: 0.25rem 0 0 0;
  color: #94a3b8;
  font-size: 0.85rem;
}
#dynamic-word {
  font-weight: 600;
  transition: opacity 0.5s ease-in-out;
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.progress-rail {
  width: auto;
  margin: 0 2rem;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.progress-bar {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #a78bfa, #38bdf8);
  background-size: 300% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}
.animate-shimmer {
  position: relative;
  overflow: hidden;
}
.animate-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(35deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(300%) rotate(35deg);
    opacity: 0;
  }
}
.stepper-wrapper {
  padding: 1rem 1.5rem;
  position: relative;
}
.stepper-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}
.stepper-progress-bar {
  position: absolute;
  top: 2.7rem;
  left: calc(2rem + 1.25rem);
  height: 2px;
  width: calc(100% - 4rem - 2.5rem);
  z-index: 2;
  overflow: hidden;
  background-color: rgba(56, 189, 248, 0.2);
}
.stepper-progress {
  height: 100%;
  width: 0%;
  background-color: transparent;
  transition: width 0.4s ease-in-out;
}
.stepper-item {
  display: flex;
  align-items: center;
  text-align: left;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  background-color: transparent;
}
.stepper-item.active {
  opacity: 1;
}
.stepper-item.completed {
  opacity: 1;
}
.stepper-item.navigable {
  cursor: pointer;
}
.stepper-item.completed .stepper-icon {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 0 15px 3px rgba(34, 197, 94, 0.5);
}
.stepper-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #0f172a;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
.stepper-item.active .stepper-icon {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px 3px rgba(56, 189, 248, 0.4);
  border-color: #38bdf8;
}
.stepper-label h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.stepper-label p {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
}
form {
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.25rem;
}
#step-1 .form-grid {
  gap: 0.5rem 1.25rem;
}
.form-group {
  flex: 1 1 100%;
  margin-bottom: 0.1rem;
}

#step-1 .form-group {
  margin-bottom: 0.1rem;
}
.form-group label {
  display: flex;
  min-height: 0;
  height: auto;
  margin-bottom: 0.18rem;
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.85rem;
}
#step-2 .form-group label i {
  margin-left: 8px;

}

/*
  Evita que el formulario “salte” cuando aparecen errores.
  En lugar de `display:none`, reservamos un alto pequeño y ocultamos el texto.
*/
.form-group .field-error {
  min-height: 0.72rem;
}

.form-group .field-error:empty {
  visibility: hidden;
}

.form-group-terms {
  margin-top: 0;
  margin-bottom: 0;
}

.terms-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms-link,
.terms-link:visited {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.terms-link:hover,
.terms-link:focus {
  color: #ffffff;
  text-decoration: none;
}

.form-group-terms .field-error {
  margin-top: 0.15rem;
}

/*
  Nota: `.form-group label` es más específico que `.terms-switch` y define `height:auto`.
  Como el slider es `position:absolute` y el input está oculto, el label puede colapsar y el
  switch queda invisible. Por eso forzamos dimensiones con un selector más específico.
*/
.form-group-terms .terms-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  min-height: 28px;
  flex: 0 0 auto;
  margin: 0;
  line-height: 0;
}

.terms-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.terms-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}


.terms-slider:hover {
  border-color: rgba(56, 189, 248, 0.55);
}

.terms-slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  top: 2px;
  border-radius: 50%;
  background: rgba(226, 232, 240, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%2364748b' stroke-width='2.4' stroke-linecap='round' d='M6 6l8 8M14 6l-8 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: transform 0.2s ease, background 0.2s ease, background-image 0.2s ease;
}

.terms-switch input:checked + .terms-slider {
  background: rgba(56, 189, 248, 0.22);
  border-color: rgba(56, 189, 248, 0.75);
}

.terms-switch input:focus-visible + .terms-slider {
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35);
}

.terms-switch input:checked + .terms-slider::before {
  transform: translateX(23px);
  background: rgba(56, 189, 248, 0.98);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.5l3.2 3.3L15.5 6.7'/%3E%3C/svg%3E");
}

.form-group .field-error {
  margin-top: 0.05rem;
  line-height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ef4444;
  font-size: 0.8rem;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select {
  box-sizing: border-box;
  width: 100%;
  padding: 0.58rem 0.9rem 0.58rem 2.35rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[required]:not(:placeholder-shown):valid {
  border-color: #22c55e;
}
.form-group select {
  padding: 0.58rem 0.9rem;
  color-scheme: dark;
}
#company_phone_content input,
#user_phone_content input,
#user_whatsapp_phone_content input {
  padding-left: 15px;
}

.form-help-sales {
  display: flex;
  align-items: flex-end;
}

.sales-help-card {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.62rem 0.75rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(15, 23, 42, 0.34));
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 12px;
}

.sales-help-copy span {
  display: block;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
}

.sales-help-copy p {
  margin: 0.16rem 0 0;
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.25;
}

.sales-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  padding: 0.54rem 0.78rem;
  background: transparent;
  border: 1px solid #1fb85a;
  color: #1fb85a;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sales-help-button:hover,
.sales-help-button:focus {
  background: transparent;
  color: #1fb85a;
  text-decoration: none;
  box-shadow: none;
}

.form-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #0f172a inset !important;
  -webkit-text-fill-color: #ffffff !important;
}
.iti {
  width: 100%;
}
.iti__selected-dial-code {
  color: #ffffff !important;
  opacity: 1 !important;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3);
}
.input-with-icon {
  position: relative;
}
.input-with-icon .fa,
.input-with-icon .fas,
.input-with-icon .fab {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.input-with-icon.has-toggle input {
  padding-right: 2.75rem;
}

.input-with-icon .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}

.input-with-icon .toggle-password:focus {
  outline: none;
}

.form-group input.error,
.form-group input[required]:not(:placeholder-shown):invalid {
  border-color: #ef4444;
}

.form-group select.error {
  border-color: #ef4444;
}

.btn-next:disabled,
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}
.form-step-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.85rem;
  flex-grow: 1;
}
.form-step-info i {
  color: #38bdf8;
  font-size: 1.2rem;
}
.form-step-info p {
  margin: 0;
  transition: opacity 0.5s ease-in-out;
}
.btn-next,
.btn-prev,
.btn-submit {
  border: none;
  padding: 0.62rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-next,
.btn-submit {
  background: linear-gradient(90deg, #0284c7 0%, #7dd3fc 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.25);
}
.btn-next:active {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.9);
}
.btn-prev {
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #ffffff;
}
.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}
.btn-prev:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
}
.form-step {
  display: none;
  animation: stepFadeIn 0.5s ease;
}
@keyframes stepFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.chosen-container-single .chosen-single {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 0.58rem 0.9rem !important;
  height: auto !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #38bdf8 !important;
}
.chosen-container-single .chosen-single div b {
  background-position: 0 10px !important;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 10px !important;
}
.chosen-container .chosen-drop {
  background: #0f172a !important;
  border: 1px solid #38bdf8 !important;
  border-top: 0 !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
  margin-top: -1px;
}
.chosen-container .chosen-results {
  color: #ffffff !important;
}
.chosen-container .chosen-results li {
  padding: 8px 15px !important;
}
.chosen-container .chosen-results .highlighted {
  background-color: #38bdf8 !important;
  background-image: none !important;
  color: #fff !important;
}
.chosen-container .chosen-results .no-results {
  background: transparent !important;
  color: #94a3b8 !important;
}
.chosen-container-single .chosen-search input[type="text"] {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
}
.form-group .chosen-container + select {
  display: none !important;
}
.iti__country-list {
  background-color: #0f172a !important;
  border: 1px solid #38bdf8 !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.iti__country.iti__highlight {
  background-color: #38bdf8 !important;
}
.iti__country:hover {
  background-color: rgba(56, 189, 248, 0.5) !important;
}
.iti__search-input {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
  color: #ffffff !important;
}
.iti__country-list::-webkit-scrollbar {
  width: 8px;
}
.iti__country-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.iti__country-list::-webkit-scrollbar-thumb {
  background-color: #38bdf8;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.swal-modal {
  background-color: #0f172a;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
.swal-title {
  color: #ffffff;
}
.swal-text {
  color: #94a3b8;
  display: block;
  margin: 0 auto;
  max-width: 420px;
  text-align: center;
}
.swal-content__input {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #ffffff;
  border-radius: 12px;
}
.swal-content__input:focus {
  border-color: #38bdf8;
}
.swal-button {
  background-color: #38bdf8;
  color: #fff;
  border: none;
  box-shadow: none;
  padding: 10px 24px;
  border-radius: 12px;
}
.swal-button--confirm {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
}
.swal-button:not([disabled]):hover {
  background: linear-gradient(135deg, #7dd3fc 0%, #0284c7 100%);
}
.swal-icon--success {
  border-color: #22c55e;
}
.swal-icon--success:after,
.swal-icon--success:before,
.swal-icon--success__hide-corners {
  background: 0 0 !important;
}
.swal-icon--success__ring {
  border-color: #22c55e;
}
.swal-icon--success__line {
  background-color: #22c55e;
}
.swal-icon--error {
  border-color: #f27474;
}
.swal-icon--error__x-mark {
  background-color: #f27474;
}
.swal-icon--warning {
  border-color: #facea8;
}
.swal-icon--warning__body,
.swal-icon--warning__dot {
  background-color: #facea8;
}
.help-icon {
  color: #60a5fa;
  margin-left: 8px;
  cursor: help;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.help-icon:hover {
  color: #7dd3fc;
}
.custom-tooltip {
  position: absolute;
  background-color: #f0f9ff;
  color: #0c4a6e;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  transform: translateY(10px);
  border: 1px solid #e0f2fe;
}
.custom-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #f0f9ff transparent transparent transparent;
}
.custom-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.post-submission-contact {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  max-width: 880px;
  width: 100%;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  position: relative;
  z-index: 2;
}
.post-submission-contact p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #1fb85a !important;
  border: 1px solid #1fb85a;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.whatsapp-button:hover {
  transform: translateY(-2px) scale(1.05);
  background-color: rgba(31, 184, 90, 0.08);
  box-shadow: 0 6px 20px rgba(31, 184, 90, 0.18);
  color: #1fb85a !important;
  text-decoration: none;
}
.whatsapp-button:focus {
  color: #1fb85a !important;
  text-decoration: none;
}
@media (max-width: 768px) {
  .form-step-info {
    display: none;
  }
  .form-actions {
    justify-content: flex-end;
  }
}
@media (max-width: 640px) {
  .stepper-label {
    display: none;
  }
  .stepper-item {
    justify-content: center;
  }
  .stepper-icon {
    margin-right: 0;
  }
  .sales-help-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .sales-help-button {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .form-group {
    flex-basis: calc(50% - 0.75rem);
  }
}
/* End of Solicitud de Licencia */

/* Descarga App */
:root {
  --posmovi-text-primary: #ffffff;

  --posmovi-text-secondary: #e2e8f0;

  --posmovi-accent-primary: #38bdf8;

  --posmovi-accent-gradient: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);

  --posmovi-glass-bg: rgba(56, 189, 248, 0.08);

  --posmovi-glass-border: rgba(56, 189, 248, 0.2);

  --posmovi-glow: rgba(56, 189, 248, 0.3);
}

.posmovi-app-section {
  position: relative;

  background-image: url("https://www.posmovi.com/wp-content/uploads/2025/08/Descargar-Posmovi-Punto-Venta.webp");

  background-color: #0a0a0a;

  background-size: cover;

  background-position: center;

  background-attachment: fixed;

  padding: 60px 20px;

  display: flex;

  align-items: center;

  overflow: hidden;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  border-bottom: 1px solid #0a0f1c;
}

.posmovi-app-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(10, 10, 10, 0.75);

  z-index: 1;
}

.posmovi-top-glow {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.8) 50%,
    transparent 100%
  );

  z-index: 2;
}

.posmovi-app-container {
  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr;

  gap: 40px;

  align-items: center;

  position: relative;

  z-index: 2;
}

.posmovi-app-content {
  text-align: left;

  animation: posmoviFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.posmovi-app-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.1) 0%,
    rgba(56, 189, 248, 0.05) 100%
  );

  border: 1px solid rgba(56, 189, 248, 0.2);

  border-radius: 50px;

  padding: 8px 16px;

  margin-bottom: 20px;

  color: var(--posmovi-accent-primary);

  font-size: 0.9rem;

  font-weight: 600;
}

.posmovi-app-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);

  font-weight: 800;

  line-height: 1.3;

  margin-bottom: 16px;

  color: var(--posmovi-text-primary);

  letter-spacing: -0.02em;

  text-align: left;

  white-space: nowrap;
}

.posmovi-title-highlight {
  background: var(--posmovi-accent-gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
}

.posmovi-app-subtitle {
  font-size: 1.4rem;

  line-height: 1.7;

  color: var(--posmovi-text-secondary);

  margin-bottom: 32px;

  max-width: 600px;

  text-align: left;
}

.posmovi-platform-pills {
  display: flex;

  flex-wrap: wrap;

  gap: 24px;

  justify-content: flex-start;

  align-items: center;

  margin-bottom: 32px;
}

.posmovi-platform-pill {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 1.1rem;

  font-weight: 500;

  color: rgba(255, 255, 255, 0.9);
}

.posmovi-platform-pill i {
  font-size: 1.2rem;

  color: var(--posmovi-accent-primary);
}

.posmovi-feature-separator {
  width: 1px;

  height: 20px;

  background-color: rgba(255, 255, 255, 0.3);
}

.posmovi-download-buttons {
  display: flex;

  flex-direction: row;

  flex-wrap: wrap;

  gap: 16px;

  align-items: center;

  margin-bottom: 32px;
}

.posmovi-download-btn {
  display: block;

  text-decoration: none;

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  border-radius: 12px;

  overflow: hidden;
}

.posmovi-download-btn:hover {
  transform: translateY(-6px) scale(1.05);

  filter: drop-shadow(0 12px 30px var(--posmovi-glow));
}

.posmovi-download-btn img {
  width: auto;

  height: 60px;

  display: block;
}

.posmovi-browser-support {
  text-align: left;
}

.posmovi-support-label {
  display: block;

  font-size: 1.1rem;

  color: var(--posmovi-text-primary);

  margin-bottom: 16px;

  font-weight: 600;
}

.posmovi-browser-info {
  display: flex;

  align-items: center;

  gap: 15px;

  background: var(--posmovi-glass-bg);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  border: 1px solid var(--posmovi-glass-border);

  border-radius: 12px;

  padding: 12px 18px;

  width: fit-content;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.posmovi-browser-info:hover {
  border-color: var(--posmovi-accent-primary);

  transform: translateY(-2px);
}

.posmovi-browser-icons {
  display: flex;

  gap: 12px;

  font-size: 1.4rem;
}

.posmovi-browser-icons .fa-chrome {
  color: #db4437;
}

.posmovi-browser-icons .fa-safari {
  color: #007aff;
}

.posmovi-browser-icons .fa-firefox-browser {
  color: #ff7139;
}

.posmovi-browser-icons .fa-edge {
  color: #0078d7;
}

.posmovi-browser-icons .posmovi-recommended {
  transform: scale(1.15);

  filter: drop-shadow(0 0 8px rgba(255, 113, 57, 0.4));
}

.posmovi-browser-info span {
  color: var(--posmovi-text-secondary);

  font-size: 0.9rem;

  font-weight: 500;

  white-space: nowrap;
}

.posmovi-browser-info span strong {
  color: #ff7139;

  font-weight: 600;
}

.posmovi-app-image-container {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  animation: posmoviFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.posmovi-glass-frame:hover {
  transform: translateY(-8px);
}

.posmovi-app-image {
  width: 100%;

  max-width: 480px;

  height: auto;

  display: block;

  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.posmovi-glass-frame:hover .posmovi-app-image {
  transform: scale(1.02);
}

.posmovi-image-glow {
  position: absolute;

  top: 50%;

  left: 50%;

  width: 80%;

  height: 80%;

  background: radial-gradient(circle, var(--posmovi-glow) 0%, transparent 70%);

  transform: translate(-50%, -50%);

  z-index: -1;

  filter: blur(40px);

  animation: posmovi-glow-pulse 4s ease-in-out infinite;
}

@keyframes posmovi-glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes posmoviFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .posmovi-app-container {
    text-align: center;
  }

  .posmovi-app-content {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .posmovi-app-title,
  .posmovi-app-subtitle,
  .posmovi-browser-support,
  .posmovi-support-label {
    text-align: center;
  }

  .posmovi-app-title {
    white-space: normal;
  }

  .posmovi-app-badge,
  .posmovi-browser-info {
    margin-left: auto;

    margin-right: auto;

    margin-bottom: 20px;
  }

  .posmovi-app-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .posmovi-platform-pills,
  .posmovi-download-buttons {
    justify-content: center;
  }

  .posmovi-app-image {
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .posmovi-app-container {
    grid-template-columns: 1fr 1fr;

    gap: 40px;
  }

  .posmovi-app-image {
    max-width: 600px;
  }

  .posmovi-app-content,
  .posmovi-app-title,
  .posmovi-app-subtitle,
  .posmovi-browser-support,
  .posmovi-support-label {
    text-align: left;
  }

  .posmovi-app-badge,
  .posmovi-browser-info {
    margin-left: 0;
    margin-right: 0;
  }

  .posmovi-platform-pills,
  .posmovi-download-buttons {
    justify-content: flex-start;
  }
}

@media (min-width: 1200px) {
  .posmovi-app-image {
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  .posmovi-platform-pills {
    flex-direction: column;
    align-items: center;
  }

  .posmovi-feature-separator {
    display: none;
  }
}
/* End of Descarga App */

/* Modulos Section */
@keyframes posmovi-float-particles {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}
.posmovi-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(56, 189, 248, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(56, 189, 248, 0.12) 1.5px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 10% 70%,
      rgba(56, 189, 248, 0.04) 2.5px,
      transparent 2.5px
    );
  background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px, 200px 200px;
  animation: posmovi-float-particles 40s infinite linear;
  opacity: 0.8;
}
.posmovi-modules-section {
  width: 100%;
  padding: 60px 0;
  position: relative;
  background: linear-gradient(135deg, #0a0f1c 0%, #111827 50%, #1f2937 100%);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", sans-serif;
  border-top: 1px solid rgba(56, 189, 248, 0.3);
}
.posmovi-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.8) 50%,
    transparent 100%
  );
  z-index: 0;
}
.posmovi-modules-badge span {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.25),
    rgba(56, 189, 248, 0.15)
  );
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}
.posmovi-modules-badge span:hover {
  background-color: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}
.posmovi-modules-header {
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
  z-index: 2;
}
.posmovi-modules-main-title {
  color: #ffffff;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.posmovi-modules-highlight {
  background: linear-gradient(135deg, #0ea5e9 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.posmovi-modules-subtitle {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}
.posmovi-modules-carousel-container {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: grab;
  z-index: 2;
}
.posmovi-modules-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  padding: 30px 0;
}
.posmovi-modules-carousel-track {
  display: flex;
  height: 100%;
  gap: 16px;
  will-change: transform;
}
.posmovi-modules-carousel-slide {
  flex: 0 0 auto;
  width: 280px;
  height: 440px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(56, 189, 248, 0.2);
  z-index: 1;
  backdrop-filter: blur(10px);
}
.posmovi-modules-carousel-slide:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
  z-index: 10;
}
.posmovi-modules-slide-image {
  width: 100%;
  height: 290px !important;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.posmovi-modules-slide-content {
  padding: 25px 25px 30px 25px !important;
  position: relative;
  z-index: 2;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.posmovi-modules-slide-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.posmovi-modules-slide-description {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 100%;
}
.posmovi-modules-carousel-info {
  text-align: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .posmovi-modules-badge span {
    font-size: 1rem;
    padding: 12px 24px;
    margin-bottom: 24px;
  }
  .posmovi-modules-main-title {
    font-size: clamp(1.3rem, 4vw, 1.9rem);
  }
  .posmovi-modules-carousel-wrapper {
    height: 600px;
  }
  .posmovi-modules-carousel-slide {
    width: 320px;
    height: 500px;
  }
  .posmovi-modules-slide-image {
    height: 330px !important;
  }
  .posmovi-modules-slide-content {
    padding: 18px 20px 35px 20px !important;
  }
}
@media (min-width: 1200px) {
  .posmovi-modules-main-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  }
  .posmovi-modules-carousel-wrapper {
    height: 680px;
  }
  .posmovi-modules-carousel-slide {
    width: 420px;
    height: 580px;
  }
  .posmovi-modules-slide-image {
    height: 420px !important;
  }
  .posmovi-modules-slide-content {
    padding: 20px 24px 40px 24px !important;
  }
  .posmovi-modules-carousel-track {
    gap: 24px;
  }
  .posmovi-modules-slide-title {
    font-size: 1.35rem;
  }
  .posmovi-modules-slide-description {
    font-size: 0.95rem;
  }
}
/* End of Modulos Section */
/* Facturacion Section */
.facturacion-movil-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #111827;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://www.posmovi.com/wp-content/uploads/2025/08/Banner-Posmovi.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.facturacion-movil-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.7) 50%,
    transparent 100%
  );
  opacity: 0.8;
  z-index: 2;
}
.facturacion-movil-fade-top,
.facturacion-movil-fade-bottom {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  pointer-events: none;
  z-index: 0;
}
.facturacion-movil-fade-top {
  top: 0;
  background: linear-gradient(to bottom, #111827 0%, transparent 100%);
}
.facturacion-movil-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, #111827 0%, transparent 100%);
}
.facturacion-movil-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
}
.facturacion-movil-text-content {
  text-align: center;
  max-width: 800px;
}
.facturacion-movil-badge span {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2),
    rgba(56, 189, 248, 0.1)
  );
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: #38bdf8;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 25px;
}
.facturacion-movil-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}
.facturacion-movil-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.facturacion-movil-description {
  color: #ffffff;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto;
}
.facturacion-movil-mockup-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 580px;
}
.facturacion-view-switcher {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.facturacion-view-switcher button {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}
.facturacion-view-switcher button:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  color: #ffffff;
  transform: translateY(-2px);
}
.facturacion-view-switcher button.active {
  background: linear-gradient(135deg, #0369a1 0%, #38bdf8 100%);
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}
.mockup-view {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.mockup-view.active {
  display: flex;
}
.facturacion-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.facturacion-phone-frame {
  width: 14rem;
  height: 28rem;
  background-image: linear-gradient(to bottom, #dbeafe, #bfdbfe);
  border: 1px solid #93c5fd;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  position: relative;
  box-shadow: 1rem 1rem 6rem rgba(0, 0, 0, 0.4), 0 0 0.1rem rgba(0, 0, 0, 0.4);
  transform: rotate(3deg);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0 auto;
  flex-shrink: 0;
}
.facturacion-phone-frame:hover {
  transform: rotate(0deg) scale(1.05);
}
.facturacion-side-button {
  background-image: linear-gradient(to right, #a3a3a3, #93c5fd, #93c5fd);
  border: 1px solid #dbeafe;
  position: absolute;
  box-shadow: inset 2px 0 1px rgba(0, 0, 0, 0.2);
}
.facturacion-button-vol-up {
  width: 0.25rem;
  height: 1.25rem;
  border-radius: 0 0.1rem 0.1rem 0;
  left: -0.25rem;
  top: 20%;
  border-left-width: 1px;
}
.facturacion-button-vol-down {
  width: 0.25rem;
  height: 2.5rem;
  border-radius: 0 0.1rem 0.1rem 0;
  left: -0.25rem;
  top: 28%;
  border-left-width: 1px;
}
.facturacion-button-silence {
  width: 0.25rem;
  height: 2.5rem;
  border-radius: 0 0.1rem 0.1rem 0;
  left: -0.25rem;
  top: 38%;
  border-left-width: 1px;
}
.facturacion-button-power {
  width: 0.25rem;
  height: 5rem;
  border-radius: 0 0.1rem 0.1rem 0;
  right: -0.25rem;
  top: 30%;
  border-right-width: 1px;
}
.facturacion-phone-bezel {
  height: 100%;
  width: 100%;
  background-color: #000;
  border-radius: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.facturacion-phone-screen {
  height: 100%;
  width: 100%;
  background-color: #000;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.facturacion-phone-screen video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 2.4rem;
}
.facturacion-screen-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.facturacion-dynamic-island {
  width: 5rem;
  height: 1.4rem;
  background-color: #000;
  margin-top: 0.5rem;
  border-radius: 9999px;
}
.ipadBox {
  --sizeVar: clamp(320px, 80vw, 520px);
  --boxHFactor: 0.77;
  position: relative;
  width: var(--sizeVar);
  height: calc(var(--sizeVar) * var(--boxHFactor));
  background: #121212;
  border-radius: calc(var(--sizeVar) / 24);
  box-shadow: 0 0 0 calc(var(--sizeVar) / 200) #9d9ea0;
  user-select: none;
  margin: 0 auto;
}
.ipadBox::before,
.ipadBox::after {
  content: "";
  position: absolute;
  width: 4%;
  height: 1%;
  left: 6%;
  top: -1.2%;
  border-radius: calc(var(--sizeVar) / 24) calc(var(--sizeVar) / 24) 0 0;
  background: #8a8a8a;
}
.ipadBox::after {
  left: 11%;
}
.powerButton {
  position: absolute;
  height: 7%;
  left: calc(var(--sizeVar) * -0.015);
  top: 5%;
  padding: 0;
  border: none;
  outline: none;
  color: transparent;
  background: #8a8a8a;
  border-radius: calc(var(--sizeVar) / 24) 0 0 calc(var(--sizeVar) / 24);
  pointer-events: none;
}
.ipadScreen {
  position: absolute;
  width: 94%;
  height: 92%;
  top: 4%;
  left: 3%;
  border-radius: calc(var(--sizeVar) / 40);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ipadScreen > video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
  border-radius: calc(var(--sizeVar) / 45);
}

@media (min-width: 480px) {
  .facturacion-phone-frame {
    width: 15rem;
    height: 30rem;
  }
  .ipadBox {
    --sizeVar: clamp(360px, 75vw, 480px);
  }
  .facturacion-movil-container {
    gap: 35px;
  }
  .facturacion-movil-mockup-content {
    min-height: 600px;
  }
}

@media (min-width: 768px) {
  .facturacion-movil-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
  }
  .facturacion-phone-frame {
    width: 16rem;
    height: 32rem;
  }
  .facturacion-phone-wrapper {
    padding: 30px;
  }
  .ipadBox {
    --sizeVar: clamp(420px, 65vw, 520px);
  }
  .facturacion-movil-container {
    gap: 40px;
  }
  .facturacion-movil-mockup-content {
    min-height: 640px;
  }
}

@media (min-width: 1024px) {
  .facturacion-movil-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .facturacion-movil-text-content {
    text-align: left;
    max-width: none;
  }
  .facturacion-movil-description {
    margin: 0;
  }
  .facturacion-phone-frame {
    width: 17rem;
    height: 34rem;
  }
  .ipadBox {
    --sizeVar: clamp(350px, 40vw, 480px);
  }
  .facturacion-movil-mockup-content {
    min-height: 650px;
  }
}

@media (min-width: 1200px) {
  .facturacion-movil-title {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  }
  .facturacion-movil-container {
    gap: 60px;
  }
  .ipadBox {
    --sizeVar: clamp(400px, 45vw, 520px);
  }
  .facturacion-movil-mockup-content {
    min-height: 650px;
  }
}
/* Ruteo Section */
.posmovi-ruteo-section {
  --sizeVar-ruteo: clamp(300px, 85vw, 900px);
  --boxHFactor-ruteo: 0.77;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #111827;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.posmovi-ruteo-section .posmovi-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.8) 50%,
    transparent 100%
  );
  z-index: 2;
}

.posmovi-ruteo-section .posmovi-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(56, 189, 248, 0.25) 1.5px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    );
  background-size: 100px 100px, 150px 150px;
  animation: ruteo-float-particles 15s infinite linear;
}

@keyframes ruteo-float-particles {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(30px);
  }
}

.posmovi-ruteo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.posmovi-ruteo-text-content {
  margin-bottom: 50px;
}

.posmovi-ruteo-badge span {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.25),
    rgba(56, 189, 248, 0.15)
  );
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.posmovi-ruteo-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.posmovi-ruteo-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.posmovi-ruteo-description {
  color: #ffffff;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.ruteo-ipadBox {
  position: relative;
  width: var(--sizeVar-ruteo);
  height: calc(var(--sizeVar-ruteo) * var(--boxHFactor-ruteo));
  background: #121212;
  border-radius: calc(var(--sizeVar-ruteo) / 24);
  box-shadow: 0 0 0 calc(var(--sizeVar-ruteo) / 200) #9d9ea0;
  user-select: none;
  z-index: 5;
  transition: height 0.3s ease-in-out;
}

.ruteo-ipadScreen {
  position: absolute;
  width: 95%;
  height: 93.6%;
  top: 3.2%;
  left: 2.5%;
  border-radius: calc(var(--sizeVar-ruteo) / 40);
  background: #000;
  overflow: hidden;
}

.ruteo-ipadScreen > video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 767px) {
  .posmovi-ruteo-section {
    padding: 60px 15px;
  }
}
/* End of Ruteo Section */
/* PosOffline Section */
.posmovi-offline-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #111827;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.posmovi-offline-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.7) 50%,
    transparent 100%
  );
  opacity: 0.8;
}
.posmovi-offline-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(56, 189, 248, 0.15) 1.5px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.1) 2px,
      transparent 2px
    );
  background-size: 120px 120px, 180px 180px;
  animation: offline-float-particles 20s infinite linear;
}
@keyframes offline-float-particles {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(25px) translateX(-25px);
  }
}
.posmovi-offline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.posmovi-offline-text-content {
  text-align: center;
}
.posmovi-offline-badge span {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2),
    rgba(56, 189, 248, 0.1)
  );
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: #38bdf8;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 25px;
}
.posmovi-offline-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}
.posmovi-offline-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.posmovi-offline-description {
  color: #ffffff;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}
.offline-features-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.offline-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  flex: 1;
  max-width: 100px;
  text-align: center;
}
.offline-feature-item svg {
  width: 30px;
  height: 30px;
  stroke: #38bdf8;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.offline-feature-item span {
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
}
.posmovi-offline-mockup-content {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 18rem;
  height: 37rem;
  background-image: linear-gradient(to bottom, #dbeafe, #bfdbfe);
  border: 1px solid #93c5fd;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  position: relative;
  box-shadow: 1rem 1rem 6rem rgba(0, 0, 0, 0.4), 0 0 0.1rem rgba(0, 0, 0, 0.4);
}
.side-button {
  background-image: linear-gradient(to right, #a3a3a3, #93c5fd, #93c5fd);
  border: 1px solid #dbeafe;
  position: absolute;
  box-shadow: inset 2px 0 1px rgba(0, 0, 0, 0.2);
}
.button-vol-up {
  width: 0.25rem;
  height: 1.25rem;
  border-radius: 0 0.1rem 0.1rem 0;
  left: -0.25rem;
  top: 20%;
  border-left-width: 1px;
}
.button-vol-down {
  width: 0.25rem;
  height: 2.5rem;
  border-radius: 0 0.1rem 0.1rem 0;
  left: -0.25rem;
  top: 28%;
  border-left-width: 1px;
}
.button-silence {
  width: 0.25rem;
  height: 2.5rem;
  border-radius: 0 0.1rem 0.1rem 0;
  left: -0.25rem;
  top: 38%;
  border-left-width: 1px;
}
.button-power {
  width: 0.25rem;
  height: 5rem;
  border-radius: 0 0.1rem 0.1rem 0;
  right: -0.25rem;
  top: 30%;
  border-right-width: 1px;
}
.phone-bezel {
  height: 100%;
  width: 100%;
  background-color: #000;
  border-radius: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.phone-screen {
  height: 100%;
  width: 100%;
  background-color: #000;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.phone-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.screen-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.dynamic-island {
  width: 5rem;
  height: 1.4rem;
  background-color: #000;
  margin-top: 0.5rem;
  border-radius: 9999px;
}

@media (min-width: 480px) {
  .offline-features-list {
    gap: 20px;
  }
  .offline-feature-item {
    max-width: 110px;
    font-size: 0.85rem;
  }
  .offline-feature-item svg {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 768px) {
  .offline-features-list {
    gap: 25px;
  }
  .offline-feature-item {
    max-width: 120px;
    font-size: 0.9rem;
  }
  .offline-feature-item svg {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 992px) {
  .posmovi-offline-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .posmovi-offline-text-content {
    text-align: left;
  }
  .posmovi-offline-description {
    margin: 0;
  }
  .offline-features-list {
    justify-content: flex-start;
    gap: 30px;
  }
  .offline-feature-item {
    flex: none;
  }
}
/* End of PosOffline Section */
/* Tienda en Linea Section */
.posmovi-ecommerce-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #111827;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.posmovi-ecommerce-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.7) 50%,
    transparent 100%
  );
  opacity: 0.8;
}
.posmovi-ecommerce-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      circle at 25% 75%,
      rgba(56, 189, 248, 0.15) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(255, 255, 255, 0.1) 1.5px,
      transparent 1.5px
    );
  background-size: 140px 140px, 200px 200px;
  animation: ecommerce-float-particles 30s infinite linear;
}
@keyframes ecommerce-float-particles {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.posmovi-ecommerce-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.posmovi-ecommerce-badge span {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2),
    rgba(56, 189, 248, 0.1)
  );
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: #38bdf8;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 25px;
}
.posmovi-ecommerce-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}
.posmovi-ecommerce-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.posmovi-ecommerce-subtitle {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-weight: 400;
}
.posmovi-ecommerce-banner {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  transition: transform 0.3s ease;
}
.posmovi-ecommerce-banner:hover {
  transform: scale(1.03);
}
.posmovi-ecommerce-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.ecommerce-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 60px auto;
  text-align: left;
}
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}
.feature-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.feature-card-header svg {
  width: 24px;
  height: 24px;
  color: #38bdf8;
  flex-shrink: 0;
}
.feature-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}
.feature-card p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.step-by-step-title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 80px 0 40px 0;
}
.purchase-flow-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.carousel-track-container {
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
}
.slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  background: none;
  border-radius: 12px;
}
.slide img.remove-bg {
  mix-blend-mode: multiply;
}
.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}
.slide-caption span {
  color: #fff;
  margin-right: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.carousel-button.prev {
  left: 10px;
}
.carousel-button.next {
  right: 10px;
}
@media (min-width: 768px) {
  .carousel-button.prev {
    left: -50px;
  }
  .carousel-button.next {
    right: -50px;
  }
}
/* End of Tienda en Linea Section */
/* FAQ Section */
.faq-section {
  width: 100%;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #111827;
}

.faq-section #particles-faq {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.5s ease-out backwards;
}

.faq-header .subtitle {
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-header .title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: #ffffff;
}

.faq-header .title .highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease-out backwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.6);
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s ease;
  outline: none;
}

.faq-question:focus,
.faq-question:focus-visible {
  outline: none;
  box-shadow: none;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  stroke: #38bdf8;
  stroke-width: 2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px 20px;
  color: #e2e8f0;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-item.active {
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}
.faq-item.active .faq-question {
  color: #38bdf8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .faq-section {
    padding: 100px 40px;
  }
  .faq-header .title {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
  }
  .faq-question {
    font-size: 1.2rem;
    padding: 24px;
  }
  .faq-answer p {
    padding: 0 24px 24px 24px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End of FAQ Section */
/* Footer */
.posmovi-footer {
  background-color: #111827;
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  font-family: "Roboto", sans-serif;
}
.posmovi-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  text-align: center;
}
.footer-column-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  max-width: 180px;
  margin-bottom: 1rem;
}
.footer-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 400px;
  color: #e2e8f0;
}
.footer-social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.footer-social-links a {
  color: #94a3b8;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social-links a:hover {
  color: #38bdf8;
  transform: translateY(-2px);
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-list li a,
.footer-list li span {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.3s ease;
}
.footer-list li a:hover {
  color: #38bdf8;
}
.posmovi-footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
.posmovi-footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posmovi-footer-bottom a:hover {
  color: #38bdf8;
}
.posmovi-back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  z-index: 999;
}
.posmovi-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.posmovi-back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.5);
}
@media (min-width: 768px) {
  .posmovi-footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: left;
  }
  .footer-column-main {
    align-items: flex-start;
  }
  .footer-social-links {
    justify-content: flex-start;
  }
  .posmovi-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* End of Footer */
