@charset "UTF-8";
/* História Ulisses - CSS */

/* (1) == Estilos gerais == */
body {
  background-color: rgba(29, 177, 241, 1);
  overflow: hidden;
}

/* (2) == Estilos da Capa/Título == */
.capa {
  background-color: white;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  animation-name: opacidade-capa;
  animation-fill-mode: forwards;
  animation-duration: 5s;
  animation-delay: 2s;
}

/* (3) == Estilos da Section 1 == */
.section1 {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.barco {
  width: 110%;
  height: 100vh;
  position: absolute;
  left: -1.4%;
  right: 0;
  top: 2%;
}

.ondas {
  width: 130%;
  height: 68%;
  position: absolute;
  top: 62%;
  right: 0;
  bottom: 0;
  left: -6%;
  animation-name: movimento-ondas;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}

.texto1 {
  opacity: 0;
  width: 30%;
  height: 20%;
  position: absolute;
  top: 15%;
  right: 10%;
  animation-name: opacidade-texto1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 7s;
}

/* (4) == Animações da Section 1 == */
@keyframes opacidade-capa {
  0% {
    margin-bottom: 0px;
    opacity: 1;
  }
  50% {
    margin-bottom: 75px;
    opacity: 1;
  }
  100% {
    margin-bottom: 100px;
    opacity: 0;
    display: none;
  }
}

@keyframes movimento-ondas {
  0% {
    left: -30%;
  }
  50% {
    left: -5%;
  }
  100% {
    left: -30%;
  }
}

@keyframes opacidade-texto1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* (5) == Estilos da Section 2 == */
.section2 {
  opacity: 0;
  background-color: rgba(29, 177, 241, 1);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  animation-name: opacidade-section2;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 13s;
}

.arvore {
  width: 90%;
  height: 100vh;
  position: absolute;
  right: -1%;
  top: 2%;
}

.ulisses {
  width: 40%;
  height: 100%;
  position: absolute;
  left: -40%;
  top: 18%;
  animation-name: movimento-ulisses;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 16s;
  animation-duration: 5s;
}

.texto2 {
  opacity: 0;
  width: 45%;
  height: 17%;
  position: absolute;
  top: 78%;
  right: 16%;
  animation-name: opacidade-texto2;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 19s;
  animation-duration: 3s;
}

/* (6) == Animações da Section 2 == */
@keyframes opacidade-section2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes movimento-ulisses {
  0% {
    left: -40%;
  }
  100% {
    left: -9%;
  }
}

@keyframes opacidade-texto2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* (7) == Estilos da Section com Scroll == */
.scrollable-section {
  display: flex;
  flex-direction: column;
  overflow: auto;
  opacity: 0;
  background-color: rgba(29, 177, 241, 1);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  animation-name: opacidade-scrollable-section;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 23s;
  z-index: 0;
}

/* (8) == Animações da Section com Scroll == */
@keyframes opacidade-scrollable-section {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 3;
  }
}

/* (9) == Estilos da Section 3 == */
.section3 {
  display: flex;
  flex-direction: row;
  height: 100vh;
}
.seta {
  opacity: 0;
  position: fixed;
  width: auto;
  bottom: 0;
  right: 0;
  animation-name: opacidade-seta;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 26s;
}
.contentor-ufiusa {
  width: 30%;
  height: 100vh;
  margin-top: 100px;
  margin-bottom: 20px;
}

.ufiusa {
  opacity: 0;
  width: 0%;
  height: 0%;
  animation-name: ufiusa-aparece;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 26s;
}

.texto3 {
  opacity: 0;
  width: 50%;
  animation-name: opacidade-texto3;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 26s;
}

/* (10) == Animações da Section 3 == */
@keyframes ufiusa-aparece {
  0% {
    opacity: 0;
    width: 80%;
    height: 80vh;
  }
  100% {
    opacity: 1;
    width: 100%;
    height: 100vh;
  }
}

@keyframes opacidade-seta {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacidade-texto3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* (11) == Estilos da Section 4 == */
.ulisses-foge {
  width: 100%;
  height: 100vh;
}
.nuvens:hover {
  opacity: 0;
  width: 48%;
  position: absolute;
}

.nuvens {
  width: 45%;
  position: absolute;
  top: 100%;
  right: 30%;
  transition: 0.5s linear;
}

/* (12) == Estilos da Section 5 == */
.section5 {
  height: 100vh;
}

.montanhas {
  width: 100%;
  height: 100vh;
  position: relative;
  bottom: 1%;
}

.ufiusa-furiosa {
  width: 20%;
  position: absolute;
  left: 70%;
  animation-name: ufiusa-na-montanha;
  animation-timing-function: linear;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

/* (13) == Animações da Section 5 == */
@keyframes ufiusa-na-montanha {
  0% {
    margin-top: 0rem;
  }
  50% {
    margin-top: 1rem;
  }
  100% {
    margin-top: 0rem;
  }
}
