/* Inicialização do DOM */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bodymovin svg path {
    vector-effect: non-scaling-stroke;
    stroke-width: 2px;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
}

/* Wrapper */
body.home #topo {
  width: 100%;
  height: 100vh;
  background-color: #000;
}

body.empresas #topo {
  width: 100%;
  height: 100vh;
  background-color: #C7DA00;
}

#topo .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bodymovin {
  width: 100%;
  height: 100%;
  opacity: 0.3; /* Standard compliant browsers */
   -moz-opacity: 0.3; /* Firefox and Mozilla browsers */
   -webkit-opacity: 0.3; /* WebKit browser e.g. Safari */
}

/* HOME */
/* Video + Logo + Texto - */
body.home #topo .wrapper .video {
  position: absolute;
  width: 300vw;
  height: 100vh;
  left: 50%;
  top: -25%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  body.home #topo .wrapper .video {
    position: absolute;
    width: 250vw;
    height: 250vh;
    top: -95%;
    left: -90%;
    transform: initial;
  }
}

@media (min-width: 992px) {
  body.home #topo .wrapper .video {
    position: absolute;
    width: 250vw;
    height: 250vh;
    top: -95%;
    left: -90%;
  }
}

@media (min-width: 1200px) {
  body.home #topo .wrapper .video {
    position: absolute;
    width: 190vw;
    height: 190vh;
    top: -60%;
    left: -65%;
  }
}

@media (min-width: 1400px) {
  body.home #topo .wrapper .video {
    position: absolute;
    width: 160vw;
    height: 160vh;
    top: -40%;
    left: -50%;
  }
}

/* PJ */
/* Video + Logo + Texto - */
body.empresas #topo .wrapper .video {
  position: absolute;
  width: 300vw;
  height: 100vh;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  body.empresas #topo .wrapper .video {
    position: absolute;
    width: 250vw;
    height: 250vh;
    top: -60%;
    left: -60%;
    transform: initial;
  }
}

@media (min-width: 992px) {
  body.empresas #topo .wrapper .video {
    position: absolute;
    width: 250vw;
    height: 250vh;
    top: -60%;
    left: -60%;
  }
}

@media (min-width: 1200px) {
  body.empresas #topo .wrapper .video {
    position: absolute;
    width: 190vw;
    height: 190vh;
    top: -32%;
    left: -30%;
  }
}

@media (min-width: 1400px) {
  body.empresas #topo .wrapper .video {
    position: absolute;
    width: 200vw;
    height: 200vh;
    top: -40%;
    left: -35%;
  }
}


/* Logo */
#topo .wrapper .video .logo {
  width: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 900;
}

@media (min-width: 768px) {
  #topo .wrapper .video .logo {
    width: 300px;
  }
}

/* HOME */
/* Texto */
body.home #topo .wrapper .text {
  position: absolute;
  width: 100%;
  padding: 32px;
  bottom: 20%;
}

@media (min-width: 768px) {
  body.home #topo .wrapper .text {
    width: 60%;
    padding: 32px;
    bottom: 18%;
    right: 5%;
  }
}

@media (min-width: 992px) {
  body.home #topo .wrapper .text {
    width: 60%;
    padding: 32px;
    bottom: 18%;
    right: 8%;
  }
}

@media (min-width: 1200px) {
  body.home #topo .wrapper .text {
    width: 50%;
    padding: 32px;
    bottom: 14%;
    right: 5%;
  }
}

@media (min-width: 1400px) {
  body.home #topo .wrapper .text {
    width: 40%;
    bottom: 16%;
    right: 8%;
  }
}

/* EMPRESAS */
/* Texto */
body.empresas #topo .wrapper .text {
  position: absolute;
  width: 100%;
  padding: 32px;
  top: 6%;
}

@media (min-width: 768px) {
  body.empresas #topo .wrapper .text {
    width: 60%;
    padding: 32px;
    top: 18%;
    left: 15%;
  }
}

@media (min-width: 992px) {
  body.empresas #topo .wrapper .text {
    width: 60%;
    padding: 32px;
    top: 15%;
    left: 15%;
  }
}

@media (min-width: 1200px) {
  body.empresas #topo .wrapper .text {
    width: 50%;
    padding: 32px;
    top: 14%;
    left: 7%;
  }
}

@media (min-width: 1400px) {
  body.empresas #topo .wrapper .text {
    width: 50%;
    top: 16%;
    left: 8%;
  }
}

#topo .wrapper .text p {
  font-family: 'NeueHaasGroteskText Pro', sans-serif;
  font-size: 1.7rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-align: left;
  filter: opacity(0.85);
}

@media (min-width: 992px) {
  #topo .wrapper .text p {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1400px) {
  #topo .wrapper .text p {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

#topo .wrapper .text p strong {
  font-weight: bold;
  color: #1278CE;
}

#topo .wrapper .text a {
  font-family: 'NeueHaasGroteskText Pro', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  pointer-events: all;
}

body.home #topo .wrapper .text a:hover {
  color: #aecb17;
}

body.empresas #topo .wrapper .text a:hover {
  color: #1278CE;
}

/* Degrade */
body.home .degrade {
  position: absolute;
  width: 100%;
  height: 120px;
  left: 0;
  bottom: 0;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 60%);
}

body.empresas .degrade {
  position: absolute;
  width: 100%;
  height: 120px;
  left: 0;
  bottom: 0;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(199,218,1,0) 0%, rgba(199,218,1,1) 60%);
}

/* Footer */

footer {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
}


.footer-desk {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}

@media (min-width: 768px) {
  .footer-desk {
    padding: 12px 48px;
  }
}

footer .leftFooter {
  padding:0;
}

footer .leftFooter .seloAnbima {
  height: 48px;
  margin-left: 8px;
  /* display: none; */
}

@media (min-width: 992px) {
  footer .leftFooter .seloAnbima {
    height: 64px;
    margin-left: 36px;
  }
}

.links {
  padding: 0 16px 16px;
}

.selos {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.selos img {
  padding: 0 16px;
  height: 48px;
}
/* Navegação Documentos */

#navDocs {
  width: 100vw;
  height: calc(100vh - 120px);
  background-color: rgba(18,120,207,0.9);
  position: fixed;
  top: 0;
  left: 0;
  padding: 72px 24px 24px;
  top: -100%;
  overflow-y: auto;
  z-index: 990;
}

@media (min-width: 768px) {
  #navDocs {
    width: 390px;
  }
}

#navDocs ul {
  list-style: none;
  padding-left: 0;
}

#navDocs ul li {
  display: block;
  padding: 8px;
}

#navDocs ul li a {
  font-family: 'NeueHaasGroteskText Pro', sans-serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
}

#navDocs ul li a:hover {
  color: #aecb17;
}

#topo .wrapper,
#topo .video {
    position: relative;
    width: 100%;
    height: 100vh;
}

#ekho-lottie,
.bodymovin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    max-width: 80vw;
    height: 400px;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: block;
}

#ekho-lottie svg,
.bodymovin svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
}
