/* Nabvar Styles */
body.alpha-no-scroll {
  position: fixed !important;
  width: 100% !important;
  left: 0;
}
.alpha-header {
  background-color: #000a25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.alpha-header.scrolled {
  background-color: rgba(0, 10, 37, 0.85);
  backdrop-filter: blur(10px);
}
.alpha-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alpha-nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.alpha-logo {
  height: 40px;
  width: auto;
}
.alpha-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;
}
.has-submenu:hover .submenu-indicator {
  transform: rotate(180deg);
}
.submenu {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0b1a4a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  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(255, 255, 255, 0.15);
}
.tablet-link {
  display: none;
}
.alpha-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;
}
.alpha-nav-link:hover,
.alpha-nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}
.alpha-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.alpha-demo-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #007aff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: none;
}
.alpha-demo-btn:hover {
  background-color: #007aff;
  color: #fff;
}
.alpha-contact-btn {
  background-color: #25d366;
  color: #ffffff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  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;
}
.alpha-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  animation: none;
}
.alpha-contact-btn:hover span,
.alpha-contact-btn:hover i {
  color: #ffffff !important;
}
.alpha-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;
}
.alpha-hamburger-btn.open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.alpha-hamburger-btn.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.alpha-hamburger-btn.open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.alpha-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #111111;
  transform: translateY(-120%);
  transition: transform 0.35s ease-in-out;
  z-index: 999;
  padding-top: 0;
  overflow-y: auto;
}
.alpha-mobile-menu.open {
  transform: translateY(0);
}
.alpha-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.alpha-mobile-menu-list li {
  margin: 0;
}
.has-submenu-mobile .submenu-mobile {
  list-style: none;
  padding-left: 0;
  display: none;
  background-color: #1a1a1a;
}
.has-submenu-mobile.open > .submenu-mobile {
  display: block;
}
.submenu-mobile li a {
  font-size: 16px !important;
  padding-left: 4.5rem !important;
}
.alpha-mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #333;
}
.alpha-mobile-nav-link i {
  margin-right: 18px;
  width: 22px;
  text-align: center;
  font-size: 20px;
}
.mobile-buttons-wrapper {
  border-bottom: 1px solid #333;
  padding: 18px 24px;
}
.alpha-demo-btn-mobile {
  text-decoration: none;
  font-weight: bold;
  background: transparent;
  display: block;
}
.alpha-demo-btn-mobile:hover span {
  background: linear-gradient(45deg, #1976d2, #2196f3);
}
.alpha-demo-btn-mobile span {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(45deg, #0d47a1, #1976d2);
  border-radius: 50px;
  color: #fff;
  transition: background 0.2s ease;
}
.alpha-demo-btn-mobile span i {
  margin-right: 12px;
}

@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) and (max-width: 991px) {
  .alpha-main-menu {
    display: flex;
  }
  .has-submenu {
    display: none;
  }
  .tablet-link {
    display: list-item;
  }
  .alpha-demo-btn {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .alpha-main-menu {
    display: flex;
  }
  .has-submenu {
    display: list-item;
  }
  .tablet-link {
    display: none;
  }
  .alpha-demo-btn {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .alpha-logo {
    max-height: 28px;
  }
  .alpha-menu-container {
    display: none;
  }
  .alpha-hamburger-btn {
    display: block;
  }
  .alpha-demo-btn {
    display: none;
  }
  .alpha-contact-btn {
    background: linear-gradient(45deg, #0d47a1, #1976d2);
    animation: none;
    padding: 0 1rem;
    height: 38px;
  }
  .alpha-contact-btn span {
    font-size: 15px;
  }
  .alpha-contact-btn i {
    display: none;
  }
}

/* End of Navbar Styles */

/* Hero Section Styles */
#hero-taller-alpha {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 90vh;
  overflow: hidden;
  color: white;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  padding-top: 10vh;
}
#hero-taller-alpha .hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#hero-taller-alpha .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
#hero-taller-alpha .hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, #000a25 0%, transparent 100%);
}
#hero-taller-alpha .hero-container {
  position: relative;
  z-index: 3;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 64rem;
}
#hero-taller-alpha .hero-content {
  animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-taller-alpha .hero-badge {
  background: linear-gradient(
    135deg,
    rgba(0, 122, 255, 0.15) 0%,
    rgba(0, 122, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  color: #00a3ff;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}
#hero-taller-alpha .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
#hero-taller-alpha .hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: #e2e8f0 !important;
  opacity: 1 !important;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
#hero-taller-alpha .gradient-text {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#hero-taller-alpha .hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
}
.app-download-widget {
  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: 16px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  display: inline-block;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.25);
}
.app-download-title {
  font-weight: 500;
  color: #ffffff !important;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-app-buttons-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
#hero-taller-alpha .hero-app-buttons-container a {
  transition: transform 0.3s ease;
}
#hero-taller-alpha .hero-app-buttons-container a:hover {
  transform: scale(1.05);
}
#hero-taller-alpha .hero-app-buttons-container img {
  height: 3.5rem;
}
@media (max-width: 767px) {
  #hero-taller-alpha {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("https://www.talleralpha.com/wp-content/uploads/2025/09/Banner-Taller-Alpha-Movil.webp");
    background-size: cover;
    background-position: center;
    padding-top: 20vh;
  }
  #hero-taller-alpha .hero-video-bg {
    display: none;
  }
}
@media (min-width: 768px) {
  #hero-taller-alpha .hero-title {
    font-size: 3rem;
  }
  #hero-taller-alpha .hero-subtitle {
    font-size: 1.375rem;
  }
}
.scroll-down-widget {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.scroll-down-widget .mouse {
  width: 25px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 60px;
  position: relative;
}
.scroll-down-widget .wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
.scroll-down-widget .arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}
.scroll-down-widget .arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: -5px;
  animation: scroll-arrows 2s infinite;
}
.scroll-down-widget .arrows span:nth-child(2) {
  animation-delay: -0.2s;
}
.scroll-down-widget .arrows span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes scroll-arrows {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
/* End of Hero Section Styles */

/* Start of Solicitud de Licencia */
#register-form-section {
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
}
.main-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 960px;
}
.form-container {
  width: 100%;
  background: linear-gradient(145deg, #0b1a4a 0%, #00081f 100%);
  border: 1px solid rgba(255, 255, 255, 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.2);
}
.form-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(
    circle at top center,
    rgba(0, 122, 255, 0.2),
    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.5rem;
}
.form-subtitle {
  margin: 0.25rem 0 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
}
#dynamic-workshop-type {
  background-image: linear-gradient(45deg, #21d4fd, #007bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
  transition: opacity 0.4s ease-in-out;
}
#dynamic-workshop-type.fade {
  opacity: 0;
}
.progress-rail {
  width: auto;
  margin: 1.5rem 2rem 0;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 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, #007aff, #00c6ff, #92fe9d, #007aff);
  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: 1.5rem 2rem;
  position: relative;
}
.stepper-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}
.stepper-wrapper::before {
  content: "";
  position: absolute;
  top: 2.7rem;
  left: calc(2rem + 1.25rem);
  right: calc(2rem + 1.25rem);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}
.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;
}
.stepper-progress {
  height: 100%;
  width: 0%;
  background-color: #28a745;
  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[data-step="2"].active ~ .stepper-progress-bar .stepper-progress,
.stepper-item[data-step="2"].completed
  ~ .stepper-progress-bar
  .stepper-progress {
  width: 50%;
}
.stepper-item[data-step="3"].active ~ .stepper-progress-bar .stepper-progress,
.stepper-item[data-step="3"].completed
  ~ .stepper-progress-bar
  .stepper-progress {
  width: 100%;
}
.stepper-item.navigable {
  cursor: pointer;
}
.stepper-item.completed .stepper-icon {
  background: #28a745;
  color: #fff;
  box-shadow: 0 0 15px 3px rgba(40, 167, 69, 0.5);
}
.stepper-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #0b1a4a;
  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;
}
.stepper-item.active .stepper-icon {
  background: linear-gradient(135deg, #007aff 0%, #004e92 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px 3px rgba(0, 122, 255, 0.5);
}
.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: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
}
.form-group {
  flex: 1 1 100%;
  margin-bottom: 0.15rem;
}
.form-grid .form-group.full-width {
  flex-basis: 100% !important;
}
@media (min-width: 768px) {
  .form-group {
    flex-basis: calc(50% - 0.75rem);
  }
}
.form-group .terms-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-group .terms-link {
  color: #94a3b8;
  text-decoration: none;
}

.form-group .terms-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.form-group .terms-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
}

.form-group .terms-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-group .terms-checkbox-box {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2px;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group .terms-checkbox-box::after {
  content: "✕";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: #ffffff;
  color: rgba(15, 23, 42, 0.65);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transition: transform 0.2s ease, color 0.2s ease;
}

.form-group .terms-checkbox-input:checked + .terms-checkbox-box {
  background-color: #007aff;
  border-color: #007aff;
}

.form-group .terms-checkbox-input:checked + .terms-checkbox-box::after {
  content: "✓";
  color: #007aff;
  transform: translateX(18px);
}

.form-group .terms-checkbox-input:focus-visible + .terms-checkbox-box {
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.35);
}

.form-group .terms-checkbox.error .terms-checkbox-box {
  border-color: #f27474;
  box-shadow: 0 0 0 3px rgba(242, 116, 116, 0.25);
}
.form-group label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.9rem;
}
.form-group label i {
  color: #007aff;
  padding-left: 8px;
}
.form-group small {
  display: block;
  margin-top: 0.15rem;
  color: #94a3b8;
  font-size: 0.8rem;
}

.form-group .field-error {
  display: block;
  margin-top: 0.2rem;
  line-height: 1.1;
  height: 1.1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #f27474;
  font-size: 0.8rem;
}

.form-group .field-error:empty {
  visibility: hidden;
}
.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.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[required]:not(:placeholder-shown):valid {
  border-color: #28a745;
}

.form-group input.valid,
.form-group select.valid {
  border-color: #28a745;
}
.form-group select {
  padding: 0.75rem 1rem;
  color-scheme: dark;
}
#company_phone_content input,
#user_phone_content input,
#user_whatsapp_phone_content input {
  padding-left: 15px;
}
.form-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #0b1a4a 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: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 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;
}

.form-group input.error,
.form-group select.error {
  border-color: #f27474;
  box-shadow: 0 0 0 3px rgba(242, 116, 116, 0.25);
}

.form-group input.has-password-toggle {
  padding-right: 2.75rem;
}

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

.input-with-icon .toggle-password i {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  color: inherit;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.step-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.85rem;
  flex: 1;
}
.step-info .step-info-text {
  transition: opacity 0.4s ease-in-out;
}
.step-info .step-info-text.fade-out {
  opacity: 0;
}
.step-info i {
  color: #007aff;
  font-size: 1.2rem;
}
.action-buttons {
  display: flex;
  gap: 1rem;
}
.btn-next,
.btn-prev,
.btn-submit {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-next,
.btn-submit {
  background: linear-gradient(135deg, #007aff 0%, #004e92 100%);
  color: #fff;
}
.btn-next:active {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.9);
}
.btn-prev {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn-next:hover,
.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #007aff;
}
.form-step {
  display: none;
  animation: stepFadeIn 0.5s ease;
}
@keyframes stepFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .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;
  }
}
.chosen-container-single .chosen-single {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !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: #007aff !important;
}
.chosen-container-single .chosen-single div b {
  background-position: 0px 10px !important;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 10px !important;
}
.chosen-container .chosen-drop {
  background: #0b1a4a !important;
  border: 1px solid #007aff !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: #007aff !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(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
}
.form-group .chosen-container + select {
  display: none !important;
}
.iti__country-list {
  background-color: #0b1a4a !important;
  border: 1px solid #007aff !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.iti__country.iti__highlight {
  background-color: #007aff !important;
}
.iti__country:hover {
  background-color: rgba(0, 122, 255, 0.5) !important;
}
.iti__search-input {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 255, 255, 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: #007aff;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.swal-modal {
  background-color: #0b1a4a;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.swal-title {
  color: #ffffff;
}
.swal-text {
  color: #94a3b8;
}
.swal-content__input {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 12px;
}
.swal-content__input:focus {
  border-color: #007aff;
}
.swal-button {
  background-color: #007aff;
  color: #ffffff;
  border: none;
  box-shadow: none;
  padding: 10px 24px;
  border-radius: 12px;
}
.swal-button--confirm {
  background: linear-gradient(135deg, #007aff 0%, #004e92 100%);
}
.swal-button:not([disabled]):hover {
  background: linear-gradient(135deg, #0088ff 0%, #005ecb 100%);
}
.swal-icon--success {
  border-color: #28a745;
}
.swal-icon--success:before,
.swal-icon--success:after,
.swal-icon--success__hide-corners {
  background: none !important;
}
.swal-icon--success__ring {
  border-color: #28a745;
}
.swal-icon--success__line {
  background-color: #28a745;
}
.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: #94a3b8;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.help-icon:hover {
  color: #007aff;
}
.custom-tooltip {
  position: fixed;
  background-color: #f1f5f9;
  color: #1e293b;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #007aff;
  font-size: 0.85rem;
  z-index: 10000;
  max-width: 250px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.custom-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.contact-section {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, #0b1a4a 0%, #00081f 100%);
  border: 1px solid rgba(255, 255, 255, 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.2);
}

.contact-section p {
  color: #94a3b8;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.btn-whatsapp i {
  margin-right: 0.5rem;
}
/* End of Solicitud de Licencia */

/* Start of Logos de Talleres */
.ta-logos-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 15px 70px;
  border-top: 1px solid rgba(0, 122, 255, 0.15);
  border-bottom: 1px solid rgba(0, 122, 255, 0.15);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(0, 122, 255, 0.32), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(0, 212, 255, 0.22), transparent 60%),
    radial-gradient(1000px 600px at 10% 80%, rgba(0, 60, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #000a25 0%, #00081f 35%, #001244 100%);
}

.ta-logos-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.8) 50%, transparent 100%);
}

.ta-logos-diagonal-band {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(0, 122, 255, 0.15), transparent),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(34, 211, 238, 0.1), transparent);
}

.ta-logos-particles-bg,
.ta-logos-particles-bg::before,
.ta-logos-particles-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ta-logos-particles-bg {
  background: radial-gradient(circle at 30% 30%, rgba(0, 122, 255, 0.15) 2px, transparent 2px);
  background-size: 100px 100px;
  animation: ta-logos-anim-1 25s infinite linear;
}

.ta-logos-particles-bg::before {
  background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 150px 150px;
  animation: ta-logos-anim-2 35s infinite linear;
}

.ta-logos-particles-bg::after {
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.2) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: ta-logos-anim-3 20s infinite linear;
}

@keyframes ta-logos-anim-1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-200px, -200px);
  }
}

@keyframes ta-logos-anim-2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(200px, 200px);
  }
}

@keyframes ta-logos-anim-3 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-300px);
  }
}

.ta-logos-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ta-logos-header {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.ta-logos-title {
  width: 100%;
  color: #ffffff;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.ta-logos-highlight {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: inline-block;
}

.ta-logos-subtitle {
  color: #e2e8f0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.ta-logos-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  opacity: 0.6;
  margin: 25px 0 35px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.8) 50%, transparent 100%);
}

.ta-logos-single-img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.ta-logos-single-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0) invert(85%) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.ta-logos-single-img img:hover {
  opacity: 1;
  transform: scale(1.02);
}

.ta-logos-section.is-visible .ta-logos-single-img {
  opacity: 1;
  transform: translateY(0);
}

.ta-metrics-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}

.ta-metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.ta-logos-section.is-visible .ta-metric-card {
  opacity: 1;
  transform: translateY(0);
}

.ta-logos-section.is-visible .ta-metric-card:nth-of-type(1) {
  transition-delay: 0.08s;
}

.ta-logos-section.is-visible .ta-metric-card:nth-of-type(2) {
  transition-delay: 0.14s;
}

.ta-logos-section.is-visible .ta-metric-card:nth-of-type(3) {
  transition-delay: 0.2s;
}

.ta-logos-section.is-visible .ta-metric-card:nth-of-type(4) {
  transition-delay: 0.26s;
}

.ta-metric-pipe {
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.2rem;
  font-weight: 300;
  display: block;
  user-select: none;
}

.ta-metric-val {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ta-metric-text {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .ta-metrics-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .ta-metric-pipe {
    display: none;
  }

  .ta-metric-card {
    flex: 1 1 calc(50% - 30px);
  }

  .ta-logos-single-img {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .ta-logos-section {
    padding: 50px 15px 60px;
  }

  .ta-metric-card {
    flex: 1 1 100%;
  }

  .ta-logos-single-img {
    padding: 0 10px;
    margin-top: 10px;
  }
}

@media (min-width: 1600px) {
  .ta-logos-title {
    font-size: 3.2rem;
  }

  .ta-logos-single-img {
    max-width: 1200px;
  }

  .ta-metric-val {
    font-size: 2.8rem;
  }

  .ta-metric-text {
    font-size: 1.3rem;
  }

  .ta-metric-pipe {
    font-size: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ta-logos-particles-bg,
  .ta-logos-particles-bg::before,
  .ta-logos-particles-bg::after,
  .ta-logos-single-img,
  .ta-metric-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .ta-logos-single-img,
  .ta-metric-card {
    opacity: 1;
  }
}
/* End of Logos de Talleres */

/*  Maneja tu negocio en cualquier lugar */

.multiplataforma-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #000a25 0%, #001244 50%, #000a25 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 122, 255, 0.8) 50%,
    transparent 100%
  );
  z-index: 2;
}

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

.multiplataforma-header {
  text-align: center;
  margin-bottom: 60px;
}

.multiplataforma-badge span {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 122, 255, 0.15) 0%,
    rgba(0, 122, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: #00a3ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.multiplataforma-title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px 0;
  color: #ffffff !important;
}

.multiplataforma-highlight {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.multiplataforma-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #ffffff !important;
  max-width: 700px;
  margin: 0 auto;
}

.devices-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 60px 0;
  align-items: center;
  justify-items: center;
}

.device-item {
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.device-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.device-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.device-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 10, 37, 0.9));
  padding: 30px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.device-label h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.device-label p {
  font-size: 1rem;
  color: #a1a1aa;
  margin: 0;
  line-height: 1.4;
}

.device-item:hover {
  transform: translateY(-20px) scale(1.05);
}

.device-item:hover .device-frame {
  box-shadow: 0 40px 80px rgba(0, 122, 255, 0.3),
    0 0 0 1px rgba(0, 122, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 122, 255, 0.5);
}

.device-item:hover .device-overlay {
  transform: translateY(0);
}

.device-item:hover .device-frame img {
  transform: scale(1.1);
}

.tablet-device {
  animation: float 6s ease-in-out infinite;
}

.mobile-device {
  animation: float 6s ease-in-out infinite 2s;
}

.desktop-device {
  animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.seo-keyword {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.taller-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(0, 122, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 90%,
      rgba(0, 122, 255, 0.1) 1px,
      transparent 1px
    );
  background-size: 150px 150px, 100px 100px, 200px 200px;
  animation: particles-drift 20s linear infinite;
}

@keyframes particles-drift {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(-100px, -100px) rotate(360deg);
  }
}

@media (min-width: 768px) {
  .devices-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .tablet-device {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .multiplataforma-section {
    padding: 120px 20px;
  }

  .devices-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 80px 0;
  }

  .tablet-device {
    grid-column: auto;
    max-width: none;
  }

  .device-frame {
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tablet-device,
  .mobile-device,
  .desktop-device {
    animation: none;
  }

  .seo-keyword {
    animation: none;
    background: linear-gradient(135deg, #007aff 0%, #4a9aff 100%);
  }

  .taller-particles-bg {
    animation: none;
  }
}

/* End of Maneja tu negocio en cualquier lugar */

/* Control de asistencia de empleados */

.multimarcadas-section-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://www.talleralpha.com/wp-content/uploads/2025/08/Solicitud-RH-scaled.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.multimarcadas-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.multimarcadas-header {
  margin-bottom: 3.5rem;
}
.multimarcadas-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.multimarcadas-highlight {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.multimarcadas-subtitle {
  font-size: 1.1rem;
  color: #ffffff !important;
  max-width: 45rem;
  margin: 0 auto;
  line-height: 1.6;
}
.multimarcadas-subtitle .seo-keyword {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.multimarcadas-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.rh-phone-con {
  flex-shrink: 0;
  transform: scale(0.9);
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 15px 30px rgba(0, 122, 255, 0.2));
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .rh-phone-con:hover {
    transform: scale(0.93) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(0, 122, 255, 0.3));
  }
}
.rh-phone {
  --size: max(4px, 0.8vmin);
  font-size: var(--size);
  position: relative;
  z-index: 1;
  aspect-ratio: 37/76;
  background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
  height: 80em;
  border-radius: 6.666em;
  box-shadow: 0 0 0.1em 0.25em hsl(215, 20%, 20%),
    0 0 0 0.4em hsl(215, 30%, 80%), 0 8px 24px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}
.rh-phone:before {
  content: "";
  position: absolute;
  top: 6.666em;
  right: -0.4em;
  bottom: 6.666em;
  left: -0.4em;
  border: 0.5em solid hsl(215, 20%, 25%);
  border-left-width: 0;
  border-right-width: 0;
}
.rh-buttons {
  position: absolute;
  inset: -0.4em;
  pointer-events: none;
}
.rh-buttons .rh-left,
.rh-buttons .rh-right {
  position: absolute;
  width: 0.333em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5em;
}
.rh-buttons .rh-left {
  right: 100%;
  top: 13.332em;
}
.rh-buttons .rh-left .rh-button:nth-child(1) {
  height: 3em;
  margin-bottom: 0.5em;
}
.rh-buttons .rh-right {
  left: 100%;
  transform: scale3d(-1, 1, 1);
  top: 19.998em;
}
.rh-buttons .rh-right .rh-button {
  height: 9.5em;
}
.rh-buttons .rh-button {
  background: linear-gradient(
    90deg,
    hsl(215, 20%, 88%) 0%,
    hsl(215, 20%, 95%) 100%
  );
  height: 6em;
  box-shadow: inset -0.15em 0 0.1em rgba(0, 0, 0, 0.2),
    inset 0 0 0.1em hsl(215, 30%, 90%), inset 0 0.2em 0.1em hsl(215, 30%, 92%),
    inset 0 -0.2em 0.1em hsl(215, 30%, 85%);
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.rh-screen-container {
  position: absolute;
  inset: 0;
  border-radius: 6.666em;
  border: 1.25em solid black;
  box-sizing: border-box;
  overflow: hidden;
}
.rh-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 5.4em;
  overflow: hidden;
  position: relative;
}
.rh-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.rh-screen video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
.steps-container {
  width: 100%;
  max-width: 450px;
  max-height: 360px;
  overflow-y: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 15px 5px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.steps-container::-webkit-scrollbar {
  display: none;
}
.multimarcadas-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  padding: 0 10px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 30, 0.25) 0%,
    rgba(10, 10, 20, 0.15) 100%
  );
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  opacity: 0.6;
  cursor: pointer;
  position: relative;
}
@media (hover: hover) {
  .step-item:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background: linear-gradient(
      135deg,
      rgba(30, 30, 45, 0.35) 0%,
      rgba(20, 20, 35, 0.25) 100%
    );
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.1),
      inset 0 1px 1px rgba(255, 255, 255, 0.05);
  }
}
.step-item.active {
  opacity: 1;
  transform: scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(0, 122, 255, 0.2) 0%,
    rgba(0, 86, 204, 0.1) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.step-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0041a8 0%, #002e7a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
  position: relative;
  z-index: 1;
}
.step-item.active .step-number {
  background: linear-gradient(135deg, #0062cc 0%, #0045a3 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 122, 255, 0.4);
}
.step-text h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.step-text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  transition: color 0.3s ease;
}
.step-item.active .step-text p {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .multimarcadas-section-wrapper {
    padding: 60px 15px;
  }
  .rh-phone-con {
    transform: scale(0.85);
  }
  .steps-container {
    max-height: 320px;
  }
  .step-item {
    padding: 18px;
    gap: 14px;
  }
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .rh-phone-con {
    transform: scale(0.8);
  }
  .multimarcadas-section-wrapper {
    padding: 100px 15px;
  }
}
@media (min-width: 992px) {
  .multimarcadas-content-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .rh-phone-con {
    flex: 1 1 40%;
    transform: scale(0.9);
  }
  .steps-container {
    flex: 1 1 60%;
    max-height: 400px;
  }
  .multimarcadas-section-wrapper {
    padding: 120px 15px;
  }
  .steps-container {
    backdrop-filter: blur(12px);
  }
  .step-item {
    backdrop-filter: blur(10px);
  }
}
/* End of Control de asistencia de empleados */

/* Tienda en linea */
.online-store-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7) 30%,
      transparent 70%
    ),
    url("https://www.talleralpha.com/wp-content/uploads/2025/08/Banner-Tienda-Linea-Taller.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 122, 255, 0.8) 50%,
    transparent 100%
  );
  z-index: 2;
}

.online-store-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.online-store-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.online-store-badge span {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 122, 255, 0.15) 0%,
    rgba(0, 122, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: #00a3ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.online-store-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #ffffff !important;
  width: 100%;
  text-align: center;
}

.online-store-highlight {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.online-store-description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  margin: 0 0 30px 0;
  max-width: 550px;
}

.online-store-image-wrapper {
  width: 100%;
  max-width: 900px;
}

.online-store-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.seo-keyword {
  background: linear-gradient(
    135deg,
    #007aff 0%,
    #00d4ff 30%,
    #4a9aff 70%,
    #7ab8ff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: keywordShimmer 3s ease-in-out infinite;
}

@keyframes keywordShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.online-store-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 100%;
  margin: 80px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.online-store-feature-item {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.online-store-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.online-store-feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.online-store-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.online-store-feature-icon svg {
  width: 28px;
  height: 28px;
  color: #7cc3ff;
}

.online-store-feature-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.online-store-feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .online-store-features {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    padding: 0 40px;
    margin: 80px auto 0;
  }
}

@media (min-width: 992px) {
  .online-store-container {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    padding: 0 40px;
    justify-content: center;
  }

  .online-store-text {
    align-items: flex-start;
    flex: 1 1 45%;
  }

  .online-store-title {
    text-align: left;
    width: auto;
  }

  .online-store-highlight {
    white-space: nowrap;
  }

  .online-store-description {
    max-width: 480px;
  }

  .online-store-image-wrapper {
    flex: 1 1 55%;
  }
}
/* End of Tienda en linea */

/* Contabilidad */
.taller-contabilidad-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #000a25;
  color: #ffffff;
  padding: 60px 15px;
  position: relative;
  overflow: hidden;
}

.taller-top-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 122, 255, 0.8) 50%,
    transparent 100%
  );
  z-index: 2;
}

.taller-contabilidad-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.taller-contabilidad-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.taller-contabilidad-badge span {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 122, 255, 0.15) 0%,
    rgba(0, 122, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: #00a3ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.taller-contabilidad-title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
  color: #ffffff !important;
  width: 100%;
  max-width: 800px;
  word-break: keep-all;
  hyphens: none;
}

.taller-contabilidad-highlight {
  background: linear-gradient(135deg, #007aff 0%, #00d4ff 50%, #4a9aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.taller-contabilidad-description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 30px 0;
}

.taller-contabilidad-image {
  width: 100%;
  max-width: 600px;
}

.taller-contabilidad-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.seo-keyword {
  background: linear-gradient(
    135deg,
    #007aff 0%,
    #00d4ff 30%,
    #4a9aff 70%,
    #7ab8ff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: keywordShimmer 3s ease-in-out infinite;
}

@keyframes keywordShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.taller-particles-bg,
.taller-particles-bg::before,
.taller-particles-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.taller-particles-bg {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 122, 255, 0.15) 2px,
    transparent 2px
  );
  background-size: 100px 100px;
  animation: particles-anim-1 25s infinite linear;
}

.taller-particles-bg::before {
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px
  );
  background-size: 150px 150px;
  animation: particles-anim-2 35s infinite linear;
}

.taller-particles-bg::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 122, 255, 0.2) 1px,
    transparent 1px
  );
  background-size: 80px 80px;
  animation: particles-anim-3 20s infinite linear;
}

@keyframes particles-anim-1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-200px, -200px);
  }
}

@keyframes particles-anim-2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(200px, 200px);
  }
}

@keyframes particles-anim-3 {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-300px);
  }
}

@media (max-width: 480px) {
  .taller-contabilidad-title {
    font-size: 1.5rem;
  }
  .taller-contabilidad-container {
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .taller-contabilidad-container {
    flex-direction: row;
    text-align: left;
    gap: 5rem;
    align-items: center;
  }

  .taller-contabilidad-text {
    align-items: flex-start;
    flex: 1 1 42%;
    max-width: 800px;
  }

  .taller-contabilidad-image {
    flex: 1 1 58%;
    max-width: none;
  }
}
/* End of Contabilidad */

/* Fideliza a tus clientes */
.fideliza-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #000a25;
  color: #ffffff;
  padding: 60px 15px;
  position: relative;
  overflow: hidden;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 122, 255, 0.8) 50%,
    transparent 100%
  );
  z-index: 3;
}

.fideliza-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.fideliza-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.fideliza-badge span {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 122, 255, 0.15) 0%,
    rgba(0, 122, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: #00a3ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.fideliza-title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
  color: #ffffff !important;
  width: 100%;
  max-width: 800px;
  word-break: keep-all;
  hyphens: none;
}

.fideliza-description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 30px 0;
}

.fideliza-image-wrapper {
  width: 100%;
  max-width: 900px;
}

.fideliza-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.seo-keyword {
  background: linear-gradient(
    135deg,
    #007aff 0%,
    #00d4ff 30%,
    #4a9aff 70%,
    #7ab8ff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: keywordShimmer 3s ease-in-out infinite;
}

@keyframes keywordShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.taller-particles-bg,
.taller-particles-bg::before,
.taller-particles-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.taller-particles-bg {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 122, 255, 0.15) 2px,
    transparent 2px
  );
  background-size: 100px 100px;
  animation: particles-anim-1 25s infinite linear;
}

.taller-particles-bg::before {
  background: radial-gradient(
    circle at 70% 70%,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px
  );
  background-size: 150px 150px;
  animation: particles-anim-2 35s infinite linear;
}

.taller-particles-bg::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 122, 255, 0.2) 1px,
    transparent 1px
  );
  background-size: 80px 80px;
  animation: particles-anim-3 20s infinite linear;
}

@keyframes particles-anim-1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-200px, -200px);
  }
}

@keyframes particles-anim-2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(200px, 200px);
  }
}

@keyframes particles-anim-3 {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-300px);
  }
}

@media (max-width: 480px) {
  .fideliza-title {
    font-size: 1.5rem;
  }
  .fideliza-container {
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .fideliza-container {
    flex-direction: row;
    text-align: left;
    gap: 5rem;
    align-items: center;
  }

  .fideliza-text-content {
    align-items: flex-start;
    flex: 1 1 42%;
    max-width: 800px;
  }

  .fideliza-image-wrapper {
    flex: 1 1 58%;
    max-width: none;
  }
}
/* End of Fideliza a tus clientes */
/* FAQ Section */
.faq-section {
  width: 100%;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #000a25 0%, #00081f 50%, #001244 100%);
}

.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: #007aff;
  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, #007aff 0%, #00a2ff 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(0, 122, 255, 0.05);
  border: 1px solid rgba(0, 122, 255, 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(0, 122, 255, 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: #007aff;
  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);
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

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

.faq-answer p:last-child:not(:only-child) {
  padding-bottom: 10px;
}

.video-thumbnail {
  position: relative;
  max-width: 700px;
  margin: 15px auto 20px auto;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 122, 255, 0.3);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  animation: scaleIn 0.3s ease;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10001;
}

.video-modal-close:hover {
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-container {
  position: relative;
  max-width: 700px;
  margin: 15px auto 20px auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.faq-item.active {
  border-color: #007aff;
  box-shadow: 0 0 25px rgba(0, 122, 255, 0.3);
}
.faq-item.active .faq-question {
  color: #007aff;
}

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

.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 10px 24px;
  }
  .video-thumbnail {
    max-width: 700px;
  }
  .video-modal-content {
    width: 85%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End of FAQ Section */
/* Footer */
.alpha-footer {
  background-color: #00081f;
  color: #94a3b8;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.alpha-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 122, 255, 0.08),
    transparent 40%
  );
  pointer-events: none;
}
.alpha-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
  z-index: 2;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}
.footer-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-social-links {
  display: flex;
  gap: 1rem;
}
.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: #007aff;
  transform: translateY(-3px) scale(1.1);
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #007aff;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-list li .icon {
  color: #007aff;
  width: 16px;
  text-align: center;
}
.footer-list li a,
.footer-list li span {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-list li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
a:focus-visible {
  outline: 2px solid #007aff;
  outline-offset: 2px;
  border-radius: 4px;
}
.alpha-footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
.alpha-footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.alpha-footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.alpha-footer .fas {
  font-weight: 900;
}
.alpha-back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, #007aff 0%, #004e92 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 20px rgba(0, 122, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
    box-shadow 0.3s ease;
  z-index: 999;
}
.alpha-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.alpha-back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.5);
  color: #ffffff !important;
  text-decoration: none;
}
@media (max-width: 600px) {
  .alpha-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .alpha-back-to-top {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* End of Footer */
