@import url("https://fonts.googleapis.com/css2?family=Happy+Monkey&family=Press+Start+2P&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100dvh;
  position: relative;
  background-color: #f2f2f2;
}

#coin-counter {
  position: fixed;
  font-family: 'press start 2p';
  display: flex;
  align-items: end;
  justify-content: center;
  width: 20px;
  top: 10px;
  right: 20px;
  padding: 10px 20px;
  font-weight: bold;
  color: #f2f2f2;
}

#coin-counter img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.navbar {
  display: flex;
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99;
}

.nav {
  display: flex;
  width: 100%;
  height: auto;
  margin: auto;
  max-width: 1000px;
  justify-content: space-between;
  text-align: center;
  background: white;
  border-radius: 50px;
  position: relative;
  box-shadow: 30px 10px 0 10px white, -30px 10px 0 10px white,
    0px -20px 0 10px white, 15px -10px 0 10px white, -15px -10px 0 10px white;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.link_list a {
  text-decoration: none;
  color: #020202;
  transition: .1s ease;
}

.link_list {
  padding: 1rem 2rem 1.15rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #020202;
  min-width: 80px;
  font-weight: 200;
  margin: auto;
  list-style: none;
  font-family: "Press Start 2P", system-ui;
}


.link_list:hover {
  background: #87CEEB;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-size: 100% 100%;
  color: #fff;
  animation: spring 300ms ease-out;
  text-shadow: 0 -1px 0 #000000;
  font-weight: bold;
}

.link_list:hover a {
  color: #f2f2f2;
}

.link_list:active {
  transform: translateY(4px);
}



@keyframes spring {
  15% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1.2, 1.1);
  }
  40% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(0.95, 0.95);
  }
  75% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1.05, 1);
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1, 1);
  }
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: #87CEEB;
  padding: 0 10%;
  font-family: "Press Start 2P", system-ui;
  border-bottom: 20px solid #434043;
  position: relative;
}

.banner_content_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  gap: 20px;
}

.banner_title {
  font-size: 2rem;
  font-weight: 700;
  color: #020202;
}

.banner_title_highlight {
  color: #87CEEB;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    color: #ffaf38;
  }
  50% {
    transform: translateY(-5px);
    color: rgb(255, 255, 255); /* Um tom um pouco mais claro */
  }
}

.banner_title_highlight {
  display: inline-block;
  width: 50px; /* Ajuste conforme necessário */
  height: 50px;
  color: #87CEEB;
  animation: bounce 0.5s infinite ease-in-out;
}

.banner_description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #020202;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
    color: #202020;
  }
  50% {
    transform: translateY(-10px);
    color: #6aafff;
  }
}

.banner_text_span {
  display: inline-block;
  white-space: nowrap;
  border-right: 3px solid #000000; /* Cursor piscando */
  font-size: 10px;
  font-weight: bold;
  overflow: hidden;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

.banner_content_right {
  background: url("../img/giphy.gif");
  width: 50%;
  height: 100%;
  background-size: contain;
  background-position: 150px 300px;
  background-repeat: no-repeat;
}

.arrow_down {
  position: absolute;
  bottom: -30px;
  width: 32px;
  cursor: pointer;
  z-index: 1;
}

.about {
  background-color: #000;
  background-image: url("../img/tumblr_n6pqj9Q6qB1sqsanfo1_400.gif");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 80dvh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: end;
  position: relative;
}

.imgs img {
  height: 100px;
  width: 100px;
  filter: drop-shadow(0 0 0.75rem rgba(238, 238, 238, 0.63));
}

.imgs {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
}

.about_content_left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  width: 80%;
  height: 100%;
  gap: 20px;
  color: #ffbb00;
  padding-top: 5%;
}

.about_title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'press start 2p';
  text-shadow: 1px 1px 2px black;
  background-color: #00000034;
  padding: 10px;
} 

.about_description {
  font-size: 1.2rem;
  font-family: 'press start 2p';
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-shadow: 1px 1px 2px black;
  background-color: #00000034;
  padding: 10px;
}

.about_text {
  font-family: 'press start 2p';
  font-size: 18px;
  font-weight: bold;
  text-align: justify;
  width: 50%;
  text-shadow: 1px 1px 2px black;
  line-height: 1.4em;
  background-color: #00000034;
  padding: 10px;
}

.services {
  background-color: #f2f2f2;
  height: 80dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 20px solid #000;
  background-color: #000;
  padding: 5% 0;
}

.services_title {
  font-family: 'press start 2p';
  font-size: 2rem;
  font-weight: 700;
  color: #ffbb00;
  text-shadow: 1px 1px 2px rgb(73, 73, 73) ;
  text-transform: uppercase;
  animation: bounce 0.5s infinite ease-in-out;
}

.services_content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
  color: #000;
  padding: 5% 0;
}

.services_card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 20px;
  width: 20%;
  height: 470px;
  background-color: #3b017c;
  color: #f2f2f2;
  border-radius: 12px 12px 0 0;
  box-shadow: rgba(0, 119, 255, 0.3) 0px 0px 0px 3px;
  transition: 0.4s;
  font-family: 'press start 2p';
  overflow: hidden;
  transition: .7s ease-in-out;
  padding-bottom: 1rem;
  position: relative;
}

.services_card:hover {
  transform: scale(1.1);
}

.services_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.services_card_title {
  font-size: 1em;
  color: #ffbb00;
  text-shadow: 1px 1px 2px rgb(73, 73, 73) ;
}

.services_card_text {
  font-size: 0.8em;
  text-align: justify;
  padding: 10px;
  line-height: 1.4em;
}

.phone {
  display: flex;
  color: #00a750;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #0a5b30;
  background-color: #f2f2f2;
  position: absolute;
  bottom: 10px;
}

.phone img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease-in-out;
}

.phone:hover img {
  animation: shake 1s infinite;
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
