/*
  About section refactor
  - bloco superior com tarja central + duas colunas
  - painel inferior de Missao, Visao e Valores
  - fidelidade visual premium com responsividade completa
*/

.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 250, 0.94) 0%, rgba(242, 245, 246, 0.94) 62%, rgba(241, 243, 244, 0.94) 100%),
    radial-gradient(120% 80% at 15% 6%, rgba(45, 194, 166, 0.1), rgba(45, 194, 166, 0) 45%),
    url("../../assets/images/Sobre/bg_sobre.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 45% at 50% -8%, rgba(45, 194, 166, 0.08), rgba(45, 194, 166, 0) 66%),
    linear-gradient(115deg, rgba(45, 194, 166, 0.06), rgba(45, 194, 166, 0) 28%);
}

.about-section .container {
  position: relative;
  z-index: 1;
  /* width: 100%; */
  /* max-width: 100%; */
  /* margin-inline: 0; */
  padding: clamp(2rem, 3.2vw, 3.2rem) 0 clamp(2.1rem, 3vw, 3rem);
}

.about-kicker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2.2vw, 2rem);
  margin-bottom: clamp(1.4rem, 2.3vw, 2.1rem);
}

.about-kicker-wrap::before,
.about-kicker-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 194, 166, 0), rgba(45, 194, 166, 0.42));
}

.about-kicker-wrap::after {
  transform: scaleX(-1);
}

.about-kicker {
  margin: 0;
  padding: 0.9rem clamp(1.1rem, 2.2vw, 1.8rem);
  border-radius: 999px;
  background: rgba(45, 194, 166, 0.12);
  border: 1px solid rgba(45, 194, 166, 0.2);
  color: #1a4f47;
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(1.3rem, 2.9vw, 3rem);
  padding: clamp(1rem, 1.8vw, 1.7rem) clamp(0.6rem, 1.8vw, 1.1rem);
  /* border: 1px solid rgba(190, 207, 212, 0.44); */
  /* border-radius: 24px; */
  /* background: linear-gradient(180deg, rgba(251, 253, 254, 0.92), rgba(246, 250, 251, 0.9)); */
  /* box-shadow: 0 14px 30px rgba(7, 28, 25, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-content:hover {
  /* transform: translateY(-3px); */
  border-color: rgba(45, 194, 166, 0.34);
  /* box-shadow: 0 20px 34px rgba(7, 28, 25, 0.11); */
}

.about-label {
  margin: 0 0 0.5rem;
  color: #26b89c !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(0.84rem, 1vw, 1rem);
  text-transform: uppercase;
}

.about-text h2 {
  margin: 0;
  color: #152847;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.06;
  max-width: 27ch;
}

.about-highlight {
  color: #26b89c;
}

.about-heading-rule {
  display: block;
  width: clamp(64px, 8vw, 84px);
  height: 4px;
  margin: 0.9rem 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #2dc2a6, rgba(45, 194, 166, 0.2));
  box-shadow: 0 0 12px rgba(45, 194, 166, 0.25);
}

.about-text p {
  margin: 0 0 0.95rem;
  color: #32495f;
  font-size: clamp(1rem, 1.04vw, 1.1rem);
  line-height: 1.62;
  text-align: justify;
  text-shadow: 0 2px 10px rgba(9, 23, 37, 0.08);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(130px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
  transition: opacity 2.1s ease, transform 2.6s cubic-bezier(0.22, 1, 0.36, 1), filter 2s ease;
  transition-delay: 480ms;
}

.about-content.is-visible .about-image {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.about-image-frame {
  position: relative;
  width: clamp(300px, 35vw, 470px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 12px;
  background:
    conic-gradient(from 210deg, rgba(45, 194, 166, 0.15), rgba(45, 194, 166, 0.95) 22%, rgba(45, 194, 166, 0.25) 52%, rgba(45, 194, 166, 0.92) 78%, rgba(45, 194, 166, 0.14));
  box-shadow:
    0 0 0 1px rgba(45, 194, 166, 0.25),
    0 0 26px rgba(45, 194, 166, 0.28),
    0 30px 45px rgba(9, 27, 34, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-image-frame::before,
.about-image-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-image-frame::before {
  inset: -16px;
  border: 1px dashed rgba(45, 194, 166, 0.3);
}

.about-image-frame::after {
  inset: -27px;
  border: 1px solid rgba(45, 194, 166, 0.14);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 5px solid rgba(242, 249, 248, 0.95);
  box-shadow: inset 0 0 0 1px rgba(45, 194, 166, 0.35);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.about-image-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(45, 194, 166, 0.32),
    0 0 36px rgba(45, 194, 166, 0.32),
    0 34px 50px rgba(9, 27, 34, 0.24);
}

.about-image-frame:hover img {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.about-mvv-section {
  margin-top: clamp(1.5rem, 2.5vw, 2.4rem);
}

.mvv-shell {
  padding: clamp(1.4rem, 2.2vw, 2.2rem) clamp(1rem, 2vw, 1.6rem) 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(190, 207, 212, 0.48);
  background: linear-gradient(180deg, #f6f8fa 0%, #f2f4f6 100%);
  box-shadow: 0 12px 26px rgba(9, 26, 33, 0.07);
}

.mvv-title {
  margin: 0;
  text-align: center;
  color: #1d2842;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.mvv-title-rule {
  width: min(240px, 42%);
  height: 3px;
  margin: 0.72rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 194, 166, 0), rgba(45, 194, 166, 0.9), rgba(45, 194, 166, 0));
  box-shadow: 0 0 12px rgba(45, 194, 166, 0.27);
}

.mvv-cards {
  margin-top: clamp(1.3rem, 1.9vw, 1.9rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.1vw, 1.05rem);
}

.mvv-card {
  border: 1px solid rgba(205, 218, 223, 0.8);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(9, 26, 33, 0.08);
  padding: 1.15rem 1.05rem 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 194, 166, 0.44);
  box-shadow: 0 16px 28px rgba(9, 26, 33, 0.13);
}

.mvv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27b79b;
}

.mvv-icon svg {
  width: 43px;
  height: 43px;
}

.mvv-card h3 {
  margin: 0;
  color: #26a88e;
  text-align: center;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.mvv-card h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 0.48rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 194, 166, 0.2), rgba(45, 194, 166, 0.95), rgba(45, 194, 166, 0.2));
}

.mvv-card p {
  margin: 0.82rem 0 0;
  color: #33485d;
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.55;
}

.mvv-card.values ul {
  margin: 0.82rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.mvv-card.values li {
  position: relative;
  padding-left: 1.2rem;
  color: #33485d;
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.45;
}

.mvv-card.values li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2dc2a6;
  font-weight: 700;
}

.mvv-footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.8rem;
}

.mvv-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.86rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(197, 214, 219, 0.82);
  color: #30485e;
  box-shadow: 0 7px 16px rgba(10, 27, 33, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mvv-footer span:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 194, 166, 0.42);
  box-shadow: 0 12px 22px rgba(10, 27, 33, 0.13);
}

.mvv-footer i {
  color: #2dc2a6;
  font-size: 0.85rem;
}

@media (max-width: 1180px) {
  .about-content {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

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

  .mvv-card.values {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .about-text h2 {
    max-width: 100%;
  }

  .about-image {
    order: 2;
  }

  .about-image-frame {
    width: clamp(270px, 70vw, 410px);
  }
}

@media (max-width: 760px) {
  .about-section .container {
    width: min(1320px, calc(100% - 1.1rem));
  }

  .about-kicker-wrap {
    gap: 0.5rem;
  }

  .about-kicker {
    letter-spacing: 0.28em;
    white-space: normal;
  }

  .mvv-shell {
    border-radius: 16px;
  }

  .mvv-cards {
    grid-template-columns: 1fr;
  }

  .mvv-card.values {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-content,
  .about-image,
  .about-image-frame,
  .about-image-frame img,
  .mvv-card,
  .mvv-footer span {
    transition: none;
  }

  .about-content:hover,
  .mvv-card:hover,
  .mvv-footer span:hover,
  .about-image-frame:hover,
  .about-image-frame:hover img {
    transform: none;
  }
}
