/* Página Sobre — visual isolado para evitar cache/conflito com outros estilos */
.about-page {
  --about-blue: #075ec8;
  --about-cyan: #16b8e8;
  --about-ink: #061735;
  --about-muted: #5d6f88;
  --about-line: #dbe7f5;
  --about-shadow: 0 24px 70px rgba(7, 32, 72, .14);
  overflow: hidden;
  background: #ffffff;
}

.about-page * {
  box-sizing: border-box;
}

.about-hero {
  position: relative !important;
  display: grid !important;
  align-items: center !important;
  min-height: min(760px, calc(100vh - 84px));
  padding: clamp(46px, 7vw, 86px) 0;
  color: #fff !important;
  background:
    radial-gradient(circle at 84% 18%, rgba(64, 210, 255, .28), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(0, 129, 255, .28), transparent 35%),
    linear-gradient(135deg, #04142f 0%, #082f6e 56%, #0873dc 100%) !important;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(246, 250, 255, .96));
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 75%);
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.about-eyebrow,
.about-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8feaff !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-hero-copy h1 {
  max-width: 680px;
  margin: 14px 0 18px;
  color: #fff !important;
  font-size: clamp(48px, 6.6vw, 88px);
  line-height: .96;
  letter-spacing: -.055em;
}

.about-hero-copy p {
  max-width: 610px;
  margin: 0;
  color: #d9ecff !important;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-page .btn-solid,
.about-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.about-page .btn-solid {
  border: 0;
  color: #fff !important;
  background: linear-gradient(135deg, #0b6df6, #14bee9);
  box-shadow: 0 18px 35px rgba(0, 114, 255, .28);
}

.about-outline-btn {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff !important;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.about-outline-btn.dark {
  border-color: #b7cce4;
  color: var(--about-blue) !important;
  background: #fff;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}

.about-mini-stats span {
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.about-mini-stats b,
.about-mini-stats small {
  display: block;
}

.about-mini-stats b {
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
}

.about-mini-stats small {
  margin-top: 5px;
  color: #bdeeff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-visual {
  position: relative !important;
  min-height: clamp(390px, 42vw, 560px);
}

.about-slides {
  position: absolute !important;
  inset: 0 0 38px 40px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 34px;
  background: #092450;
  box-shadow: 0 34px 90px rgba(0, 8, 26, .42);
  transform: rotate(1.5deg);
}

.about-slide {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  margin: 0 !important;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .7s ease, transform 5.5s ease;
}

.about-slide.is-active,
.about-slide:first-child {
  opacity: 1;
  transform: scale(1);
}

.about-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 33, .04) 35%, rgba(2, 13, 33, .83));
}

.about-slide img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.about-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  color: #fff;
}

.about-slide figcaption b {
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1;
}

.about-slide figcaption span {
  color: #d3ecff;
  font-size: 15px;
}

.about-logo-orbit {
  position: absolute !important;
  z-index: 4;
  left: 0;
  top: 50%;
  width: clamp(104px, 12vw, 156px);
  height: clamp(104px, 12vw, 156px);
  transform: translateY(-50%);
}

.about-logo-orbit > span {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(151, 230, 255, .86);
  border-radius: 50%;
  animation: about-orbit-spin 20s linear infinite;
}

.about-logo-orbit > span::before,
.about-logo-orbit > span::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #80eaff;
  box-shadow: 0 0 18px #80eaff;
}

.about-logo-orbit > span::before { left: 10px; top: 18px; }
.about-logo-orbit > span::after { right: 12px; bottom: 17px; }

.about-logo-orbit > div {
  position: absolute;
  inset: 15px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 16, 45, .34);
}

.about-logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes about-orbit-spin {
  to { transform: rotate(360deg); }
}

.about-dots {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 0;
  display: flex;
  gap: 7px;
}

.about-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

.about-dots button.is-active {
  width: 26px;
  background: #fff;
}

.about-story {
  background: #f6faff;
}

.about-story-grid,
.about-leadership-grid {
  display: grid !important;
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.about-story-grid {
  grid-template-columns: 280px minmax(0, 1fr);
}

.about-year {
  position: relative;
  display: grid;
  min-height: 240px;
  place-content: center;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(145deg, #075ec8, #061a3d);
  text-align: center;
  box-shadow: var(--about-shadow);
}

.about-year span {
  color: #a4edff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-year strong {
  max-width: 230px;
  padding: 10px 18px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .95;
}

.about-year > i {
  position: absolute;
  right: -18px;
  bottom: -32px;
  color: rgba(255,255,255,.10);
  font-size: 130px;
}

.about-story article h2,
.about-section-heading h2,
.about-leadership h2 {
  margin: 8px 0 18px;
  color: var(--about-ink);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.about-rich-text {
  color: #43546f;
  font-size: 17px;
  line-height: 1.85;
}

.about-section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-section-heading .about-section-kicker {
  justify-content: center;
  color: var(--about-cyan) !important;
}

.about-section-heading p {
  color: var(--about-muted);
  font-size: 17px;
}

.about-identity-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-identity-grid > article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--about-line);
  border-radius: 28px;
  background: linear-gradient(155deg, #fff, #f7fbff);
  box-shadow: 0 16px 42px rgba(7,21,47,.08);
}

.about-identity-grid > article > i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--about-blue), var(--about-cyan));
  font-size: 23px;
}

.about-identity-grid article > span {
  display: block;
  margin-top: 26px;
  color: var(--about-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-identity-grid h3 {
  margin: 6px 0 13px;
  color: var(--about-ink);
  font-size: 24px;
}

.about-identity-grid p {
  color: #52627a;
  line-height: 1.72;
}

.about-values-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-values-card b {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: #17446f;
  background: #eaf5ff;
  font-size: 12px;
}

.about-values-card b i {
  color: #12a36d;
}

.about-leadership {
  background: linear-gradient(180deg, #f6faff, #fff);
}

.about-leadership-grid {
  grid-template-columns: 320px minmax(0, 1fr);
}

.about-leadership-symbol {
  position: relative;
  display: grid;
  width: 290px;
  height: 290px;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--about-shadow);
}

.about-leadership-symbol img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.about-leadership-symbol span {
  position: absolute;
  inset: -14px;
  border: 1px dashed #6dcff2;
  border-radius: 50%;
  animation: about-orbit-spin 24s linear infinite;
}

.about-leadership article h3 {
  margin: -8px 0 14px;
  color: var(--about-blue);
  font-size: 20px;
}

.about-leadership article p {
  max-width: 720px;
  margin-bottom: 24px;
  color: #52627a;
  font-size: 17px;
  line-height: 1.75;
}

.about-verse {
  padding: clamp(74px, 9vw, 120px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(107, 220, 255, .2), transparent 35%),
    linear-gradient(135deg, #061a3c, #075ec8);
  text-align: center;
}

.about-verse i {
  color: #78eaff;
  font-size: 30px;
}

.about-verse blockquote {
  max-width: 900px;
  margin: 18px auto;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.25;
}

.about-verse cite {
  color: #c2eeff;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-story-grid,
  .about-leadership-grid,
  .about-identity-grid {
    grid-template-columns: 1fr;
  }

  .about-identity-grid > article {
    min-height: 0;
  }

  .about-leadership article {
    text-align: center;
  }

  .about-leadership article .about-section-kicker {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .about-hero {
    padding: 34px 0 50px;
  }

  .about-hero-copy h1 {
    font-size: 42px;
  }

  .about-hero-copy p {
    font-size: 15px;
  }

  .about-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-mini-stats {
    grid-template-columns: 1fr;
  }

  .about-mini-stats span {
    min-height: 64px;
  }

  .about-visual {
    min-height: 350px;
  }

  .about-slides {
    inset: 0 0 28px 18px !important;
    border-radius: 24px;
    transform: rotate(0deg);
  }

  .about-logo-orbit {
    left: -3px;
    width: 92px;
    height: 92px;
  }

  .about-logo-orbit > div {
    inset: 10px;
    border-width: 4px;
  }

  .about-slide figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .about-slide figcaption span {
    font-size: 13px;
  }

  .about-year {
    min-height: 160px;
    border-radius: 22px;
  }

  .about-story article h2,
  .about-section-heading h2,
  .about-leadership h2 {
    font-size: 32px;
  }

  .about-rich-text,
  .about-leadership article p {
    font-size: 15px;
  }

  .about-identity-grid > article {
    padding: 24px;
    border-radius: 22px;
  }

  .about-leadership-symbol {
    width: 220px;
    height: 220px;
  }

  .about-verse blockquote {
    font-size: 28px;
  }
}
