@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #c7c3c3;
  border-radius: 5rem;
}

section {
  min-height: 98vh;
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #292929;
  font-size: 1.6rem;
  line-height: 1.4;
  background-color: #e8fffd;
}
body .header {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8vh;
  padding: 1rem 5rem;
  background-color: #d7eceb;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
body .header .nav-list {
  list-style: none;
  gap: 10rem;
  display: flex;
}
body .header .nav-list a {
  text-decoration: none;
  color: #292929;
  cursor: pointer;
}
body .header .nav-list a:hover {
  color: #5f5f5f;
}
body .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
}
body .info .text {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  width: 50%;
  padding: 4rem;
}
body .info .circulo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 2rem;
  width: 50rem;
  height: 50rem;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 4%;
  border-bottom-right-radius: 35%;
  margin: 2rem;
  background-color: #afd9d9;
}
body .info .circulo .slider {
  margin: 0 auto;
  width: 30rem;
  height: 30rem;
  background-color: rgba(255, 255, 255, 0.5568627451);
  overflow: hidden;
  border-radius: 1rem;
}
body .info .circulo .slider .slides {
  width: 500%;
  height: 30rem;
  display: flex;
  align-items: center;
}
body .info .circulo .slider .slides input {
  display: none;
}
body .info .circulo .slider .slides .slide {
  width: 25%;
  position: relative;
  transition: 0.6s;
}
body .info .circulo .slider .slides .slide .div-image {
  width: 30rem;
}
body .info .circulo .slider .slides .slide .div-image p {
  text-align: center;
}
body .info .circulo .slider .slides .slide .div-image img {
  width: 30rem;
}
body .info .circulo .slider .slides .manual-navigation {
  position: absolute;
  width: 30rem;
  margin-top: 26rem;
  display: flex;
  justify-content: center;
}
body .info .circulo .slider .slides .manual-navigation .manual-btn {
  border: 0.1rem solid #afd9d9;
  padding: 0.5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: 1s;
}
body .info .circulo .slider .slides .manual-navigation .manual-btn:not(:last-child) {
  margin-right: 1rem;
}
body .info .circulo .slider .slides .manual-navigation .manual-btn:hover,
body .info .circulo .slider .slides .manual-navigation .manual-btn :active {
  background-color: #afd9d9;
}
body .info .circulo .slider .slides #radio1:checked ~ .first {
  margin-left: 0;
}
body .info .circulo .slider .slides #radio2:checked ~ .first {
  margin-left: -25%;
}
body .info .circulo .slider .slides #radio3:checked ~ .first {
  margin-left: -50%;
}
body .info .circulo .slider .slides #radio4:checked ~ .first {
  margin-left: -75%;
}
body .info .circulo .slider .slides #radio5:checked ~ .first {
  margin-left: -100%;
}
body .info .circulo .slider .slides .navigation-auto {
  position: absolute;
  width: 30rem;
  margin-top: 26rem;
  display: flex;
  justify-content: center;
}
body .info .circulo .slider .slides .navigation-auto div {
  border: 1px solid #afd9d9;
  padding: 0.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}
body .info .circulo .slider .slides .navigation-auto div:not(:last-child) {
  margin-right: 1rem;
}
body .info .circulo .slider .slides #radio1:checked ~ .navigation-auto .auto-btn1 {
  background-color: #afd9d9;
}
body .info .circulo .slider .slides #radio2:checked ~ .navigation-auto .auto-btn2 {
  background-color: #afd9d9;
}
body .info .circulo .slider .slides #radio3:checked ~ .navigation-auto .auto-btn3 {
  background-color: #afd9d9;
}
body .info .circulo .slider .slides #radio4:checked ~ .navigation-auto .auto-btn4 {
  background-color: #afd9d9;
}
body .info .circulo .slider .slides #radio5:checked ~ .navigation-auto .auto-btn5 {
  background-color: #afd9d9;
}
body #tables-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin-top: 2rem;
  padding: 2rem;
  gap: 3rem;
}
body #tables-container input {
  border: 0;
  width: 10rem;
  padding: 0rem 0.5rem;
  margin-right: 2rem;
  text-align: center;
}
body #tables-container input#week {
  width: 5rem;
}
body #tables-container .div-table {
  overflow-x: auto;
  max-width: 90vw;
}
body #tables-container .div-table table {
  overflow: hidden;
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fdffff;
  border-radius: 8px;
}
body #tables-container .div-table table th,
body #tables-container .div-table table td {
  white-space: nowrap;
  padding: 0.4rem;
  text-align: center;
  border: 1px solid #ddd;
}
body #tables-container .div-table table th .div-tarefa,
body #tables-container .div-table table td .div-tarefa {
  display: flex;
  align-items: center;
}
body #tables-container .div-table table th .bolinha,
body #tables-container .div-table table td .bolinha {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
body #tables-container .div-table table th textarea,
body #tables-container .div-table table td textarea {
  min-width: 11rem;
  width: 100%;
  border: none;
  resize: none;
  overflow-y: hidden;
  font-size: 14px;
  padding: 5px;
}
body #tables-container .div-table table th {
  background-color: rgba(0, 150, 136, 0.6117647059);
  color: rgb(255, 255, 255);
  text-shadow: -1px -1px 0 rgb(56, 56, 56), 1px -1px 0 rgb(54, 54, 54), -1px 1px 0 rgb(66, 66, 66), 1px 1px 0 rgb(59, 59, 59);
}
body #tables-container .div-table table .category {
  font-weight: bold;
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
  padding: 0.5rem 1.3rem;
  white-space: normal;
}
body #tables-container .buttons {
  margin-top: 2rem;
}
body #tables-container .buttons button {
  margin-right: 1rem;
  padding: 1rem;
  background-color: #92dddd;
  cursor: pointer;
  border: 1px solid #98ccce;
  border-radius: 0.8rem;
}
body #tables-container .buttons button:hover {
  background-color: #25ddb5;
}
body .rodape {
  background-color: rgba(4, 182, 164, 0.4039215686);
  min-height: 53vh;
  display: flex;
  justify-content: center;
  flex-flow: column;
  gap: 3rem;
  padding: 2rem 6rem;
  margin-top: 6rem;
}
body .rodape .encerramento {
  display: flex;
  flex-flow: column;
  padding: 3rem 0rem;
  gap: 2rem;
  font-size: 16px;
}
body .rodape .creditos {
  text-align: center;
}

/* Media queries  */
@media (max-width: 1100px) {
  html {
    font-size: 55%;
  }
  body .info {
    justify-content: center;
  }
}
@media (max-width: 960px) {
  section {
    min-height: 80vh;
  }
  body .info .circulo {
    height: 42rem;
    width: 42rem;
  }
  body .info .circulo .slider {
    height: 27rem;
    width: 27rem;
  }
  body .info .circulo .slider .slides {
    height: 23rem;
  }
  body .info .circulo .slider .slides .manual-navigation .manual-btn {
    border: 1px solid #83b5cc;
  }
  body .info .circulo .slider .slides .manual-navigation .manual-btn:not(:last-child) {
    margin-right: 1rem;
  }
}
@media (max-width: 790px) {
  section {
    min-height: auto;
  }
  body .header {
    height: 5.5rem;
  }
  body .info {
    flex-flow: column;
  }
  body .info .text {
    width: 100%;
  }
  body .info .text h1 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 50%;
  }
  .circulo {
    width: 38rem !important;
  }
}/*# sourceMappingURL=style.css.map */