* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
}

    /* navegar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: transform 0.5s ease, color 0.5s ease;
}

nav ul li a:hover {
  color: #00bcd4;
  transform: scale(1.1);
}

.contato {
  display: flex;
  align-items: center;
  gap: 5px;
}

    /* rodape */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px;
}

.congif{
  text-align: center;
  align-itens: center;
}



