@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  color: #00bcd4;
  text-decoration: none;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

h2 {
  font-size: 30px;
  font-weight: 700;
}
h3 {
  font-size: 24px;
  font-weight: 700;
}

.fontep {
  font-size: 14px;
}

.nero {
  color: #000;
}

.boldest {
  color: #0a004a;
  font-size: 70px;
  font-weight: 700;
  margin-top: -30px;
}

.logo {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #00bcd4;
}

.top {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #00bcd4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.top-item {
  width: 100%;
  flex: 1;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.top-item a {
  color: #fff;
  text-decoration: none;
}
.top-item a:hover {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.foot {
  width: 100%;
  height: auto;
  padding: 10px;
  position: fixed;
  bottom: 0px;
  background-color: #00bcd4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-top: 50px;
  z-index: 2;
}

.foot-item {
  width: 100%;
  flex: 1;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.foot-item a {
  color: #fff;
  text-decoration: none;
}
.foot-item a:hover {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.chip {
  display: inline-block;
  width: 300px;
  min-width: 200px;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  border-radius: 25px;
  background-color: #f1f1f1;
}

.chip img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.chipG {
  display: inline-block;
  padding: 0 25px;
  height: 80px;
  font-size: 16px;
  line-height: 80px;
  border-radius: 40px;
  background-color: #f1f1f1;
}

.chipG img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.action {
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #00bcd4;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.action span {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;

  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.action.active span {
  transform: rotate(135deg);
}

.action ul {
  position: absolute;
  bottom: 35px;
  right: 10px;
  background-color: #00bcd4;
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: 0.3s;
}

.action.active ul {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: 0.3s;
}

.action.active ul li {
  list-style: none;
}

.action.active ul li a {
  list-style: none;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.pagewrap {
  width: 100%;
  height: auto;

  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.pagecontent {
  width: 100%;
  height: auto;

  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page-item1 {
  width: 100%;
  height: auto;
  flex: 1;
  min-height: 400px;
  background-color: #fff;
  color: #00bcd4;
  font-size: 16px;
  padding-left: 20px;
}

.page-item2 {
  width: 100%;
  height: auto;
  flex: 2;
  min-height: 400px;

  color: #00bcd4;
  font-size: 16px;

  border-radius: 7px;
}

input {
  border-bottom: 1px solid #00bcd4;
  border-top: none;
  border-right: none;
  border-left: none;
  outline: none;
}

.peq {
  font-size: 10px;
}

.admcard {
  width: 100%;
  height: auto;
  padding: 20px;
  background-color: #323232;
  border-radius: 10px;
}

.btn-pet {
  width: auto;

  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #00bcd4;
  color: #323232;
  margin-top: 20px;
  border: none;
  outline: none;
}

.btn-pet:hover {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #323232;
  color: #00bcd4;
}

.btn-verm {
  width: auto;

  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #a03324;
  color: #fff;
  margin-top: 20px;
  border: none;
  outline: none;
}

.btn-verm:hover {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #323232;
  color: #fff;
}

.btn-amar {
  width: auto;

  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #ffcc29;
  color: #323232;
  margin-top: 20px;
  border: none;
  outline: none;
}

.btn-amar:hover {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #323232;
  color: #ffcc29;
}

.btn-verd {
  width: auto;

  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #90ff29;
  color: #323232;
  margin-top: 20px;
  border: none;
  outline: none;
}

.btn-verd:hover {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #323232;
  color: #90ff29;
}

.btn-orange {
  width: auto;

  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #ff9b29;
  color: #323232;
  margin-top: 20px;
  border: none;
  outline: none;
}

.btn-orange:hover {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 7px;
  background-color: #323232;
  color: #ff9b29;
}

.separa {
  width: 100%;
  height: 30px;
}

.card {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 5px 1px #999;
  box-shadow: 1px 1px 5px 1px #999;
  margin: 7px;
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.trabalho {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#usu {
  cursor: pointer;
}

@media (max-width: 768px) {
  .pagewrap,
  .top,
  .trabalho {
    flex-direction: column;
  }

  .page-item1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
  }
}
