@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;
}

body {
  background-color: #57e03e;
}

h3 {
  font-weight: 700;
}

h1 {
  font-size: 35px;
  font-weight: 700;
  color: #222;
}

.boldest {
  color: #222;
  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;
}

.top {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #222;
  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;
}

.btn-tema {
  width: 250px;
  height: 30px;
  background-color: #f83624;
  color: #fff;
  border-radius: 50px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-tema:hover {
  width: 250px;
  height: 30px;
  background-color: #222;
  color: #f83624;
  text-decoration: none;
  border-radius: 50px;
  padding: 7px;
}

.foot {
  width: 100%;
  height: auto;
  padding: 10px;
  position: fixed;
  bottom: 0px;
  background-color: #f83624;
  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: #f83624;
  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: #f83624;
  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: #fff;
  text-decoration: none;
  font-size: 14px;
}

.pagewrap {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-item {
  width: 100%;
  height: auto;
  min-height: 400px;
  background-color: #fff;
  color: #f83624;
  font-size: 16px;
  padding: 10px;
  margin: 7px;
  border-radius: 7px;
}

.titulo {
  width: 100%;
  padding: 30px;
  text-align: center;
}

.titulo h3 {
  font-size: 24px;
  font-weight: 700;
}

.pageapp {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

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

  .pageapp {
    height: auto;
    min-height: 100vh;
    margin-bottom: 150px;
  }
}
