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

#root {
  max-width: 1400px;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 25px;
}

header {
  background: #282a36;
  height: 820px;
  position: relative;
  padding-top: 20px;
  color: #f8f8f2;
}
header:after {
  background-color: #f8f8f2;
  border-right: 100% solid #f8f8f2;
  border-top: 160px solid #282a36;
  bottom: 0px;
  content: "";
  height: 0px;
  left: 0px;
  position: absolute;
  width: 0px;
  z-index: 1;
}
header .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo nav ul li {
  display: inline;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
}
header .featured {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .featured h1 {
  font-size: 64px;
  margin-bottom: 20px;
}
header .featured h1 span {
  color: #8BE9FD;
}
header .featured img {
  width: 477px;
  z-index: 10;
}

@media (max-width: 1200px) {
  #root {
    border-radius: 0;
    box-shadow: 0;
    margin-bottom: 0;
  }
}
body {
  font-family: "Inter", sans-serif;
  background: #f8f8f2;
  width: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#topbar {
  background: #161722;
  color: #f8f8f2;
  padding: 15px;
  font-size: 14px;
}
#topbar .container {
  display: flex;
  justify-content: space-between;
}
#topbar .container ul li {
  list-style-type: none;
  display: inline;
  margin: 0 5px 0 5px;
}
#topbar .container a {
  color: #f8f8f2;
  text-decoration: none;
}
#topbar .container a:hover {
  color: #8BE9FD;
}

.logo svg {
  width: 224px;
}

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

.destaques .container {
  display: flex;
  justify-content: space-between;
  margin-top: -230px;
}
.destaques .container .bloco {
  background: #f8f8f2;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 20px 20px 40px;
  text-align: center;
  margin: 0px 10px 0 10px;
  z-index: 10;
  position: relative;
}
.destaques .container .bloco:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}
.destaques .container .bloco:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 97px;
  height: 5px;
  background: #8BE9FD;
}
.destaques .container .bloco:hover:after {
  background: #ff5555;
}
.destaques .container .bloco svg {
  width: auto;
  height: 150px;
}
.destaques .container .bloco h2 {
  font-weight: 600;
  font-size: 20px;
  color: #161722;
  margin-top: 20px;
}
.destaques .container .bloco p {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 50px;
}
.destaques .container .bloco a.saiba {
  font-weight: bold;
  font-size: 14px;
  color: #161722;
  text-transform: uppercase;
  text-decoration: none;
}

.hospedagem {
  margin-top: 50px;
}
.hospedagem h2 {
  font-weight: 800;
  font-size: 36px;
  color: #161722;
  text-align: center;
  margin-bottom: 20px;
}
.hospedagem .planos {
  display: flex;
  justify-content: space-between;
}
.hospedagem .planos h2 {
  font-weight: 700;
  font-size: 36px;
  margin: 0;
}
.hospedagem .planos p {
  text-align: center;
}
.hospedagem .planos .plano {
  background: #f8f8f2;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 10px;
  transition: 0.2s ease-in-out;
}
.hospedagem .planos .plano:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.04);
}
.hospedagem .planos .plano .price {
  margin: 20px auto;
  text-align: center;
}
.hospedagem .planos .plano .btn-contrate {
  background: #8BE9FD;
  padding: 10px 15px;
  width: 80%;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #161722;
  text-decoration: none;
  box-shadow: 5px 5px 0 #161722;
  transition: 0.2s ease;
}
.hospedagem .planos .plano .btn-contrate:hover {
  background-color: #50fa7b;
  transform: scale(1.1);
}
.hospedagem .planos .plano ul {
  margin-top: 20px;
  text-align: center;
}
.hospedagem .planos .plano ul li {
  list-style: none;
  line-height: 1.4em;
}
.hospedagem .planos .plano ul .bold {
  font-weight: 600;
}

.tecnologias {
  background: #161722;
  padding: 50px 20px;
  margin: 50px 0;
}
.tecnologias h2 {
  color: #f8f8f2;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
}
.tecnologias .logos {
  display: flex;
}
.tecnologias .logos svg {
  fill: #f8f8f2;
  padding: 20px;
}
.tecnologias .logos svg path {
  fill: #f8f8f2;
}

.depoimentos h2 {
  color: #161722;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
}
.depoimentos .box-depoimentos {
  background: #8BE9FD;
}
.depoimentos .box-depoimentos img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.portifolio h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
}
.portifolio .row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.portifolio .row .site {
  max-width: 30%;
  max-height: 300px;
  overflow: hidden;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: relative;
}
.portifolio .row .site:hover .inner-content {
  transition: all ease-in 0.5s;
  transform: translateX(0);
  background-color: #282a36;
}
.portifolio .row .site img {
  width: 100%;
}
.portifolio .row .site .inner-content {
  background-color: #8BE9FD;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
  transform: translateX(-100%);
  cursor: auto;
}
.portifolio .row .site .inner-content a {
  background-color: #f8f8f2;
  padding: 5px 15px;
  border-radius: 10px;
  color: #282a36;
  text-decoration: none;
}

.bloco:hover svg .an6 {
  -webkit-animation: pisca 0.2s infinite;
          animation: pisca 0.2s infinite;
}

@-webkit-keyframes pisca {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pisca {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bloco:hover svg .led1 {
  -webkit-animation: led 0.5s 0.2s infinite;
          animation: led 0.5s 0.2s infinite;
}

.bloco:hover svg .led2 {
  -webkit-animation: led 0.5s 0.4s infinite;
          animation: led 0.5s 0.4s infinite;
}

.bloco:hover svg .led3 {
  -webkit-animation: led 0.5s 0s infinite;
          animation: led 0.5s 0s infinite;
}

@-webkit-keyframes led {
  0% {
    fill: #f8f8f2;
  }
  100% {
    fill: #50fa7b;
  }
}

@keyframes led {
  0% {
    fill: #f8f8f2;
  }
  100% {
    fill: #50fa7b;
  }
}
.bloco:hover svg .circle1, .bloco:hover svg .w2 {
  -webkit-animation: circle 0.5s 0.2s infinite;
          animation: circle 0.5s 0.2s infinite;
}

.bloco:hover svg .circle2, .bloco:hover svg .w3 {
  -webkit-animation: circle 0.5s 0.4s infinite;
          animation: circle 0.5s 0.4s infinite;
}

.bloco:hover svg .circle3, .bloco:hover svg .w1 {
  -webkit-animation: circle 0.5s 0s infinite;
          animation: circle 0.5s 0s infinite;
}

@-webkit-keyframes circle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes circle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer {
  background-color: #282a36;
}
footer .container {
  margin-top: 40px;
  padding: 20px;
  color: #f8f8f2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}
footer .container nav ul li {
  list-style-type: none;
  display: inline;
  margin: 0 5px 0 5px;
}
footer .container nav ul li a {
  color: #f8f8f2;
  text-decoration: none;
}
footer .container nav ul li a:hover {
  color: #8BE9FD;
}
footer .container .logo-footer {
  width: 150px;
  height: 100%;
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .portifolio .row .site {
    height: 200px;
  }
}
@media (max-width: 1220px) {
  .container {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 840px) {
  .portifolio .row .site {
    max-width: calc(50% - 20px);
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  }
  header .featured h1 {
    font-size: 48px;
  }
}
@media (max-width: 840px) {
  .destaques .container {
    flex-direction: column;
  }
  .destaques .container .bloco {
    margin: 10px 0 10px 0;
  }
  .planos {
    flex-direction: column;
  }
}/*# sourceMappingURL=styles.css.map */