/* Cabeçalho com menu padrão */

header {
  background-color: white;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 100px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.menu a:hover {
  color: red;
}

.contato-section {
  width: 100%;
  min-height: calc(100vh - 140px);
  background: #111;
  color: white;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contato-info {
  width: 100%;
  background: #7B0000;
  color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.contato-info h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contato-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contato-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.contato-lista li {
  margin-bottom: 1rem;
}

.contato-lista i {
  margin-right: 0.5rem;
}
