.logoweb {
    background-color: black;
    margin-top: 35px;
    border-radius: 6px;
    padding: 5px;
}
.logoweb img {
    max-width: 215px;
    padding: 5px 0px;
}
.vipvip {
    margin-top: 10px;
    font-weight: bolder;
}
/* VISIBILIDAD POR DISPOSITIVO */
.vm-popup--only-mobile,
.vm-popup--only-desktop {
  display: none;
}
body.device-mobile .vm-popup--only-mobile {
  display: block !important;
}
body.device-desktop .vm-popup--only-desktop {
  display: block !important;
}

/* CONTENEDOR DEL POPUP */
body #iqitpopup.vm-popup {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 95% !important;
  max-width: 500px !important;
  background-color: #fff !important;
  background-image: none !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2) !important;
  border-radius: 12px !important;
  z-index: 9999 !important;
  padding: 30px 25px 25px !important;
  font-family: "Helvetica Neue", sans-serif;
  text-align: center !important;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  max-height: 90vh;
}

body #iqitpopup.vm-popup.showed-iqitpopup {
  opacity: 1 !important;
  visibility: visible !important;
}

/* OVERLAY */
#iqitpopup-overlay.vm-popup__overlay {
  background-color: rgba(0, 0, 0, 0.5) !important;
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
  z-index: 9998 !important;
  display: none !important;
}

/* BOTÓN CERRAR */
.vm-popup__close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: transparent !important;
  z-index: 10000 !important;
}
.vm-popup__close-btn {
  background: #000 !important;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
}
.vm-popup__close-btn span {
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

/* CONTENIDO */
.vm-popup__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vm-popup__title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  color: #111;
  margin-bottom: 5px;
}

.vm-popup__subtitle {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.vm-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.vm-popup__form input[type="email"] {
  padding: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
}
.vm-popup__form button {
  background-color: #000 !important;
  color: #fff;
  padding: 18px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.vm-popup__form button:hover {
  background-color: #333 !important;
}

.vm-popup__countdown-wrapper {
  text-align: center;
  margin-top: 30px;
}

.vm-popup__countdown-digits {
  font-size: 5rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 2px;
}

.vm-popup__countdown-labels {
  display: flex;
  justify-content: center;
  gap: 60px;
  font-size: 0.9rem;
  color: #000;
  margin-top: 20px;
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
   transform: scale3d(1, 1, 1);
  }
}

.vm-popup__countdown--pulse {
  animation: pulse 1s ease-in-out infinite;
}

/* TAB LATERAL */
#popup-tab.vm-popup__tab {
  position: fixed;
  top: 40%;
  left: 0;
  background: #000;
  color: #fff;
  padding: 10px 8px;
  transform: rotate(-90deg);
  transform-origin: left top;
  z-index: 99999;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0 0 6px 6px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  display: none;
}
#popup-tab.vm-popup__tab--visible {
  display: block !important;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
  body #iqitpopup.vm-popup {
    width: 95% !important;
    padding: 25px 20px !important;
  }
    .vm-popup__title {
        font-size: 32px;
        font-weight: bold;
        padding: 6px 0px;
    }
  .vm-popup__subtitle { font-size: 14px; }
  .vm-popup__countdown { font-size: 16px; }
}