<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*, :after, :before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  scroll-behavior: smooth;
}

p, a, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -o-linear-gradient(#b40483, #710d79);
  background: -webkit-gradient(linear, left top, left bottom, from(#b40483), to(#710d79));
  background: linear-gradient(#b40483, #710d79);
}
.header__idiomas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  padding: 0;
}
.header__idiomas--txt {
  background-color: #2f2f2f;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__idiomas--txt .idiomas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__idiomas--txt a, .header__idiomas--txt p {
  font-weight: 300;
  margin: 0;
  padding: 0 0 0 15px;
  font-size: 0.7rem;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.header__idiomas--txt a:last-child {
  padding-right: 20px;
}
.header__idiomas--txt .seleccionado {
  font-weight: 800;
  color: #FFFFFF;
}
.header__idiomas--txt .home {
  color: #FFFFFF;
}
.header__container {
  width: 100%;
  text-align: center;
}
.header__container img {
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
}

.main {
  overflow: hidden;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.main .main__container{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .main__container .boton {
  background-color: #b5a160;
  padding: 20px 60px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}

.main__container--txt {
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.3rem;
  text-align: left;
  text-decoration: none;
  color: #2f2f2f;
}
.main__container h2 {
  font-family: "Bungee Spice", sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
}
.main__container .destacado__txt {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3rem;
  text-align: center;
  text-decoration: none;
  color: #2f2f2f;
}
.main .btn {
  text-align: center;
}
.main .btn a {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 20px 0;
  margin: 0 auto;
  text-decoration: none;
  font-weight: 500;
  color: #710d79;
  border: 1px solid #710d79;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.main .btn a:hover {
  background-color: #710d79;
  color: #FFFFFF;
}
.main .gradient {
  background: -o-linear-gradient(#b40483, #710d79);
  background: -webkit-gradient(linear, left top, left bottom, from(#b40483), to(#710d79));
  background: linear-gradient(#b40483, #710d79);
  padding: 20px;
  position: relative;
}
.main .gradient img {
  width: 120px;
  position: absolute;
  top: -40px;
  right: -30px;
  z-index: 1;
}
.main .gradient .main__container--txt {
  color: #FFFFFF;
  font-weight: 800;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.3rem;
  text-align: left;
}
.main .gradient .main__container--txt span {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1rem;
  font-style: italic;
}

.footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  background: -o-linear-gradient(#710d79, #b40483);
  background: -webkit-gradient(linear, left top, left bottom, from(#710d79), to(#b40483));
  background: linear-gradient(#710d79, #b40483);
}
.footer img {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 300px;
}
.footer .img-1 {
  left: -150px;
}
.footer .img-2 {
  right: -150px;
}

@media screen and (min-width: 768px) {
  .main .gradient .main__container--txt .intro {
    display: none;
  }
}</pre></body></html>