@charset "UTF-8";
/*----------------------------------------------------*/
/*
    ELIMINA LOS ESTILOS QUE LOS NAVEGADORES ASIGNAN POR DEFECTO, DE MODO QUE SE VEAN CORRECTAMENTE EN TODOS
*/
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}

body {
  font-family: var(--tipo-principal);
  font-size: 100%;
  line-height: 1.4em;
  min-height: 100vh;
  background-color: var(--negro-puro);
  color: var(--blanco-puro);
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, strong {
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

video {
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background-color: var(--negro);
  color: var(--blanco);
}

::selection {
  background-color: var(--negro);
  color: var(--blanco);
}

form, input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
}

textarea {
  overflow-y: scroll;
  resize: none;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*
    DECLARAMOS DISTINTAS FUNCIONES DE ESTRUTURA DE ELEMENOS QUE USAREMOS PARA LOS ESTILOS
*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*
    CREAMOS DISTINTAS ANIMACIONES QUE USAREMOS PARA LOS ESTILOS
*/
@-webkit-keyframes show {
  0% {
    -webkit-transform: translateY(-150vh);
            transform: translateY(-150vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes show {
  0% {
    -webkit-transform: translateY(-150vh);
            transform: translateY(-150vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes show-down {
  0% {
    -webkit-transform: translateY(150vh);
            transform: translateY(150vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes show-down {
  0% {
    -webkit-transform: translateY(150vh);
            transform: translateY(150vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes rotateAnimation {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateAnimation {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*
    AGREGAMOS LAS FUENTES DESDE URL LOCAL O REMOTA
*/
/*=================== fonts ====================*/
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*
    DECLARAMOS LAS DISTINTAS VARIABLES QUE USAREMOS PARA LOS ESTILOS
*/
:root {
  --azul: #00BFFF;
  --blanco-puro: #fff;
  --negro-puro: #000;
  --ancho-contenedor: 1400px;
  /* Tipografía */
  --tipo-principal: "Libre Baskerville", serif;
  --tipo-secundaria: "League Spartan", sans-serif;
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*=========================================================
                    ESTILOS GLOBALES
===========================================================*/
/*=========== ETIQUETAS ===========*/
body {
  font-family: var(--tipo-principal);
  background: var(--negro-puro);
  color: var(--blanco-puro);
}

sup {
  vertical-align: super;
  font-size: 0.6em;
}

a:hover {
  color: var(--azul);
}

/*=========== IDENTIFICADORES ===========*/
/*=========== CLASES ===========*/
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-width: var(--ancho-contenedor);
  font-size: 1em;
  padding: 1em;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 650px) {
  .container {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 480px) {
  .container {
    font-size: 0.5em;
  }
}
@media screen and (max-width: 320px) {
  .container {
    font-size: 0.3em;
  }
}
.container--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scroll {
  overflow-x: scroll;
  overflow-y: hidden;
}

.logo {
  width: 265px;
  min-width: 80px;
  height: auto;
  scale: 1;
  -webkit-animation: scale 5s 0.1s;
          animation: scale 5s 0.1s;
}
@media screen and (max-width: 650px) {
  .logo {
    width: 185px;
  }
}
@media screen and (max-width: 480px) {
  .logo {
    width: 132px;
  }
}
@media screen and (max-width: 320px) {
  .logo {
    width: 80px;
  }
}

.titulo {
  font-family: var(--tipo-secundaria);
  font-size: 6em;
  font-weight: 600;
  text-align: center;
  line-height: 1em;
  letter-spacing: 0.15em;
  padding-left: 0.15em;
}

.subtitulo {
  font-family: var(--tipo-secundaria);
  font-size: 1.9em;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.48em;
  padding-left: 0.48em;
  text-transform: uppercase;
  color: var(--azul);
}

.parrafo {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  padding-top: 3em;
  -webkit-animation: show-down 7s 0.1s;
          animation: show-down 7s 0.1s;
}

/*=========== SECTION ===========*/
.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section__titulo {
  font-family: var(--tipo-secundaria);
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 0.5em;
  padding: 0.4em 0.6em;
}

/*---------------------------------------------------- */