﻿@charset "UTF-8";
/*CSS Reset*/
body {
  margin: 0; }
  body a {
    display: block;
    text-decoration: none; }
  body h1,
  body p {
    margin: 0;
    font-weight: normal; }
  body img {
    display: block;
    max-width: 100%; }
  body ul {
    margin: 0;
    padding: 0; }
  body li {
    list-style: none; }

/*Início do CSS*/
body {
  /*Animações de transição*/ }
  @media (max-width: 767px) {
    body {
      overflow: hidden; } }
  body .logo_beyond {
    max-width: 150px;
    margin-top: 20px; }
    @media (max-width: 767px) {
      body .logo_beyond {
        max-width: 100px; } }
  body .scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 200px;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    opacity: 0;
    animation: opacidade 10s 1.5s alternate infinite; }

@keyframes opacidade {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }
    body .scroll .mouse {
      width: 45px;
      height: 80px;
      border: 2px solid #fff;
      border-radius: 30px;
      display: flex;
      justify-content: center;
      align-items: flex-start; }
      @media (max-width: 767px) {
        body .scroll .mouse {
          border-color: transparent; } }
      body .scroll .mouse > div {
        width: 10px;
        height: 10px;
        background-color: #fff;
        margin-top: 10px;
        border-radius: 50%;
        animation: roler 1.5s infinite; }

@keyframes roler {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 35px, 0); } }
    body .scroll > p {
      color: #fff;
      text-transform: uppercase;
      font-size: 12px;
      text-align: center;
      margin-top: 5px; }
  body .scroll.hide {
    display: none; }
  body .main {
    font-family: 'Segoe UI Semibold', sans-serif; }
    body .main > section {
      width: 100%;
      height: calc(100% - 72px) !important;
      position: absolute !important;
      top: unset !important;
      bottom: 0 !important;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      z-index: -1; }
      @media (max-width: 767px) {
        body .main > section {
          flex-direction: column;
          height: calc(100% - 68px) !important; } }
      body .main > section .midia,
      body .main > section .txt {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; }
        @media (max-width: 767px) {
          body .main > section .midia,
          body .main > section .txt {
            width: 100%;
            height: 50vh; } }
        body .main > section .midia > video,
        body .main > section .txt > video {
          width: 100%;
          height: 100%;
          min-height: 100vh;
          object-fit: cover; }
          @media (max-width: 1100px) {
            body .main > section .midia > video,
            body .main > section .txt > video {
              height: 150vh;
              min-height: 150vh; } }
          @media (max-width: 767px) {
            body .main > section .midia > video,
            body .main > section .txt > video {
              height: 80vh;
              min-height: 80vh; } }
      body .main > section h1 {
        color: #fff;
        font-size: 2rem;
        text-align: center;
        max-width: 60%; }
        @media (max-width: 1400px) {
          body .main > section h1 {
            font-size: 1.5rem; } }
        @media (max-width: 767px) {
          body .main > section h1 {
            font-size: 1.2rem;
            text-align: center;
            max-width: 80%; } }
    body .main > section.slide-1 > video {
      width: 100%;
      height: 120vh;
      position: absolute;
      object-fit: cover;
      z-index: -1; }
      @media (max-width: 767px) {
        body .main > section.slide-1 > video {
          max-width: 90%;
          height: 120vh;
          max-width: 100%; } }
    body .main > section.slide-1 > h1 {
      position: absolute;
      color: #fff;
      font-size: 3rem;
      max-width: 63%;
      text-align: center;
      opacity: 1;
      transition: opacity .5s; }
      body .main > section.slide-1 > h1 .logo_beyond {
        margin: auto;
        margin-top: 20px; }
      @media (max-width: 1600px) {
        body .main > section.slide-1 > h1 {
          max-width: 75%; } }
      @media (max-width: 1401px) {
        body .main > section.slide-1 > h1 {
          max-width: 87%; } }
      @media (max-width: 1100px) {
        body .main > section.slide-1 > h1 {
          max-width: 85%;
          font-size: 2.2rem; } }
      @media (max-width: 767px) {
        body .main > section.slide-1 > h1 {
          max-width: 73%;
          font-size: 2.2rem; } }
      @media (max-width: 450px) {
        body .main > section.slide-1 > h1 {
          max-width: 88%;
          font-size: 2.2rem; } }
    body .main > section.slide-1 h1.ativo {
      opacity: 0; }
    body .main > section.slide-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 50%; }
      body .main > section.slide-2 > .txt {
        background-color: navy;
        width: 100%; }
        body .main > section.slide-2 > .txt:nth-child(2) {
          background-color: tomato; }
      body .main > section.slide-2 > .midia {
        background: no-repeat center/cover url("../img/apresentacao/tela2a.jpg");
        width: 100%; }
        body .main > section.slide-2 > .midia:last-child {
          background: no-repeat center/cover url("../img/apresentacao/tela2b.jpg"); }
          @media (max-width: 767px) {
            body .main > section.slide-2 > .midia:last-child {
              background-position-x: 30%; } }
    body .main > section.slide-3 {
      flex-direction: column; }
      body .main > section.slide-3 > .txt {
        background-color: grey;
        width: 100%;
        height: 40vh; }
        @media (max-width: 1100px) {
          body .main > section.slide-3 > .txt > h1 {
            padding-top: 3rem; } }
      body .main > section.slide-3 > .midia {
        width: 100%;
        height: 60vh;
        background: no-repeat center/cover url("../img/apresentacao/tela3.jpg"); }
      body .main > section.slide-3 > button {
        position: absolute;
        top: 75%;
        width: 15%;
        height: 70px;
        background: #1E5A80;
        border: none;
        color: #fff;
        font-family: 'Segoe UI';
        font-size: 1.2rem;
        cursor: pointer; }
    body .main > section.slide-4 {
      justify-content: flex-end; }
      @media (max-width: 767px) {
        body .main > section.slide-4 {
          font-size: 2.5rem;
          text-align: center;
          justify-content: flex-start; } }
      body .main > section.slide-4 > .txt {
        background-color: darkgreen;
        z-index: 1; }
      body .main > section.slide-4 > .midia {
        position: absolute;
        width: 100%; }
        @media (max-width: 767px) {
          body .main > section.slide-4 > .midia {
            bottom: 0;
            margin-left: 0;
            width: 100%; } }
    body .main > section.slide-5 > .txt {
      background-color: purple; }
    body .main > section.slide-5 > .midia {
      background: no-repeat center/cover url("../img/apresentacao/tela5.jpg"); }
    body .main > section.slide-6 {
      justify-content: flex-end; }
      @media (max-width: 767px) {
        body .main > section.slide-6 {
          font-size: 2.5rem;
          text-align: center;
          justify-content: flex-start; } }
      body .main > section.slide-6 > .txt {
        background-color: tomato;
        z-index: 1; }
      body .main > section.slide-6 > .midia {
        position: absolute;
        width: 100%; }
        @media (max-width: 767px) {
          body .main > section.slide-6 > .midia {
            bottom: 0;
            margin-left: 0;
            width: 100%; } }
    body .main > section.slide-7 > .txt {
      background-color: deepskyblue; }
    body .main > section.slide-7 > .midia {
      background: no-repeat center/cover url("../img/apresentacao/tela7.jpg");
      animation-duration: 1.5s; }
    body .main > section.slide-8 {
      justify-content: flex-start; }
      body .main > section.slide-8 > .txt {
        background-color: crimson; }
      body .main > section.slide-8 > .midia {
        position: absolute;
        z-index: -1;
        width: 100%;
        margin-left: 128px; }
        @media (max-width: 767px) {
          body .main > section.slide-8 > .midia {
            position: absolute;
            z-index: -1;
            width: 100%;
            margin-left: 0px;
            bottom: 0; } }
    body .main > section.slide-9 > .txt {
      background-color: darkgoldenrod;
      display: flex;
      flex-direction: column; }
      @media (max-width: 1100px) {
        body .main > section.slide-9 > .txt > h1 {
          font-size: 1.7rem;
          padding-top: 3rem; } }
      @media (max-width: 767px) {
        body .main > section.slide-9 > .txt > h1 {
          font-size: 1rem;
          padding-top: 3rem; } }
      body .main > section.slide-9 > .txt > button {
        height: 70px;
        background: #1E5A80;
        border: none;
        margin-top: 50px;
        color: #fff;
        font-family: 'Segoe UI';
        font-size: 1.2rem;
        cursor: pointer;
        outline: none;
        transition: .2s ease-in-out; }
        body .main > section.slide-9 > .txt > button:hover {
          transform: scale(1.1); }
        @media (max-width: 767px) {
          body .main > section.slide-9 > .txt > button {
            font-size: 1rem;
            padding: 20px;
            margin: 50px 0; } }
    body .main > section.slide-9 > .midia {
      background: no-repeat center/cover url("../img/apresentacao/tela9.jpg");
      animation-duration: 1.5s; }
    body .main > section.slide-old {
      flex-direction: column; }
      body .main > section.slide-old > .txt {
        background-color: rebeccapurple;
        width: 100%;
        height: 50vh; }
      body .main > section.slide-old > .midia {
        width: 100%;
        height: 50vh;
        background: no-repeat center/cover url("../img/apresentacao/tela4.jpg"); }
      body .main > section.slide-old > button {
        position: absolute;
        top: 75%;
        width: 15%;
        height: 70px;
        background: #1E5A80;
        border: none;
        color: #fff;
        font-family: 'Segoe UI';
        font-size: 1.2rem;
        cursor: pointer; }
        @media (max-width: 800px) {
          body .main > section.slide-old > button {
            width: 150px; } }
  body section.active span {
    padding: 0 6px;
    background: linear-gradient(to bottom, #1e5a80 0%, #1e5a80 100%);
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 0px 0px;
    transition: background-size .3s;
    animation: up 1s 2.5s forwards; }

@keyframes up {
  from {
    background-size: 0px 0px; }
  to {
    background-size: 4px 100%; } }
  body section.active .anima-esquerda {
    animation: anima-esquerda 1.5s forwards; }

@keyframes anima-esquerda {
  from {
    transform: translate3d(-20%, 0, 0);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  body section.active .anima-direita {
    animation: anima-direita 1.5s forwards; }

@keyframes anima-direita {
  from {
    transform: translate3d(20%, 0, 0);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  body section.active .anima-cima {
    animation: anima-cima 1.5s forwards; }

@keyframes anima-cima {
  from {
    transform: translate3d(0, 20%, 0);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  body section.active .anima-baixo {
    animation: anima-baixo 1.5s forwards; }

@keyframes anima-baixo {
  from {
    transform: translate3d(0, -20%, 0);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
  body section.active .anima-zoom {
    animation: anima-zoom .8s forwards; }

@keyframes anima-zoom {
  from {
    transform: scale(0);
    opacity: 0; }
  to {
    transform: scale(1);
    opacity: 1; } }
  body footer {
    display: none; }
