@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ccc;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  color: brown;
  font-family: "Fjalla One", sans-serif;
}

p {
  color: black;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 12px;
}

.header {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(to right, #FFE4C4, #e2725b);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.navigation ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
}

.navigation a {
  color: brown;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #FFE4C4;
  transition: width 0.3s ease;
}

.navigation a:hover {
  color: brown;
}

.navigation a:hover::after {
  width: 100%;
}

main {
  flex: 1;
  padding: 32px;
  background-color: #fefefe;
}

section {
  margin-bottom: 48px;
  background: #fffaf2;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: bold;
  margin-bottom: 4px;
}

input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  margin-top: 12px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #e2725b;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #c14e38;
}


.telefones {
  list-style: none;
  padding-left: 0;
}

.telefones li {
  margin-bottom: 8px;
  font-weight: bold;
}

footer.footer {
  width: 100%;
  background: linear-gradient(to right, #FFE4C4, #e2725b);
  color: brown;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
}
