@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600&display=swap');

:root {
  --color: #000000;
  --colorDescription: rgb(71, 71, 71);
  --colorTecnologias: rgb(54, 54, 54);
  --visualizar: black;
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Poppins";

}


html {
  scroll-behavior: smooth;
}



html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

textarea:focus, input:focus {
  box-shadow: 0 0 0 0;
  outline: 0;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: #bfc1c4;
  border-radius: 20px;
  border: 3px solid white;
}

footer {
  margin-bottom: 20px;
}

#btn {
  color: black !important;
}

/* MODO ESCURO */

.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: .4s;
  border-radius: 30px;
  border: 1px solid #868b91;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 20px;
  left: 2px;
  bottom: 2px;
  z-index: 2;
  background-color: #e8e8e8;
  transition: .4s;
}

.sun svg {
  position: absolute;
  top: 6px;
  left: 36px;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.moon svg {
  fill: #73C0FC;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  width: 24px;
  height: 24px;
}

/* .switch:hover */
.sun svg {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {

  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* .switch:hover */
.moon svg {
  animation: tilt 5s linear infinite;
}

@keyframes tilt {

  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.input:checked+.slider {
  background-color: #183153;
}

.input:focus+.slider {
  box-shadow: 0 0 1px #183153;
}

.input:checked+.slider:before {
  transform: translateX(30px);
}




#localizado-mapa.active {
  background-color: #00223f;
}

.mudarcor.active {
  color: white;
}





.hquatro.active {
  color: white;
}

.certificates.active {
  color: white;
}




.buttonrender.active {
  --bg: #183153;
  --text-color: black position: relative;
  max-width: 50px;
  width: 100%;
  border: none;
  background: var(--bg);
  color: var(--text-color);
  padding: 1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.2s;
  border-radius: 5px;
  opacity: 0.8;
  letter-spacing: 1px;
  box-shadow: #11233d 0px 7px 2px, white 0px 8px 5px;
  cursor: pointer;
  color: white;
}

.cert {
 border: 2px solid gray;
 padding: 5px;
 border-radius: 8px;
}
.cert:hover {
  background: rgba(128, 128, 128, 0.144);
}

.cert.active {
  border: 2px solid white;
 }
.botoes-paginacao button.active:hover {
  opacity: 1;
}


.botoes-paginacao button.active:active {
  top: 4px;
  box-shadow: #ffffff 0px 3px 2px, #303030 0px 3px 5px;
}


.animation-header {
  animation: headeranimation 2s ease 0s 1 normal forwards;
}

@keyframes headeranimation {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(-250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(-65px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateY(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateY(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}
}

.redes-sociais-animation {
  animation: redessociais 2s ease 0s 1 normal forwards;
}
@keyframes redessociais {
	0% {
		animation-timing-function: ease-in;
		opacity: 1;
		transform: translateX(-48px);
	}

	24% {
		opacity: 1;
	}

	40% {
		animation-timing-function: ease-in;
		transform: translateX(-26px);
	}

	65% {
		animation-timing-function: ease-in;
		transform: translateX(-13px);
	}

	82% {
		animation-timing-function: ease-in;
		transform: translateX(-6.5px);
	}

	93% {
		animation-timing-function: ease-in;
		transform: translateX(-4px);
	}

	25%,
	55%,
	75%,
	87%,
	98% {
		animation-timing-function: ease-out;
		transform: translateX(0px);
	}

	100% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0px);
	}
}