.content-wrap {
  padding: 20px var(--pad) 44px;
}

.content-wrap .breadcrumb {
  margin-bottom: 14px;
}

.content__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 8.5vw, 40px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.content {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.9);
}

.content > *:first-child {
  margin-top: 0;
}

.content h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(21px, 6vw, 26px);
  color: var(--c-white);
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 10px;
}

.content h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--c-white);
  margin-top: 20px;
  margin-bottom: 8px;
}

.content p {
  margin-bottom: 14px;
}

.content strong {
  font-weight: 700;
  color: var(--c-white);
}

.content a {
  color: var(--c-green-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content a:hover {
  color: var(--c-white);
}

.content ul,
.content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.content ul {
  list-style: disc;
}

.content ol {
  list-style: decimal;
}

.content li {
  margin-bottom: 8px;
}

.content li::marker {
  color: var(--c-green-bright);
}

.content hr {
  height: 0;
  border: 0;
  border-top: 1px solid var(--c-purple-line);
  margin: 26px 0;
}

.content blockquote {
  margin: 0 0 16px;
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--c-green);
  color: var(--c-muted);
  font-style: italic;
}

.content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 6px 0 20px;
  font-size: 15px;
}

.content th,
.content td {
  border: 1px solid var(--c-purple-line);
  padding: 11px 12px;
  text-align: left;
}

.content thead th {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-white);
  background: var(--c-purple-soft);
}

.content tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.content__contacts {
  list-style: none;
  margin: 6px 0 18px;
  padding: 0;
}

.content__contacts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-purple-line);
}

.content__contact-label {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.content__contact-value {
  font-weight: 700;
  font-size: 17px;
  color: var(--c-white);
}

a.content__contact-value {
  color: var(--c-green-bright);
  text-decoration: none;
}

a.content__contact-value:hover {
  color: var(--c-white);
}

.institucional-index {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.institucional-index li {
  margin-bottom: 12px;
}

.institucional-index__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-white);
  border: 1.5px solid var(--c-purple-line);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.16s ease, border-color 0.16s ease;
}

.institucional-index__link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.institucional-index__chevron {
  color: var(--c-muted);
  font-size: 22px;
  line-height: 1;
}

.content--page img {
  width: 100%;
  height: auto;
}

.content--page .container {
  max-width: none;
  padding-inline: 0;
  margin-inline: 0;
}

.content--page .col-md-8 {
  width: 100%;
}

.content--page h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(17px, 4.5vw, 21px);
  line-height: 1.45;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.content--page .text-xl {
  font-size: clamp(17px, 4.5vw, 21px);
}

.content--page .font-bold {
  font-weight: 800;
}

.content--page .mb-4 {
  margin-bottom: 1rem;
}

.content--page .img-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.content--page .img-text-image img {
  border-radius: var(--r-img);
  box-shadow: var(--shadow-card);
}

.content--page .img-text-content h2 {
  margin-top: 0;
}

.content--page .img-text-content p:last-child {
  margin-bottom: 0;
}

.content--page .containerpersonagem {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 10px;
}

.content--page .character {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--c-purple-line);
  border-radius: var(--r-card);
  overflow: hidden;
}

.content--page .character img {
  border-radius: 0;
}

.content--page .character .description {
  padding: 18px;
}

.content--page .character .description h2 {
  margin-top: 0;
}

.content--page .character .description p:last-child {
  margin-bottom: 0;
}

.content--page .character.abel {
  border-color: var(--c-green);
  box-shadow: 0 0 0 1.5px var(--c-green), 0 10px 28px rgba(0, 152, 57, 0.22);
}

.content--page .banneringresso {
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.content--page .coluna {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
