body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
}

header {
  background: linear-gradient(to right, #000000, #273750);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
 font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header p {
  margin: 0.5rem 0 1rem;
}

nav a {
   text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
 
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}

nav a {

 .menu {
  position: absolute;
  top: 0;              
  left: 0;
  width: 100%;         
  display: flex;
  justify-content: center; /* MEIO da tela */
  background: transparent; /* ou cor se quiser */
  z-index: 1000;
}


.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 15px 0;
}
.menu a {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: rgb(218, 93, 93);
  text-decoration: none;
  padding: 10px 15px;
 
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  gap: 2rem;
}

.contato-form, .contato-info {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.contato-form h2 {
  color: #004aad;
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #004aad;
  outline: none;
}

button {
  background-color: #004aad;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0077ff;
}

.contato-info h3 {
  color: #004aad;
  margin-bottom: 1rem;
}

.contato-info a {
  color: #0077ff;
  text-decoration: none;
}

.contato-info a:hover {
  text-decoration: underline;
}

footer {
   background: linear-gradient(to right, #000000, #091525);
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

