/* CSS específico para responsabilidades.html */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f8fb;
  color: #133a7a;
  margin: 2rem 1rem;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  color: #004d99;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  color: #0a2a66;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

a {
  color: #f15a24;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.button-back {
  background-color: #004d99;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  display: block;
  max-width: 280px;
  margin: 0.5rem auto 2rem auto;
  transition: background-color 0.3s ease;
  user-select: none;
}

.button-back:hover,
.button-back:focus {
  background-color: #f15a24;
  outline: none;
}
