/* Estilos Gerais */
html,
body,
main,
footer,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.2em;
  color: #fff;
}
p{
  line-height: 1.5em;
}
strong, b{
  font-weight: 600 !important;
}
.btn-link:hover,
a,
a:hover,
a:focus,
a:active {
  border: none;
  outline-style: none;
  text-decoration: none;
}
body {
  background: #fff;
  position: relative;
}
section{
  overflow: hidden;
}
.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta {
  background: #bd9c69;
  color: #2c285b;
  padding: 10px 15px;
  border-radius: 18px;
  font-weight: 400;
  font-size: 1.2em;
  display: block;
  width: fit-content;
  transition: ease-in-out .2s;
}
.cta:hover {
  background: #2c285b;
  color: #bd9c69;
}

.invisivel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
}

/* Estilos Menu */

header {
  position: fixed;
  right: 10%;
  top: 120px;
  z-index: 9999;
}

.menu-open-close {
  position: relative;
}
.menu-toggle {
  width: 25px;
  border-radius: 11px;
  display: block;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.menu-toggle::before {
  content: 'MENU';
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: .85em;
  font-family: 'Space Grotesk', sans-serif;
}
.menu-toggle.blue::before {
  color: #111f39;
  font-weight: 600;
}
.menu-toggle span {
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 25px;
  border-radius: 11px;
  height: 1px;
  display: block;
  background: #fff;
}
.menu-toggle.blue span::before,
.menu-toggle.blue span::after {
  background: #111f39;
}
.menuToggle {
  display: block;
  position: relative;
  z-index: 2;
  width: 60px;
  height: 40px;
  cursor: pointer;
}
.menu-lateral {
  margin: 0;
  padding: 0;
  position: fixed;
  top: -120%;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: #111f39;
  z-index: 1000;
  transition: 0.5s;
  overflow-y: hidden;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.close-button {
  position: absolute;
  top: 40px;
  left: 80%;
  cursor: pointer;
}
.close-button span {
  color: #fff;
  font-size: 2.5em;
  font-weight: 300;
  line-height: 48px;
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu-lateral .row {
  overflow-y: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
.menu-lateral a {
  font-size: 5em;
}
.menu-lateral text {
  stroke: #bd9c69;
  stroke-width: 1px;
  fill: #111f39;
}
.menu-lateral.active {
  top: 0;
  overflow: auto;
}

/* Seção 1 */ 

.inicial {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(17, 31, 57, 1);
}

.inicial .bg-absolute {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.gradient-background {
  background: linear-gradient(45deg, rgba(18, 32, 61, 1), rgba(7, 0, 0, 0.27), rgba(12, 31, 68, 0));
  background-size: 300% 300%;
  animation: gradient 10s ease infinite;
  width: 314px;
  height: 354px;
  position: absolute;
  left: 70px;
  top: -150px;
  z-index: 1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.inicial .row {
  position: relative;
}

.inicial .texto,
.inicial img {
  position: relative;
  z-index: 3;
}

h1 span{
  color: #bd9c69;
}

/* Seção 2 */ 

.sobre {
  padding: 100px 0;
  background-size: contain;
  height: auto;
  position: relative;
}

.sobre .titulo {
  color: #bd9c69;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 2.5em;
}

.sobre .titulo span{
  color: #2c285b;
}

.sobre p {
  color: #2c285b;
}

.sobre .box {
  background: #fff;
  box-shadow: 0px 32px 48px rgba(0, 0, 0, 0.07);
  height: 100%;
  padding: 10px;
}

.sobre .box p {
  font-size: 2em;
}

.sobre .box span {
  font-size: 2.2em;
  color: #bd9c69;
  display: block;
  margin: 5px 0;
  font-weight: 500;
  line-height: .8em;
}

.sobre .box p span {
  color: #2c285b;
  font-size: .5em;
  text-transform: uppercase;
  line-height: 1em;
  font-weight: 300;
}

.sobre .onde {
  position: relative;
}

.sobre .number {
  position: relative;
}

.sobre .number::after {
  content: '';
  position: absolute;
  top: -5px;
  right: 0;
  background: #2c285b;
  height: 100%;
  width: 1px;
}

.sobre .number:nth-child(2):after {
  content: none;
}

.sobre .number span {
  color: #bd9c69;
  font-weight: 500;
  font-size: 3em;
}

.sobre .number p {
  text-transform: uppercase;
}

/* Seção 3 */ 

.contato {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contato h2 span {
  color: #bd9c69;
}

.contato .telefones a {
  font-size: 1.1em;
  font-weight: 400;
}

.contato .telefones a:hover {
  color: #bd9c69;
}

.contato .email a {
  font-weight: 400;
}

.contato .email a:hover {
  color: #bd9c69;
}

.contato .enderecos span {
  color: #bd9c69;
  font-weight: 500;
}

.contato .enderecos p {
  font-size: .8em;
}


/* Animação */
[data-anime]{
  opacity: 0;
}
/* [data-anime].animate{
  opacity: 1;
  transform: translate3d(0, 0, 0);
} */

[data-anime="top"].animate{
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInUp {
  0% {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  }
  }
  @keyframes slideInUp {
  0% {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  }
  } 

[data-anime="right"].animate {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInRight {
  0% {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  }
  }
  @keyframes slideInRight {
  0% {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  }
  } 

[data-anime="left"].animate {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInLeft {
  0% {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  }
  }
  @keyframes slideInLeft {
  0% {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  }
  } 

[data-anime="down"].animate {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  }
  }
  @keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  visibility: visible;
  opacity: 0;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  }
} 


/* Responsividade */

@media (max-width: 768px) {
  header {
    top: 60px;
    right: 40px;
  }
  .menu-lateral svg {
    height: 85px;
  }
  .menu-lateral text {
    font-size: 40px;
  }
  .contato .telefones p {
    font-size: 1em;
  }
}