@charset "UTF-8";
:root {
  --bg-color: #051116;
  --primary-color: #051116;
  --secondary-color: #C9A841;
}

.violet {
  color: var(--primary-color);
}

.no-bold {
  font-weight: 400;
}

body {
  background: var(--bg-color);
  color: #ffffff;
  font-family: "Roboto";
}
body form .alerta {
  color: red;
  font-size: 11px;
}

.pt-90 {
  padding-top: 90px;
}

.header {
  background: url(../img/fondo-1.jpg) no-repeat center center/cover;
  height: 100vh;
  max-height: 100vh;
  position: relative;
  margin: 0 auto 60px;
}
.header video {
  box-shadow: 19px 16px 1px #312e2e;
  border: 1px solid var(--secondary-color);
  cursor: pointer;
}
.header .bg-gold {
  background-color: var(--secondary-color);
}
.header header {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
  top: -200px;
}
.header header.scroll {
  padding: 0 4vw;
  transition: all 0.5s ease-in-out;
  position: fixed;
  z-index: 4;
  width: 100%;
  background: var(--primary-color);
  top: 0;
  left: 0;
  margin: 0;
}
.header .banner {
  color: #fff;
  top: 50%;
  left: 50%;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.header .banner .text {
  padding: 0 2rem 0 0;
}
.header .banner .text .headline {
  font-size: 26px;
  font-family: "Roboto Condensed";
  font-style: italic;
}
.header .banner .text .separator {
  margin: 30px 0;
  display: block;
  width: 100px;
  height: 1px;
  background: #ffffff;
}
@media (max-width: 600px) {
  .header .banner .text .separator {
    margin: 15px 0;
  }
}
.header .banner .text .title-01 {
  width: 100%;
  margin: 10px 0;
}
.header .banner .text .title-02 {
  width: 100%;
  margin: 10px 0;
}
.header .banner .text p {
  font-size: 24px;
}
.header .banner .video {
  padding-top: 90px;
}
@media (max-width: 600px) {
  .header .banner {
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
  .header .banner .text {
    padding: 0 0 0 0;
  }
  .header .banner .text .headline {
    font-size: 21px;
  }
  .header .banner .text .title-01 {
    width: 60%;
  }
  .header .banner .text p {
    font-size: 21px;
  }
  .header .banner .video {
    padding-top: 0px;
  }
}
.header .addEmail {
  width: 100%;
  position: fixed;
  bottom: -500px;
  background: #080021;
  background: linear-gradient(180deg, #0511168a 16%, #c9a74162 100%);
  padding: 10px 0 40px;
  left: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.header .addEmail .row .col {
  padding: 0;
}
.header .addEmail form .content {
  max-width: 600px;
  box-shadow: 0 28px 79px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
  margin: 0;
}
.header .addEmail form .content input {
  border: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
}
.header .addEmail form .content button {
  border: 0;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 15px;
  font-weight: bold;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.header .addEmail form .content button:before {
  content: "";
  animation: shine linear 3s;
  animation-iteration-count: infinite;
  position: absolute;
  height: 200px;
  width: 700px;
  background: white;
  background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(255, 241, 172, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
  margin: -150px 0 0;
}
@keyframes shine {
  0% {
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(2000px);
  }
}
.header .addEmail form label {
  margin: 10px auto;
  display: table !important;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .header .addEmail {
    width: 100%;
    top: auto;
    bottom: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, #0511168a 16%, #c9a74162 100%);
  }
  .header .addEmail form .content {
    transform: none;
    position: relative;
    left: 0;
  }
  .header .addEmail form .content button {
    font-size: 14px;
    padding: 18px 0 15px;
  }
  .header .addEmail form label {
    color: #fff;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
    display: none !important;
  }
}
@media (min-width: 600px) {
  .header .addEmail.scroll {
    position: fixed;
    bottom: 0;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    background: #bf455e;
    background: linear-gradient(180deg, #0511168a 16%, #c9a74162 100%);
  }
  .header .addEmail.scroll form label {
    color: #fff;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 600px) {
  .header {
    background: url(../img/m-fondo-1.jpg) no-repeat center center/cover;
    max-height: 100%;
    height: auto;
    padding-bottom: 30px;
  }
  .header header {
    padding: 15px;
  }
  .header header nav .container-fluid {
    padding: 0;
  }
  .header header nav .container-fluid .main-nav {
    display: block !important;
    width: 100%;
  }
}
.header .form-02 form .content {
  text-align: left;
  max-width: 600px;
  box-shadow: 0 28px 79px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.header .form-02 form .content .col {
  padding: 0;
}
.header .form-02 form .content input {
  border: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
}
.header .form-02 form .content button {
  border: 0;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 15px;
  font-weight: bold;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.header .form-02 form .content button:before {
  content: "";
  animation: shine linear 3s;
  animation-iteration-count: infinite;
  position: absolute;
  height: 200px;
  width: 700px;
  background: white;
  background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(255, 249, 172, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
  margin: -150px 0 0;
}
@keyframes shine {
  0% {
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(2000px);
  }
}
.header .form-02 form label {
  margin: 10px auto;
  display: block;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

main img {
  box-shadow: 9px 9px 1px var(--secondary-color);
}
main section {
  margin: 0 auto 50px;
}
main section .subtitle2 {
  text-align: center;
  margin-bottom: 37px;
  font-family: "Roboto Condensed";
  font-weight: 300;
}
main section .subtitle2 span {
  color: var(--secondary-color);
}
main section .subtitle {
  margin: 0 auto 50px;
  max-width: 800px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto Condensed";
  font-size: 42px;
}
main section .subtitle span {
  color: var(--secondary-color);
}
main section .subtitle.italic {
  font-style: italic;
}
main section .subtitle b {
  font-weight: 600;
}
main section .questions ul {
  margin: 0 50px 0;
  padding: 0;
  list-style: none;
}
main section .questions ul li {
  position: relative;
  min-height: 84px;
  margin: 0 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
main section .questions ul li span {
  color: var(--secondary-color);
  position: absolute;
  font-family: "Roboto Condensed";
  font-weight: 600;
  font-size: 110px;
  top: -11px;
  left: -60px;
  line-height: 1;
}
main section .questions ul li:last-child {
  margin: 0;
}
@media (max-width: 600px) {
  main section .questions ul {
    margin: 0 0 50px 60px;
  }
  main section .questions ul li {
    font-size: 16px;
  }
}
main section .about {
  margin: 0 0 5rem;
}
main section .about h4 {
  font-weight: normal;
}
main section .about p {
  font-size: 20px;
}
main section .about p strong {
  color: var(--primary-color);
}
main section .about p strong:before {
  content: "";
  height: 14px;
  width: 14px;
  margin: 0 15px 0 0;
  border-radius: 20px;
  border: 4px solid var(--primary-color);
  display: inline-block;
}
@media (max-width: 600px) {
  main section .about {
    margin: 0 0 100px;
  }
  main section .about.about2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  main section .about.about2 .first {
    order: 1;
  }
  main section .about.about2 .two {
    order: 2;
  }
  main section .about h4 {
    margin: 0 0 30px;
  }
  main section .about p {
    font-size: 16px;
  }
  main section .about .col img {
    margin: 0 0 30px;
  }
}
main section .countdown {
  display: flex;
  max-width: 500px;
  margin: 35px auto;
}
main section .countdown .countdown-title {
  text-align: center;
  width: 100%;
  text-shadow: 0 0 25px rgba(238, 130, 238, 0.5);
}
main section .countdown .countdown-title .countdown-data {
  display: block;
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 600px) {
  main section .countdown .countdown-title .countdown-data {
    font-size: 50px;
  }
}
main section.mark2 {
  background: var(--secondary-color);
  background: url(../img/fondo-2.jpg) no-repeat center center/cover;
  margin: 0 !important;
}
main section.mark2 .container {
  padding-top: 26px;
  padding-bottom: 26px;
}
main section.mark2 .container h3 {
  margin: 0 auto;
}
main section.mark {
  background: var(--secondary-color);
  background: url(../img/fondo-3.jpg) no-repeat center center/cover;
  border-top: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  margin: 0 !important;
}
main section.mark .container {
  padding-top: 26px;
  padding-bottom: 26px;
}
main section.mark h3 {
  max-width: 890px;
  text-align: center;
  font-size: 42px;
  margin: 0 auto 50px;
}
@media (max-width: 600px) {
  main section.mark h3 {
    margin: 0 auto 20px;
  }
}
main section.mark #carruselTestimonios .carousel-control-prev,
main section.mark #carruselTestimonios .carousel-control-next {
  display: none;
}
main section.mark #carruselTestimonios .carousel-item {
  height: 280px;
  position: relative;
  font-family: "Roboto Condensed";
  font-size: 18px;
}
main section.mark #carruselTestimonios .carousel-item .content {
  background: #fff;
  box-shadow: 0 28px 59px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  color: #000000;
}
main section.mark #carruselTestimonios .carousel-item .content p {
  font-style: italic;
  text-align: center;
}
main section.mark #carruselTestimonios .carousel-item .content span {
  font-weight: bold;
  font-size: 14px;
  font-family: "Roboto Condensed";
  text-align: left;
  display: block;
  width: 100%;
  background: url(../img/stars.png) no-repeat center right/75px;
}
@media (max-width: 600px) {
  main section.mark #carruselTestimonios .carousel-item .content {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
main section .tabs {
  overflow: hidden;
}
main section .tabs .tab {
  width: 100%;
  color: white;
  overflow: hidden;
  margin: 0 0 3px;
}
main section .tabs .tab .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #111111;
  background: white;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  overflow: hidden;
}
main section .tabs .tab .tab-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1em;
  background: #111111;
  font-weight: bold;
  cursor: pointer;
  color: white;
  font-size: 1em;
}
@media (max-width: 600px) {
  main section .tabs .tab .tab-label {
    font-size: 1em;
    font-weight: normal;
  }
}
main section .tabs .tab .tab-label:hover {
  background: var(--secondary-color);
}
main section .tabs .tab .tab-label:after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
main section .tabs .tab input {
  display: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
}
main section .tabs .tab input:checked + .tab-label {
  background: var(--secondary-color);
}
main section .tabs .tab input:checked + .tab-label:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
main section .tabs .tab input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
main section .tab-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #111111;
  cursor: pointer;
}
main section .tab-close:hover {
  background: #dab746;
}

.separator {
  background: var(--primary-color);
  width: 65px;
  height: 5px;
  border-radius: 10px;
  margin: 0 auto 50px;
}

footer {
  margin: 0 auto;
  padding: 50px 0 100px;
  font-size: 12px;
  background: var(--bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
footer .logo-footer {
  margin: 20px 0 0;
}
footer a {
  color: var(--primary-color);
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  font-size: 12px;
  margin: 0 0 15px;
}
footer .footer-faqs {
  margin: 15px 0;
}
footer .footer-faqs a {
  margin: 0 5px;
}
footer .socials {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
footer .socials li {
  display: inline-block;
  margin: 0 10px;
}
footer .socials li a {
  display: block;
}
footer .socials li a img {
  width: 30px;
  filter: invert(1);
}
@media (max-width: 600px) {
  footer {
    padding: 30px 30px 150px;
    text-align: center;
  }
  footer .logo-footer {
    width: 120px;
    margin: 10px 0;
  }
  footer .text-end {
    margin-bottom: 30px;
    text-align: center !important;
  }
}

.modal {
  backdrop-filter: blur(20px);
}
.modal .modal-dialog {
  top: 50%;
  transform: translateY(-50%) !important;
}
.modal .modal-title {
  color: var(--bg-color);
}
.modal form .content input[type=text] {
  outline: 0;
  padding: 15px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 0 15px;
}
.modal form .content button {
  border-radius: 5px;
  border: 0;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 15px;
  font-weight: bold;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.modal form .content button:before {
  content: "";
  animation: shine linear 3s;
  animation-iteration-count: infinite;
  position: absolute;
  height: 200px;
  width: 700px;
  background: white;
  background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(172, 222, 255, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
  margin: -150px 0 0;
}
@keyframes shine {
  0% {
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(2000px);
  }
}
.modal form label {
  margin: 10px auto;
  display: table;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #666666;
}

.exito {
  margin: 0;
  padding: 20px 0 50px;
  text-align: center;
  height: 100%;
  max-height: 100%;
  font-weight: normal;
}
.exito:after {
  display: none;
}
.exito .boton {
  border: 0;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 15px;
  font-weight: bold;
  display: block;
  text-decoration: none;
  width: 100%;
  position: relative;
  margin: 18px auto;
  overflow: hidden;
  border-radius: 3px;
  max-width: 473px;
}
.exito .boton:hover {
  background-color: #d5c237;
}
.exito .bg-01 {
  background: url(./img/fondo-3.jpg) no-repeat center center/cover;
  padding: 15px 0;
}
.exito h1 {
  margin: 1.5rem 0;
}
.exito h1.title {
  text-shadow: 0 0 50px rgba(64, 160, 220, 0.8);
  font-size: 3rem;
}
@media (max-width: 600px) {
  .exito h1.title {
    font-size: 3rem;
  }
}
.exito h5 {
  max-width: 564px;
  margin: 20px auto;
}
.exito .tickets {
  width: 100%;
  max-width: 300px;
}
.exito .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  transform: none;
  left: 0;
  top: 0;
}
.exito .container .banner .text .separator {
  margin: 25px auto;
}
.exito .list {
  text-align: left;
  margin: 0;
  padding: 0 0 0 40px;
  list-style: none;
}
.exito .list li {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 2rem;
  position: relative;
}
@media (max-width: 600px) {
  .exito .list li {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.exito .list li span {
  position: absolute;
  left: -40px;
  font-size: 3rem;
  top: 0;
  line-height: 1;
}
.exito .list li a {
  color: var(--secondary-color);
}
.exito .list .subscribe {
  background: #c4302b url(../img/yt-play.png) no-repeat 10px center/40px;
  border-radius: 7px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding-right: 30px;
  padding-left: 70px;
  position: relative;
  color: white;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 1px;
  margin: 15px 0;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}
.exito .list.last {
  background: var(--secondary-color);
  padding: 40px 40px 10px 70px;
  line-height: 1;
}
.exito .list.last li span {
  left: -44px;
  top: -5px;
}
.exito .shareWP {
  max-width: 625px;
  margin: 1rem auto;
}

.wap {
  align-items: center;
  width: 207px;
  border-radius: 7px;
  background-color: #25d366;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  margin-top: 30px;
  padding: 7px 20px;
  opacity: 0.9;
  display: flex;
}
.wap:hover {
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#faqs p {
  /* max-width: 700px; */
  margin: 13px auto;
  text-align: center !important;
  font-size: 19px;
}

/*# sourceMappingURL=styles.css.map */
