@import url("https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  background: #f4f8fb;
}

.hero {
  /* background: linear-gradient(135deg, #19388a 0%, #132b6b 100%); */
  background: linear-gradient(135deg, #154ea3, #003666);
  color: #ffffff;
  padding: 45px 0 50px;
  margin-bottom: 40px;
}

.hero-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 42px;
  margin-bottom: 0;
}

.hero-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.mbb-logo {
  width: 175px;
  height: 40px;
  background-color: #ffffff;
  display: inline-block;
  -webkit-mask-image: url("../img/logo-mbb.svg");
  mask-image: url("../img/logo-mbb.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: translateY(2px);
}

.hero-content {
  text-align: left;
  flex: 1;
}

.hero h1 {
  font-family: "Encode Sans", sans-serif !important;
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0;
}

.hero .lead {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.petition-card {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.info-badge {
  display: inline-block;
  background: #e7f1ff;
  color: #084298;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  color: #0a58ca;
}

.form-label {
  font-weight: 600;
}

.error-text {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 4px;
}

.btn-solicitud {
  background: #0a58ca;
  border-color: #0a58ca;
  font-weight: 700;
  padding: 12px;
}

.btn-solicitud:hover {
  background: #084298;
  border-color: #084298;
}

.required-note {
  font-size: 0.9rem;
  color: #6c757d;
}

p {
  font-family: "Open Sans", sans-serif !important;
}

 h2 {
  font-family: "Encode Sans", sans-serif !important; 
     font-size: 1.75rem;
}

.site-footer {
  min-height: 190px;
  background: linear-gradient(135deg, #19388a 0%, #132b6b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.site-footer-text {
	font-family: "Encode Sans", sans-serif !important;
	font-size: 1rem;
	font-weight: 200;
	text-align: center;
	color: #ffffff;
}



@media (max-width: 576px) {
  .hero {
    padding-top: 24px;
  }

  .hero-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}