/* HEADER PERFIL */
.perfil-user {
  display: flex;
  justify-content: flex-end;
  width: 50%;

  align-items: center;
  z-index: 9999;
}

.perfil {
  gap: 1rem;
}

.perfil > a {
  color: #fff;
}

.perfil img {
  width: 20%;
  border-radius: 50%;
  padding: 0.2rem;
}

.btn-costumizado {
  background: var(--bg-primary);
  border: 0;
}

.btn-costumizado:hover {
  background: var(--bg-primary-hover);
}

/* PERFIL USERS */
.postar-blog,
.meus-bilhetes,
.meus-livros,
.users {
  margin-block: 3rem;
}

.card-perfil-user .card-user {
  background: var(--bg-primary);
  height: 25vh;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.card-perfil-user .card-user img {
  border-radius: 50%;
  transform: translateY(5.8rem);
}

.card-content-user {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin-top: 4rem;
  padding-top: 2rem;
  width: 100%;
}

.card-content-user h3 {
  font-size: 1rem;
}

.card-atividades {
  background: white;
  margin-top: 1rem;
  padding: 1rem;
}

.card-atividades ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-atividades ul li {
  display: flex;
  justify-content: space-between;
}

/* FORMULÁRIOS */
.form-perfil h4 {
  text-transform: uppercase;
}
.form-perfil input,
.form-perfil input::placeholder {
  font-size: 0.9rem;
}

.btn-costumizado,
.form-perfil .form-group input {
  padding: 0.9rem;
}

.form-perfil .form-group {
  margin-bottom: 1rem;
}

.form-perfil .form-group button {
  padding: 0.9rem;

  background: var(--bg-primary);
  color: #fff;
}

/* POSTAR BLOG */
.postar-blog h3,
.postar-blog h4 {
  font-weight: 300;
  text-transform: uppercase;
}
.items-conteudos-blog {
  display: flex;
  flex-direction: column;
}

.items-conteudos-blog .item-blog {
  display: flex;
  gap: 1rem;

  color: #000;
  text-decoration: none;
}

.items-conteudos-blog .item-blog .photo {
  width: 50%;
}

.items-conteudos-blog .item-blog .photo img {
  width: 100%;
}

.items-conteudos-blog .content-blog h4 {
  font-weight: bold;
  font-size: 1rem;
}

.items-conteudos-blog .content-blog p {
  font-size: 0.8rem;
}

.actions a {
  text-decoration: none;
  padding: 0.3rem;
  color: #fff;

  border-radius: 0.2rem;
}
.btn-delete {
  background: #e21d1dd8;
}
.btn-edit {
  background: var(--bg-primary);
}
.btn-eye {
  background: #08af08;
}

/* PARTE DE ESTATÍSTICA */
.card-data {
  background: white;

  display: flex !important;
  justify-content: space-between;

  padding: 1.5rem;
}
.card-data h2 {
  font-size: 1rem;
}

.content {
  width: 80%;
}

.content-photo {
  width: 20%;
}

.content-photo i {
  font-size: 2rem;
}

@media (max-width: 640px) {
  .form-perfil {
    margin-top: 1rem;
  }
}
