@import url('./root.css');

body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  background-color: #DFDBE5;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-family: var(--primary-font);
  font-size: 2rem;
}

/* MENU DE NAVEGAÇÂO */

.navegacao {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1rem 0;
  gap: 10px;
}

.navegacao ul {
  display: flex;
  width: 50%;
}

.navegacao li {
  list-style: none;
  flex: 1;
  text-align: center;
}

.navegacao a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navegacao a:hover {
  background-color: #f0f0f0;
}

/* RODAPE */

.rodape {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.rodape p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.rodape p a {
  color: #333;
  text-decoration: none;
}