.pdf-container {
  text-align: center;
  margin: 50px auto;
  max-width: 1200px; /* Más ancho */
  padding: 0 20px;
}

.pdf-viewer {
  width: 100%;
  height: 400px; /* Ajusta aquí según el contenido */
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}


.pdf-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #003b6f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.pdf-button:hover {
  background-color: #005a9c;
}

h2 {
  font-size: 3rem;
  color: #003b6f;
  text-align: center;
  margin: 50px 0 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #0077b6;
  margin: 10px auto 0;
  border-radius: 2px;
}
