@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  color: #ffffff;
  border-bottom: 1px solid #444;
  margin-bottom: 10px;
}

.header-container {
  display: flex;
  align-items: center;
}

.logo {
  margin: 0px 20px;
  width: 100px;
  height: 100px;
}

nav {
  margin-left: 40px;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: 0.3s;
  font-size: 22px;
}

nav a:hover {
  color: #7ed957;
}

.icone-perfil {
  margin-left: auto;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 65px;
  width: 65px;
  background: #2a2a2a;
  margin-right: 30px;
}

.menu-icon {
  display: none;
  width: 25px;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  height: 100vh;
  width: 280px;
  background-color: #111;
  padding-top: 60px;
  transition: 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
  border: 1px solid #7ed957;
}

.sidebar.active {
  right: 0;
}

.sidebar a,
.sidebar p {
  display: block;
  padding: 15px 25px;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.sidebar p {
  color: #7ed957;
}

.sidebar a:hover {
  background-color: #575757;
  color: #7ed957;
}

.closebtn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #7ed957;
}

h1 {
  display: grid;
  justify-content: center;
  padding: 4px;
}

.titulo-foco {
  text-align: center;
  padding-top: 45px;
}

.titulo-foco h1 {
  font-size: 34px;
  color: #7ed957;
}

.titulo-foco {
  font-size: 18px;
  color: white;
}

.container-foco {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
  max-width: 900px;
  width: 100%;
  justify-items: center;
}

.caixa1,
.caixa2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7ed957;
}

.circulo {
  width: 60vw;
  height: 60vw;
  max-width: 280px;
  max-height: 280px;
  display: flex;
  text-decoration: none;
  color: #aaa;
  background: #2a2a2a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.25s ease;
}

button {
  margin: 5px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #2a2a2a;
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 12px;
}

button:hover {
  scale: 1.07;
}

img {
  width: 32px;
  height: 32px;
}

h2 {
  font-size: 32px;
  padding: 10px;
  text-align: center;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.circulo {
  position: relative;
}

.circulo h1 {
  position: absolute;
  z-index: 2;
  color: #aaa;
}

.progressooi {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#7ed957 360deg, #2a2a2a 0deg);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progressooi::before {
  content: "";
  position: absolute;
  width: 96%;
  height: 96%;
  background: #2a2a2a;
  border-radius: 50%;
}

.headerp {
  cursor: default;
  color: #7ed957;
  font-weight: bold;
  transition: 0.3s;
  font-size: 22px;
}

@media (max-width: 440px) {
  body {
    overflow-x: hidden;
  }

  main {
    align-items: flex-start;
    padding-top: 20px;
  }

  .header-container {
    justify-content: space-between;
    padding: 10px;
  }

  .logo {
    width: 85px;
    height: 85px;
    margin: 0;
  }

  .apagar {
    display: none;
  }

  .menu-icon {
    display: block;
    width: 28px;
    height: 28px;
  }

  .icone-perfil {
    margin-left: auto;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .container-foco {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    padding: 10px;
  }

  .circulo {
    width: 220px;
    height: 220px;
    font-size: 20px;
  }

  .circulo h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  button {
    width: 55px;
    height: 55px;
    padding: 8px;
  }

  img {
    width: 24px;
    height: 24px;
  }

  .botoes {
    gap: 10px;
    margin-top: 10px;
  }
}
