
.c-main {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
}

.c-main.inactive {
  margin: -100vh auto 0;
}

.c-main__bg {
  top: 0;
  left: 0;
}

.c-main__header {
  top: 0;
  left: 0;
  z-index: 555;
  height: 23%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.c-main__top {
  padding: 16px;
}

.c-main__logo {
  display: block;
  height: 28px;
}

.c-main__title {
  color: #fff;
}

.c-main__title h1 {
  font-size: 25px;
  margin-bottom: 10px;
  font-family: 'lg-head-sb', sans-serif;
  font-weight: 500;
}

.c-main__title h1 img {
  width: 63%;
}

.c-main__title p {
  font-size: 15px;
}

.c-main__disclaimer {
  bottom: 0;
  left: 0;
  z-index: 555;
  padding: 16px;
  font-size: 8px;
  color: #fff;
  font-family: 'lg-text-reg';
}

.c-swiper {
  width: 100%;
  height: 100vh;
  margin: auto;
}

.c-swiper__button {
  left: 0;
  bottom: 14%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination {
  bottom: 9% !important;
}

.c-contenido {
  display: none;
}

.c-contenido.active {
  display: block;
}

.c-modelo-info {
  display: none;
  min-height: 1000px;
  background: #627081;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.c-modelo-info.active {
  display: flex;
}

.c-spect {
  /* height: 100vh; */
  width: 100%;
  /* padding: 24px; */
  /* background: #627081; */
}

.c-spect__bg {
  /* position: absolute; */
  top: 0;
  left: 0;
  min-height: 550px;
  display: flex;
}

.c-spect__bg img {
  object-fit: initial !important;
  height: auto !important;
}

.c-spect__bg video {
  object-fit: initial !important;
  height: auto !important;
}

.c-spect__content {
  height: calc(100% - 48px);
  border: 2px solid red;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  /* position: relative; */
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
}

.c-spect__title {
  background: red;
  color: #fff;
  padding: 4px 16px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 302px;
  /* max-width: 350px; */
  font-size: 22px;
  font-family: 'lg-head-sb', sans-serif;
  display: inline-flex;
  max-width: calc(100% - 10px);
  align-items: center;
  gap: 5px;
}

.c-spect__title span img {
  height: 17px !important;
  width: auto;
}

.c-spect__title.espejo span img {
  height: 16px !important;
  width: auto;
}

.c-spect__title.long {
  /* width: 310px; */
  /* width: auto; */
}

.c-spect__title.thinq span img {
  height: 20px !important;
  margin-bottom: -4px;
}

.c-spect__title.smart-diag span img {
  height: 23px !important;
  margin-bottom: -4px;
}

.c-spect__title.uv span img {
  height: 21px !important;
  margin-bottom: -3px;
}

.c-spect__subtitle {
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  display: inline-block;
  width: 295px;
  /* max-width: 315px; */
  font-size: 14px;
  border-bottom: 4px solid red;
}

.c-spect__disclaimer {
  font-size: 8px;
  color: #fff;
  padding: 16px;
  font-family: 'lg-text-reg';
}

.c-arrow-up {
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 .125rem .1875rem rgba(0, 0, 0, .15);
  cursor: pointer;
  height: 3.125rem;
  width: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 16px;
  right: 16px;
  opacity: 0;
  transition: opacity 0.5s;
}

.c-arrow-up.active {
  opacity: 1;
}

.c-arrow-up.hide {
  display: none;
}

.c-arrow-up img {
  height: .6875rem;
  margin-bottom: 4px;
}


@media (min-width: 500px) {
  .c-main {
    max-width: 500px;
    margin: 0 auto;
  }

  .c-modelo-info {
    max-width: 500px;
    margin: 0 auto;
  }

  .c-spect {
    width: 100%;
  }
}

