﻿.about-psm {
  position: relative;
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 12% 15%, rgba(56, 166, 221, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.about-psm::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(31, 157, 214, 0.08);
}

.about-psm__main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: stretch;
}

.about-psm__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #075fae;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.about-psm__title {
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.about-psm__title span {
  color: #168fd0;
}

.about-psm__text {
  max-width: 650px;
  color: #30445e;
  font-size: 0.91rem;
  line-height: 1.65;
}

.about-psm__text p + p {
  margin-top: 14px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.about-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 168px;
  padding: 22px;
  border: 1px solid #dceaf5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 18px rgba(8, 74, 126, 0.06);
  cursor: pointer;
  outline: none;
  overflow: visible;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: calc(100% - 28px);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(207, 249, 255, 0.18) 0%, #d7fbff 18%, #9aefff 50%, #d7fbff 82%, rgba(207, 249, 255, 0.18) 100%);
  box-shadow:
    0 0 10px rgba(125, 233, 255, 0.7),
    0 0 22px rgba(74, 194, 255, 0.34),
    0 10px 24px rgba(41, 141, 210, 0.18);
  transform: translateX(-50%);
  pointer-events: none;
}

.about-pillar::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  transition: transform 0.35s ease;
}

.about-pillar__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #075fae;
  background: #e8f5fc;
  box-shadow: 0 6px 14px rgba(7, 95, 174, 0.12);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar__icon svg {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.about-pillar__icon-image {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.about-pillar h3 {
  margin-bottom: 7px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-pillar p {
  color: #4e6076;
  font-size: 0.75rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.about-pillar__text--justify-center {
  width: 100%;
  max-width: 29ch;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-family);
  text-align: justify;
  text-align-last: center;
  text-justify: inter-word;
  font-size: 0.79rem;
  line-height: 1.52;
  letter-spacing: -0.01em;
  word-spacing: -0.04em;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.about-pillar__highlight {
  font-weight: inherit;
  text-decoration-line: underline;
  text-decoration-color: #79d8ff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.about-pillar__text--valores {
  max-width: 27.5ch;
  font-size: 0.775rem;
  line-height: 1.48;
  letter-spacing: -0.012em;
  word-spacing: -0.05em;
}

.about-pillar:hover,
.about-pillar:focus-visible,
.about-pillar.is-active {
  border-color: #168fd0;
  background: linear-gradient(145deg, #075fae 0%, #003d7d 100%);
  box-shadow: 0 18px 34px rgba(0, 67, 126, 0.24);
  transform: translateY(-8px);
}

.about-pillar:hover::after,
.about-pillar:focus-visible::after,
.about-pillar.is-active::after {
  transform: scale(1);
}

.about-pillar:hover::before,
.about-pillar:focus-visible::before,
.about-pillar.is-active::before {
  box-shadow:
    0 0 12px rgba(125, 233, 255, 0.88),
    0 0 28px rgba(74, 194, 255, 0.48),
    0 12px 26px rgba(41, 141, 210, 0.24);
}

.about-pillar:hover .about-pillar__icon,
.about-pillar:focus-visible .about-pillar__icon,
.about-pillar.is-active .about-pillar__icon {
  color: #075fae;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 31, 69, 0.2);
  transform: translateY(-3px) scale(1.06);
}

.about-pillar:hover .about-pillar__icon svg,
.about-pillar:focus-visible .about-pillar__icon svg,
.about-pillar.is-active .about-pillar__icon svg {
  transform: rotate(-5deg) scale(1.05);
}

.about-pillar:hover .about-pillar__icon-image,
.about-pillar:focus-visible .about-pillar__icon-image,
.about-pillar.is-active .about-pillar__icon-image {
  transform: rotate(-14deg) scale(1.08);
}

.about-pillar:hover h3,
.about-pillar:focus-visible h3,
.about-pillar.is-active h3 {
  color: #fff;
  transform: translateX(3px);
}

.about-pillar:hover p,
.about-pillar:focus-visible p,
.about-pillar.is-active p {
  color: rgba(255, 255, 255, 0.86);
}

.about-pillars--page,
.about-pillars--page.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
  margin: 0;
  gap: 24px;
}

.about-pillars--page > [class*="col-"] {
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
  flex: initial;
  min-width: 0;
}

.about-pillars--page .about-pillar {
  width: 100%;
  min-height: 250px;
  padding: 28px 32px;
}

.about-pillars--page .about-pillar__icon {
  width: 62px;
  height: 62px;
}

.about-pillars--page .about-pillar h3 {
  font-size: 1.08rem;
}

.about-pillars--page .about-pillar p {
  font-size: 0.86rem;
}

.about-pillars.is-reveal-ready {
  overflow: visible;
}

.about-pillars.is-reveal-ready .about-pillar {
  opacity: 0;
  transition:
    opacity 1.25s ease,
    transform 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.about-pillars.is-reveal-ready .about-pillar:nth-child(odd) {
  transform: translateX(-150px) scale(0.96);
}

.about-pillars.is-reveal-ready .about-pillar:nth-child(even) {
  transform: translateX(150px) scale(0.96);
}

.about-pillars.is-reveal-ready .about-pillar:nth-child(3),
.about-pillars.is-reveal-ready .about-pillar:nth-child(4) {
  transition-delay: 0.18s;
}

.about-pillars.is-reveal-ready.is-visible .about-pillar {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-pillars.is-visible .about-pillar:hover,
.about-pillars.is-visible .about-pillar:focus-visible,
.about-pillars.is-visible .about-pillar.is-active {
  transform: translateY(-8px) scale(1.03);
}

.about-psm__image {
  min-height: 510px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 70%, rgba(0, 76, 135, 0.08)),
    url("../../assets/images/shared/backgrounds/psm-painel-bg.jpg") 63% center / cover no-repeat;
  box-shadow: 0 20px 50px rgba(15, 78, 129, 0.14);
}

.coordinators {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  width: 100%;
  padding: 22px 18px;
  border: 1px solid #deebf4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(26, 81, 125, 0.08);
  overflow: hidden;
}

.coordinators__header {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.coordinators__header span {
  color: #075fae;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.coordinators__header p {
  margin-top: 10px;
  max-width: 920px;
  color: #526579;
  font-size: 0.9rem;
  line-height: 1.65;
}

.coordinators__grid,
.coordinators__grid.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
  gap: clamp(12px, 1.1vw, 18px);
  margin-top: 8px;
  width: 100%;
}

.coordinators__grid > [class*="col-"] {
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
  flex: initial;
  min-width: 0;
}

.coordinator-card {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(79, 195, 255, 0.32);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 10px 26px rgba(26, 81, 125, 0.08),
    0 0 20px rgba(79, 195, 255, 0.2),
    inset 0 0 24px rgba(79, 195, 255, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coordinator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 60% at 50% 28%, rgba(79, 195, 255, 0.28) 0%, rgba(79, 195, 255, 0.08) 42%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.coordinator-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 195, 255, 0.55);
  box-shadow:
    0 16px 34px rgba(26, 81, 125, 0.14),
    0 0 32px rgba(79, 195, 255, 0.38),
    inset 0 0 30px rgba(79, 195, 255, 0.12);
}

.coordinator-card__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(170px, 18vw, 220px);
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
  background: #ffffff;
  mix-blend-mode: multiply;
}

.coordinator-card__body {
  position: relative;
  z-index: 1;
  padding: 8px 8px 10px;
}

.coordinator-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 800;
  line-height: 1.15;
}

.coordinator-card strong {
  display: block;
  margin-top: 3px;
  color: #075fae;
  font-size: clamp(0.6rem, 0.75vw, 0.68rem);
  line-height: 1.2;
}

.coordinator-card p {
  color: #596b7e;
  font-size: 0.65rem;
  line-height: 1.45;
}

/* Paginas internas */

.about-page {
  padding-top: 0;
  background: #f8fbff;
}

.about-hero.internal-hero {
  position: relative;
  padding: 24px 0 40px;
  min-height: 320px;
  background:
    linear-gradient(90deg, rgba(52, 93, 151, 0.96) 0%, rgba(79, 133, 196, 0.88) 52%, rgba(111, 175, 230, 0) 78%, rgba(111, 175, 230, 0) 100%),
    url("../../assets/images/shared/backgrounds/hero-bg.png") right 62% / contain no-repeat;
  overflow: hidden;
}

.about-hero.internal-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #f8fbff;
  pointer-events: none;
}

.about-hero > .container,
.internal-content > .container {
  width: min(calc(100vw - 32px), 1680px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.about-hero > .container {
  width: 100%;
  max-width: 100%;
  padding-top: 56px;
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
}

.about-hero .internal-hero__eyebrow {
  color: #8ee6cb;
}

.about-hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1.03;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.about-hero__highlight {
  display: inline-block;
  padding-bottom: 0.04em;
  text-decoration: underline;
  text-decoration-color: #4fc3ff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.about-hero p,
.about-hero__lead {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-hero + .internal-content {
  padding-top: 28px;
}

@media (max-width: 1400px) {
  .about-hero.internal-hero {
    background:
      linear-gradient(90deg, rgba(52, 93, 151, 0.97) 0%, rgba(79, 133, 196, 0.9) 44%, rgba(111, 175, 230, 0.18) 72%, rgba(111, 175, 230, 0.08) 100%),
      url("../../assets/images/shared/backgrounds/hero-bg.png") right center / cover no-repeat;
  }
}

@media (max-width: 900px) {
  .about-hero.internal-hero {
    min-height: 300px;
    background:
      linear-gradient(90deg, rgba(52, 93, 151, 0.97) 0%, rgba(79, 133, 196, 0.92) 42%, rgba(111, 175, 230, 0.24) 74%, rgba(111, 175, 230, 0.12) 100%),
      url("../../assets/images/shared/backgrounds/hero-bg.png") 72% center / cover no-repeat;
  }

  .about-pillars--page,
  .about-pillars--page.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coordinators__grid,
  .coordinators__grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero.internal-hero::after {
    display: none;
  }

  .about-hero > .container,
  .internal-content > .container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--spacing-x-tight);
    padding-right: var(--spacing-x);
  }

  .about-hero > .container {
    padding-top: 40px;
    padding-left: var(--spacing-x-tight);
    padding-right: var(--spacing-x);
  }

  .about-hero.internal-hero {
    padding: 20px 0 32px;
    min-height: 280px;
    background: linear-gradient(90deg, rgba(52, 93, 151, 0.98) 0%, rgba(79, 133, 196, 0.94) 52%, rgba(111, 175, 230, 0.78) 100%);
  }

  .about-hero h1 {
    max-width: 320px;
    font-size: clamp(1.55rem, 6vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .about-hero__highlight {
    display: inline;
    padding-bottom: 0;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  .about-hero p,
  .about-hero__lead {
    max-width: 340px;
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .about-pillars.is-reveal-ready .about-pillar:nth-child(odd),
  .about-pillars.is-reveal-ready .about-pillar:nth-child(even) {
    transform: translateY(28px) scale(0.98);
  }

  .about-pillars.is-reveal-ready.is-visible .about-pillar {
    transform: translateY(0) scale(1);
  }

  .about-pillars.is-visible .about-pillar:hover,
  .about-pillars.is-visible .about-pillar:focus-visible,
  .about-pillars.is-visible .about-pillar.is-active {
    transform: translateY(-8px) scale(1.03);
  }

  .coordinators {
    overflow: visible;
    padding: 16px 12px;
  }

  .coordinators__grid,
  .coordinators__grid.row {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .about-pillars--page,
  .about-pillars--page.row {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-hero.internal-hero {
    min-height: 0;
    padding: 18px 0 26px;
    background: linear-gradient(90deg, rgba(52, 93, 151, 0.98) 0%, rgba(79, 133, 196, 0.95) 58%, rgba(111, 175, 230, 0.82) 100%);
  }

  .about-hero h1 {
    max-width: 290px;
  }

  .about-hero__highlight {
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
  }

  .about-hero p,
  .about-hero__lead {
    max-width: 300px;
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .about-pillars,
  .about-pillars--page,
  .about-pillars--page.row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-pillar,
  .about-pillars--page .about-pillar {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 24px 20px;
    min-height: 0;
  }

  .about-pillar::before {
    width: calc(100% - 24px);
    bottom: -5px;
  }

  .coordinators__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coordinator-card__photo {
    height: clamp(200px, 52vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-pillars.is-reveal-ready .about-pillar,
  .about-pillars.is-reveal-ready .about-pillar:nth-child(odd),
  .about-pillars.is-reveal-ready .about-pillar:nth-child(even) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Modo escuro — sobre */
:root[data-theme="dark"] .internal-page {
  background: #07111f;
}

:root[data-theme="dark"] .about-page {
  background: #07111f;
}

:root[data-theme="dark"] .about-hero.internal-hero {
  background:
    linear-gradient(90deg, rgba(22, 52, 91, 0.96) 0%, rgba(31, 79, 132, 0.9) 52%, rgba(46, 120, 183, 0) 78%, rgba(46, 120, 183, 0) 100%),
    url("../../assets/images/shared/backgrounds/hero-bg.png") right 62% / contain no-repeat;
}

@media (max-width: 1400px) {
  :root[data-theme="dark"] .about-hero.internal-hero {
    background:
      linear-gradient(90deg, rgba(22, 52, 91, 0.98) 0%, rgba(31, 79, 132, 0.92) 44%, rgba(46, 120, 183, 0.22) 72%, rgba(46, 120, 183, 0.1) 100%),
      url("../../assets/images/shared/backgrounds/hero-bg.png") right center / cover no-repeat;
  }
}

:root[data-theme="dark"] .about-hero .internal-hero__eyebrow {
  color: #4fc3ff;
}

:root[data-theme="dark"] .about-hero__highlight {
  text-decoration-color: #4fc3ff;
}

:root[data-theme="dark"] .internal-content {
  background:
    radial-gradient(circle at 12% 15%, rgba(79, 195, 255, 0.08), transparent 28%),
    #07111f;
}

:root[data-theme="dark"] .about-pillar {
  background: rgba(11, 23, 40, 0.94);
  border-color: rgba(79, 195, 255, 0.24);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(79, 195, 255, 0.1);
}

:root[data-theme="dark"] .about-pillar::before {
  background: linear-gradient(90deg, rgba(79, 195, 255, 0.08) 0%, #4fc3ff 50%, rgba(79, 195, 255, 0.08) 100%);
  box-shadow:
    0 0 12px rgba(79, 195, 255, 0.45),
    0 0 24px rgba(0, 134, 212, 0.22);
}

:root[data-theme="dark"] .about-pillar__icon {
  color: #7bd4ff;
  background: rgba(79, 195, 255, 0.14);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .about-pillar h3 {
  color: #e8f2ff;
}

:root[data-theme="dark"] .about-pillar p {
  color: #a9bdd4;
}

:root[data-theme="dark"] .about-pillar__highlight {
  text-decoration-color: #4fc3ff;
}

:root[data-theme="dark"] .about-pillar:hover,
:root[data-theme="dark"] .about-pillar:focus-visible,
:root[data-theme="dark"] .about-pillar.is-active {
  border-color: #4fc3ff;
  background: linear-gradient(145deg, #075fae 0%, #003d7d 100%);
  box-shadow:
    0 18px 34px rgba(0, 67, 126, 0.35),
    0 0 24px rgba(79, 195, 255, 0.2);
}

:root[data-theme="dark"] .about-pillar:hover .about-pillar__icon,
:root[data-theme="dark"] .about-pillar:focus-visible .about-pillar__icon,
:root[data-theme="dark"] .about-pillar.is-active .about-pillar__icon {
  color: #075fae;
  background: #fff;
}

:root[data-theme="dark"] .coordinators {
  background: rgba(11, 23, 40, 0.92);
  border-color: rgba(79, 195, 255, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .coordinators__header span {
  color: #7bd4ff;
}

:root[data-theme="dark"] .coordinators__header p {
  color: #a9bdd4;
}

:root[data-theme="dark"] .coordinator-card {
  background: rgba(11, 23, 40, 0.96);
  border-color: rgba(79, 195, 255, 0.32);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(79, 195, 255, 0.15),
    inset 0 0 24px rgba(79, 195, 255, 0.06);
}

:root[data-theme="dark"] .coordinator-card::before {
  background: radial-gradient(ellipse 90% 60% at 50% 28%, rgba(79, 195, 255, 0.22) 0%, rgba(79, 195, 255, 0.06) 42%, transparent 72%);
}

:root[data-theme="dark"] .coordinator-card:hover {
  border-color: rgba(79, 195, 255, 0.55);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(79, 195, 255, 0.28),
    inset 0 0 30px rgba(79, 195, 255, 0.1);
}

:root[data-theme="dark"] .coordinator-card__photo {
  background: #ffffff;
  mix-blend-mode: normal;
  filter: brightness(1.06) contrast(1.03);
}

:root[data-theme="dark"] .coordinator-card h3 {
  color: #e8f2ff;
}

