
/* v26 — Missão, Visão e Valores */

.identity-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}

.identity-section::before {
  content: "";
  position: absolute;
  left: -220px;
  top: 90px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199,161,89,.16);
  border-radius: 50%;
  pointer-events: none;
}

.identity-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(8,40,71,.07), transparent 68%);
  pointer-events: none;
}

.identity-head {
  align-items: flex-start !important;
  gap: 34px;
}

.identity-head h2 {
  max-width: 610px;
}

.identity-intro {
  max-width: 520px;
  margin: 12px 0 0;
  color: #506073;
  font-size: 16px;
  line-height: 1.72;
}

.identity-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.identity-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 42px;
  background: #fff;
  border: 1px solid rgba(8,40,71,.08);
  box-shadow: 0 28px 70px rgba(8,40,71,.085);
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(199,161,89,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.0), rgba(8,40,71,.035));
  pointer-events: none;
}

.identity-panel::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,161,89,.85));
}

.vision-panel {
  background:
    linear-gradient(135deg, rgba(8,40,71,.98), rgba(13,52,94,.96));
  color: #fff;
  border-color: rgba(199,161,89,.24);
}

.vision-panel::before {
  background:
    radial-gradient(circle at 82% 16%, rgba(199,161,89,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(8,40,71,.0));
}

.identity-panel-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(199,161,89,.36);
  background: rgba(255,255,255,.62);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}

.vision-panel .identity-panel-icon {
  background: rgba(255,255,255,.06);
  border-color: rgba(199,161,89,.38);
}

.identity-fa {
  font-size: 24px !important;
  color: currentColor !important;
}

.identity-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.identity-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--ink);
}

.vision-panel h3 {
  color: #fff;
}

.identity-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4d5d6f;
  font-size: 16px;
  line-height: 1.72;
}

.vision-panel p {
  color: rgba(235,242,249,.88);
}

.values-premium-block {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(8,40,71,.075);
  box-shadow: 0 24px 56px rgba(8,40,71,.065);
  padding: 28px;
}

.values-premium-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(8,40,71,.08);
  margin-bottom: 22px;
}

.values-premium-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.values-premium-head strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.14;
}

.premium-values {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.premium-values .value-card {
  min-height: 210px;
  padding: 24px 18px !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.premium-values .value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199,161,89,.34);
  box-shadow: 0 22px 52px rgba(8,40,71,.11);
}

@media (max-width: 1180px) {
  .identity-main-grid {
    grid-template-columns: 1fr;
  }

  .premium-values {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .identity-head,
  .values-premium-head {
    display: block !important;
  }

  .identity-intro {
    margin-top: 18px;
  }

  .identity-panel {
    min-height: auto;
    padding: 32px 26px;
  }

  .identity-panel h3 {
    font-size: 29px;
  }

  .values-premium-head strong {
    display: block;
    margin-top: 8px;
    font-size: 24px;
  }

  .premium-values {
    grid-template-columns: 1fr !important;
  }
}
