.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100%;
}

.bg-white {
  background: white;
}

.text-white,
.text-white > a {
  color: white !important;
}

.text-black {
  color: #000;
}

.bg-black {
  background: #000;
}

.bg-gray {
  background: var(--gray-text);
}

.btn {
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  padding: 15px;
  text-decoration: none !important;
  transition: all 0.5s ease-out;
  outline: none !important;
}

.btn:hover {
  opacity: 0.8;
}

.fs-22 {
  font-size: 22px;
}

.text-center {
  text-align: center;
}

p.subtitle {
  font-size: 24px;
  color: white;
}

#down {
  margin-top: -100px;
  padding: 200px 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100px);
}

.video-frame {
  height: 480px;
  border-radius: 10px;
  background: #000 url('../images/logo.svg') no-repeat center center / 128px;
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.video-frame:hover {
  opacity: 0.8;
}

div.icon {
  background: #000;
  width: 57px;
  height: 57px;
  margin: 15px auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

div.icon img {
  width: 34px;
  flex-shrink: 0;
}

.slick-slide {
  padding: 0 15px;
}

.visualizaciones-slider {
  position: relative;
  padding-bottom: 80px; /* espacio para las flechas */
}

.visualizaciones-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16 / 16;
}

.visualizaciones-slider .slick-btn {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.visualizaciones-slider .slick-1 {
  left: calc(50% - 60px);
}

.visualizaciones-slider .slick-2 {
  left: calc(50% + 12px);
}

.visualizaciones-slider .slick-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #000;
  transition: 0.3s;
}

.visualizaciones-slider .slick-btn:hover {
  opacity: 0.8;
}

.money {
  font-size: 52px;
}

.money span {
  font-size: 24px;
}

ul.check_gray {
  list-style: none;
  padding-left: 15px;
}

ul.check_gray li {
  margin-bottom: 10px;
  padding-left: 30px;
}

ul.check_gray li {
  background: url('../images/check_gray.svg') no-repeat 0px 3px / 20px;
}

.border-radius-10 {
  border-radius: 10px;
}

.badged {
  background: white;
  border-radius: 20px;
  display: block;
  padding: 10px 10px 10px 30px;
  position: relative;
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
}

.badged:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 12px;
  width: 12px;
  height: 12px;
  background: #00ff72;
  border-radius: 50%;
}

.destacado {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transform: scale(1.04);
}

.faq-content {
  display: none;
}

.faq-title {
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 15px 0px;
  border: none;
  background: white;
  border-top: 1px #979797 solid;
  font-size: 24px;
  font-family: var(--primary-font);
  padding-right: 60px;
  min-height: 100px;
}

.faq-title::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 40px;
  transform: translateY(-50%);
  transition: 0.3s;
  width: 44px;
  height: 44px;
  background: #000;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq.active .faq-title::after {
  content: '-';
}

.faqs .faq:last-of-type {
  border-bottom: 1px #979797 solid;
}

.img-fluid {
  max-width: 100%;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  max-width: 1200px;
  animation: videoOpen 0.45s cubic-bezier(0.17, 0.84, 0.44, 1);
  z-index: 2;
}

.video-content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  background: #000;
}

.video-close {
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  display: block;
  text-align: right;
  margin-bottom: 15px;
}

.video-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

@media all and (max-width: 991px) {
  .order-2-mobile {
    order: 2 !important;
  }

  p.subtitle {
    font-size: 18px;
  }

  #down {
    padding: 100px 0px 20px 0px;
  }

  .fs-22 {
    font-size: 18px;
  }
}

@keyframes videoOpen {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.05);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
