/* Configurações */
:root {
  font-size: 62.5%;
}

body {
  margin: 0;
  scroll-behavior: smooth;
  background-color: #000000;
}

/* header */

header{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  transition: 1s;
  cursor: pointer;
}

header:hover {
  transform: translateY(-3px);
}

header .conteiner_logo{
  background-color: #ffffff25;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-radius: 5rem;
  padding: 1rem 3rem 1rem 3rem;
  border: 0.1px solid white;
}

header .conteiner_logo .logo{
  font-family: "Montserrat", sans-serif;
  color: #A866EC;
}

header .conteiner_logo nav a{
  margin-left: 3rem;
}

header .conteiner_logo nav .focus{
  background-color: rgba(255, 255, 255, 0.151);
  border-radius: 1rem;
}

header .conteiner_logo nav a img{
  width: 4rem;
  padding: 0.5rem;
}

/* section DASHBOARD */

.dashboard {
  text-align: center;
  margin-top: 8rem;
  font-family: "Montserrat", sans-serif;
}

.dashboard h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 4rem;
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.actions input {
  width: 50rem;
  padding: 1.5rem;
  border-radius: 3rem;
  border: none;
  outline: none;
  background: linear-gradient(90deg, #1a1a1a, #5b21b6);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}

.actions input::placeholder {
  color: #ccc;
}

.btn-filtrar {
  display: none; /* no design não aparece */
}

.btn-add {
  background: #e5e5e5;
  font-family: "Montserrat", sans-serif;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 3rem;
  font-weight: bold;
  color: #7c3aed;
  cursor: pointer;
  transition: 0.3s;
}

.btn-add:hover {
  transform: translateY(-3px);
}

table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 2rem;
}

thead {
  background: linear-gradient(90deg, #4c1d95, #7c3aed);
  color: white;
}

thead th {
  padding: 1.5rem;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}

tbody {
  background-color: rgba(99, 99, 99, 0.6);
  font-family: "Montserrat", sans-serif;
  color: white;
}

tbody tr {
  border-bottom: 1px solid #575757;
}

tbody td {
  padding: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
}

tbody td button {
  background: none;
  border: none;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  margin-right: 1rem;
  transition: 0.3s;
}

tbody td button:hover {
  transform: scale(1.2);
}

table {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

