body {
  font-family: "Lato", sans-serif;
}

h1, h2, h3 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

button {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  border: 5px solid #00B8FF;
  display: inline-block;
  align-self: flex-start;
  color: #00B8FF;
  text-transform: uppercase;
  font-size: 0.9em;
  padding: 20px;
  transition: 0.3s;
}
button:hover {
  background-color: #00B8FF;
  color: white;
}

.section {
  width: 100%;
}

.container {
  width: 1124px;
  max-width: 100%;
  margin: 0 auto;
}

.grid-t2, .grid-landing, .grid-t4, .grid-t3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-t3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-t4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-landing {
  grid-template-columns: 7fr 5fr;
}
.grid-landing .col {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1.super-title {
  color: #0E1531;
  text-transform: uppercase;
  font-size: 3.5em;
  line-height: 1.5em;
}

p.landing-disc {
  margin-top: 20px;
  font-size: 1em;
}

.section-title {
  color: #0E1531;
  font-size: 3em;
  text-transform: uppercase;
  max-width: 500px;
  text-align: center;
  margin: 40px auto;
}

nav {
  width: 100vw;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.3s;
}
nav .menu-container {
  display: flex;
  align-items: center;
}
nav .menu-container ul.menu {
  display: flex;
  margin-right: 40px;
}
nav .menu-container ul.menu li a {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  font-size: 0.8em;
  color: white;
  margin-right: 20px;
  padding: 5px 10px;
  position: relative;
}
nav .menu-container ul.menu li a .barra-menu {
  background-color: #00B8FF;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  transition: 0.3s;
}
nav .menu-container ul.menu li a:hover .barra-menu {
  width: 100%;
}
nav .menu-container .login-link {
  padding: 5px;
  transition: 0.3s;
  border-radius: 5px;
}
nav .menu-container .login-link:hover {
  background-color: #00B8FF;
}

.scroll-nav {
  background-color: white;
  border-bottom: 1px solid #EBEDEB;
}
.scroll-nav .menu-container ul.menu li a {
  color: #C6CAC6;
}
.scroll-nav .login-link {
  background-color: #C6CAC6;
}

.landing {
  min-height: 100vh;
  position: relative;
}
.landing .img-fundo {
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  z-index: -1;
}
.landing .col {
  min-height: 100vh;
}
.landing .col button {
  margin-top: 40px;
}

.atalhos-servicos {
  margin-top: -50px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.atalhos-servicos .atalho {
  border-top: 5px solid #00B8FF;
  display: flex;
  flex-direction: column;
}
.atalhos-servicos .atalho .foto-servico {
  width: 100%;
  height: 365px;
  overflow: hidden;
  cursor: pointer;
}
.atalhos-servicos .atalho .foto-servico img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  transition: 0.3s;
}
.atalhos-servicos .atalho .foto-servico:hover img {
  transform: scale(1.1);
}
.atalhos-servicos .atalho h2 {
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.5em;
  font-size: 1.5em;
  align-self: flex-start;
  color: #0E1531;
}
.atalhos-servicos .atalho a.sabermais {
  display: flex;
  width: 130px;
  color: #C6CAC6;
  align-items: center;
  margin: 20px 0;
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
  transition: 0.3s;
  line-height: 1.2em;
  margin-top: auto;
}
.atalhos-servicos .atalho a.sabermais svg {
  transition: 0.2s;
}
.atalhos-servicos .atalho a.sabermais:hover {
  color: #00B8FF;
}
.atalhos-servicos .atalho a.sabermais:hover svg {
  margin-left: 5px;
}
.atalhos-servicos .atalho a.sabermais:hover svg #_-Icon-Color {
  fill: #00B8FF;
}

.clientes-home {
  padding: 80px 0;
  position: relative;
}
.clientes-home .slider .slide {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.clientes-home .slider .slide .logo-cliente {
  width: 150px;
  height: 150px;
  background-color: white;
  border: solid 10px #C6CAC6;
  margin: 20px auto;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.clientes-home .slider .slide h1 {
  margin-bottom: 10px;
}
.clientes-home .slider .slide h3 {
  text-transform: uppercase;
  color: #00B8FF;
  margin-bottom: 20px;
}
.clientes-home .slider .slide p {
  font-size: 0.9em;
  line-height: 1.5em;
}
.clientes-home .slider-nav {
  padding: 0 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 25px;
}
.clientes-home .slider-nav .prev, .clientes-home .slider-nav .next {
  cursor: pointer;
  transition: 0.3s;
  border: 5px solid transparent;
}
.clientes-home .slider-nav .prev:hover, .clientes-home .slider-nav .next:hover {
  border: 5px solid #00B8FF;
}

.grid-t6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.logos-clientes {
  width: 100%;
  background-color: #EBEDEB;
  margin-top: 40px;
  padding: 20px 0;
  padding-bottom: 60px;
  background-color: #EBEDEB;
}
.logos-clientes .logo-cliente {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos-clientes .logo-cliente img {
  width: 100%;
  max-width: 150px;
  opacity: 0.2;
}
.logos-clientes.xl .logo-cliente {
  width: 80%;
  padding: 0;
  padding-top: 80%;
  border-radius: 50%;
  margin: 0 auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
}

.grid-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

footer {
  width: 100%;
  padding: 80px 0 80px 0;
  background-color: #0E1531;
  background-image: url(../img/fundo-footer@2x.png);
  background-size: cover;
  background-position: center;
}
footer .logo-footer {
  margin-bottom: 60px;
}
footer .footer-title {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2em;
}
footer ul {
  display: flex;
  margin-top: 30px;
}
footer ul li {
  margin-right: 20px;
  color: white;
  line-height: 1.5em;
  font-size: 0.9em;
}
footer input, footer .contactos-page .mensagem textarea, .contactos-page .mensagem footer textarea {
  margin-top: 20px;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 2px solid #00B8FF;
  padding: 5px;
  color: white;
  font-size: 0.9em;
}
footer input::placeholder, footer .contactos-page .mensagem textarea::placeholder, .contactos-page .mensagem footer textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1;
  /* Firefox */
}
footer input:-ms-input-placeholder, footer .contactos-page .mensagem textarea:-ms-input-placeholder, .contactos-page .mensagem footer textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}
footer input::-ms-input-placeholder, footer .contactos-page .mensagem textarea::-ms-input-placeholder, .contactos-page .mensagem footer textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
}
footer button {
  padding: 10px 10px;
  float: right;
  margin-top: 20px;
}
footer .acores2020 {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
footer .acores2020 img {
  max-width: 80%;
}
footer .acores2020 button {
  float: none;
  background-color: #00B8FF;
  border: none;
  border-radius: 10px;
  padding: 14px;
  color: white;
  margin: 0;
  margin-left: 20px;
  text-transform: none;
  font-weight: normal;
}

.page-disc {
  color: #0E1531;
  font-size: 0.9em;
  line-height: 1.5em;
  margin-bottom: 20px;
  max-width: 500px;
}

.containspage-disc p {
  color: #0E1531;
  font-size: 0.9em;
  line-height: 1.5em;
  margin-bottom: 20px;
  max-width: 500px;
}

.grid-landing .col {
  background: white;
  background: linear-gradient(90deg, white 15%, rgba(255, 255, 255, 0) 100%);
}

.clientes {
  position: relative;
  margin-bottom: -40px;
  padding-bottom: 40px;
}
.clientes .half-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #EBEDEB;
  z-index: -1;
}
.clientes .cliente {
  border: 1px solid #EBEDEB;
  padding: 20px;
  text-align: center;
  background-color: white;
}
.clientes .cliente .logo-cliente {
  width: 150px;
  height: 150px;
  background-color: white;
  border: 10px solid #C6CAC6;
  margin: 20px auto;
  border-radius: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.clientes .cliente h3 {
  text-transform: uppercase;
  color: #00B8FF;
  margin-bottom: 20px;
}
.clientes .cliente p {
  font-size: 0.9em;
  line-height: 1.5em;
}

.nossa-equipa {
  padding: 40px 0;
  background-color: #0E1531;
}
.nossa-equipa .section-title {
  color: white;
}
.nossa-equipa .grid-equipa {
  display: grid;
  gap: 20px;
  grid-template-columns: 4fr 8fr;
  color: white;
}
.nossa-equipa .grid-equipa p {
  font-size: 0.9em;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.nossa-equipa .grid-equipa .col {
  margin-bottom: 40px;
}
.nossa-equipa .equipa-info h1 {
  color: #00B8FF;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.porque {
  padding: 120px 0;
}
.porque .grid-porque {
  display: grid;
  grid-template-columns: 2fr 4fr 2fr 4fr;
  gap: 20px;
  margin-top: 80px;
}
.porque .grid-porque .img-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.porque .grid-porque p {
  font-size: 0.9em;
  line-height: 1.5em;
  margin-bottom: 20px;
  color: #0E1531;
}
.porque .grid-porque h1 {
  color: #00B8FF;
  text-transform: uppercase;
  margin-bottom: 20px;
}

ul.landing-servicos {
  margin-left: 20px;
}
ul.landing-servicos li {
  list-style-type: disc;
  color: #00B8FF;
  margin-bottom: 10px;
}
ul.landing-servicos li a {
  font-size: 0.9em;
  color: #00B8FF;
}
ul.landing-servicos li a:hover {
  text-decoration: underline;
}

.content {
  padding: 120px 0;
}
.content .grid-content-1 {
  display: grid;
  gap: 8%;
  grid-template-columns: 4fr 6fr;
}
.content .grid-content-2 {
  display: grid;
  gap: 8%;
  grid-template-columns: 6fr 4fr;
}
.content .content-img {
  width: 100%;
  min-height: 300px;
  background-color: #C6CAC6;
  background-size: cover;
  background-position: center;
}
.content .info-content {
  padding-right: 20%;
  min-height: 500px;
}
.content .info-content .section-title {
  text-align: left;
  margin: 0;
  margin-bottom: 40px;
}
.content .info-content p {
  font-size: 0.9em;
  color: #0E1531;
  margin-bottom: 10px;
}
.content .info-content ul {
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #0E1531;
}
.content .info-content ul li {
  list-style: disc;
  margin-bottom: 10px;
  line-height: 1.5em;
}
.content .info-content button {
  margin-top: 40px;
}
.content .info-content button.white {
  color: white;
  border-color: white;
}
.content .info-content button.white:hover {
  background-color: #0E1531;
}

.invest {
  background-color: #0E1531;
  background-size: cover;
  background-position: center;
  padding: 0;
}
.invest .info-content {
  padding: 140px 0;
  padding-left: 20%;
}
.invest .info-content .section-title, .invest .info-content ul, .invest .info-content p {
  color: white;
}
.invest .info-content ul {
  line-height: 1.5em;
}

.desenvolvimento {
  padding: 40px 0;
  padding-bottom: 160px;
}
.desenvolvimento .section-title {
  margin-bottom: 80px;
}
.desenvolvimento .razao {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0E1531;
  font-size: 0.9em;
  text-align: center;
}
.desenvolvimento .razao h1 {
  text-transform: uppercase;
  font-weight: 500;
  margin: 20px 0;
  font-size: 1.2em;
}
.desenvolvimento .razao p {
  line-height: 1.5em;
}

.contactos-page .super-title {
  margin-bottom: 40px;
}
.contactos-page ul {
  display: flex;
  font-size: 0.9em;
  color: #0E1531;
}
.contactos-page ul li {
  margin-right: 10px;
  margin-bottom: 20px;
  line-height: 1.5em;
}
.contactos-page ul.social {
  margin-top: 20px;
}
.contactos-page ul.social li {
  margin-right: 15px;
}
.contactos-page .col {
  align-items: flex-start !important;
  justify-content: flex-start;
  padding-top: 35%;
}
.contactos-page .mensagem {
  font-size: 0.9em;
  margin-top: 40px;
  width: 70%;
  padding-bottom: 40px;
}
.contactos-page .mensagem h1 {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #0E1531;
  margin-bottom: 20px;
}
.contactos-page .mensagem label {
  color: #0E1531;
  display: block;
  margin-bottom: 10px;
}
.contactos-page .mensagem input, .contactos-page .mensagem textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #C6CAC6;
  padding: 15px;
  margin-bottom: 20px;
  background-color: white;
}
.contactos-page .mensagem textarea {
  resize: none;
  height: 300px;
}
.contactos-page .mensagem .privacidade {
  color: #0E1531;
}
.contactos-page .mensagem .privacidade strong {
  color: #00B8FF;
  margin-bottom: 10px;
}
.contactos-page .mensagem .privacidade input, .contactos-page .mensagem .privacidade textarea {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}
.contactos-page .mensagem .privacidade label {
  display: inline-block;
}
.contactos-page .mensagem .privacidade .check {
  display: flex;
  margin: 10px 0;
}
.contactos-page .mensagem button {
  padding: 15px 25px;
}

.mapa {
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  margin-top: 80px;
}

.newsletter {
  background-color: #0E1531;
  padding: 40px 0 80px 0;
}
.newsletter .section-title {
  color: white;
  text-align: left;
  margin-left: 0;
}
.newsletter .grid-newsletter {
  display: grid;
  gap: 40px;
  grid-template-columns: 2fr 2fr 1fr;
}
.newsletter input, .newsletter .contactos-page .mensagem textarea, .contactos-page .mensagem .newsletter textarea {
  margin-top: 20px;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 2px solid #00B8FF;
  padding: 5px;
  color: white;
  font-size: 0.9em;
}
.newsletter input::placeholder, .newsletter .contactos-page .mensagem textarea::placeholder, .contactos-page .mensagem .newsletter textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1;
  /* Firefox */
}
.newsletter input:-ms-input-placeholder, .newsletter .contactos-page .mensagem textarea:-ms-input-placeholder, .contactos-page .mensagem .newsletter textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}
.newsletter input::-ms-input-placeholder, .newsletter .contactos-page .mensagem textarea::-ms-input-placeholder, .contactos-page .mensagem .newsletter textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
}
.newsletter button, .newsletter input[type=submit], .newsletter .contactos-page .mensagem textarea[type=submit], .contactos-page .mensagem .newsletter textarea[type=submit] {
  padding: 10px 10px;
  text-align: center;
}

.btn-menu {
  display: none;
}

.btn-close {
  display: none;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.bg-lightBlue {
  background-color: #E1E7EA;
}

.back {
  color: #0E1531;
}
.back:hover {
  text-decoration: underline;
}

.main-title {
  font-size: 2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #0E1531;
}

.login-main {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-main .login-box {
  width: 450px;
  max-width: 80%;
  padding: 40px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.login-main .login-box input, .login-main .login-box .contactos-page .mensagem textarea, .contactos-page .mensagem .login-main .login-box textarea {
  border-bottom: 2px solid #E1E7EA;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  color: #0E1531;
}
.login-main .login-box button {
  float: none;
  align-self: center;
  border: none;
  background-color: #00B8FF;
  color: white;
  border-radius: 10px;
  transition: 0.3s;
}
.login-main .login-box button:hover {
  background-color: #0E1531;
}

.top {
  width: 100vw;
  height: 60px;
  background-color: #CDD3D6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
.top ul {
  display: flex;
}
.top ul li {
  margin-left: 10px;
}
.top ul li a {
  color: #0E1531;
  transition: 0.3s;
  font-size: 0.9em;
}
.top ul li a:hover {
  color: #00B8FF;
}

aside {
  width: 270px;
  height: 100vh;
  background-color: #0E1531;
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px;
  overflow: scroll;
  z-index: 999;
  transition: 0.3s;
}
aside .btn-fechar-area {
  display: none;
}
aside .area-nav {
  margin-top: 40px;
  margin-bottom: 60px;
}
aside .area-nav li a {
  color: white;
  font-size: 0.9em;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #2F385F;
}
aside .area-nav li a.selected {
  font-weight: bold;
}
aside .area-nav li a:hover {
  font-weight: bold;
}
aside .back-to-home {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 270px;
  border: none;
  background-color: #00B8FF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.3s;
}
aside .back-to-home img {
  margin-right: 20px;
  transition: 0.3s;
}
aside .back-to-home:hover {
  background-color: #2F385F;
}
aside .back-to-home:hover img {
  margin-right: 10px;
}

.conteudo-area {
  width: calc(100vw - 270px);
  margin-left: 270px;
  margin-top: 60px;
  padding: 80px;
}
.conteudo-area .main-title {
  margin-bottom: 80px;
  color: #0E1531;
}
.conteudo-area section {
  margin-bottom: 40px;
}
.conteudo-area h2 {
  font-size: 1.5em;
  color: #0E1531;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.conteudo-area .item {
  display: block;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s;
}
.conteudo-area .item:hover {
  transform: scale(1.05);
}
.conteudo-area .item .ico {
  align-self: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.conteudo-area .item h3 {
  color: #0E1531;
  margin-bottom: 5px;
  max-width: calc(100% - 20px);
}
.conteudo-area .item span {
  color: #C6CAC6;
  font-size: 0.9em;
  max-width: calc(100% - 20px);
}
.conteudo-area .item .download {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media screen and (max-width: 1124px) {
  .container {
    width: 100%;
    padding: 0 40px;
  }

  .grid-landing {
    grid-template-columns: 5fr 5fr;
    gap: 20px;
  }

  .landing .img-fundo {
    width: 55%;
  }

  .logo-cliente {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-cliente img {
    max-width: 100px !important;
    opacity: 0.2;
  }
}
@media screen and (max-width: 1000px) {
  .conteudo-area .grid-t3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  nav .btn-menu {
    display: block;
    background-color: #00B8FF;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
  }
  nav .menu-container {
    position: fixed;
    z-index: 999;
    background-color: #0E1531;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    top: 0;
    left: 0;
    background-image: url("../img/fundo-footer@2x.png");
    background-size: cover;
    background-position: center;
    flex-direction: column;
    justify-content: center;
  }
  nav .menu-container ul.menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 0;
  }
  nav .menu-container ul.menu li a {
    margin-right: 0;
    margin-bottom: 20px;
    display: block;
    font-size: 1.8em;
  }
  nav .menu-container .btn-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  nav .menu-container .btn-close:hover {
    background-color: #00B8FF;
  }
  nav .fechada {
    left: 100%;
  }

  .grid-t2, .grid-t3, .grid-landing, .grid-t4 {
    grid-template-columns: 1fr;
  }

  .grid-t6 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 2em !important;
  }

  .super-title {
    font-size: 2.5em !important;
  }

  .landing .col {
    margin-top: 30%;
  }

  .grid-landing .col {
    background: transparent;
  }

  .grid-footer {
    grid-template-columns: 1fr;
  }

  .grid-equipa, .grid-porque {
    grid-template-columns: 1fr !important;
  }

  .content {
    padding: 40px;
  }
  .content .grid-content-1, .content .grid-content-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content .info-content {
    padding: 20px;
  }

  .contactos-page .mensagem {
    width: 100%;
  }

  .newsletter .grid-newsletter {
    grid-template-columns: 1fr;
  }

  .scroll-nav {
    background-color: white;
    border-bottom: 1px solid #EBEDEB;
  }
  .scroll-nav .menu-container ul.menu li a {
    color: white;
  }
  .scroll-nav .login-link {
    background-color: transparent;
  }

  .btn-menu-area {
    background-color: #0E1531;
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
  }
  .btn-menu-area:hover {
    background-color: #00B8FF;
  }

  aside {
    padding-top: 80px;
    max-width: 100%;
    left: -270px;
  }
  aside .back-to-home {
    left: -270px;
  }
  aside .btn-fechar-area {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
  }
  aside .btn-fechar-area:hover {
    background-color: #00B8FF;
  }

  aside.aberto {
    left: 0;
  }
  aside.aberto .back-to-home {
    left: 0;
  }

  .conteudo-area {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 560px) {
  .conteudo-area .grid-t3 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
