/* =========================
   SOBRE (layout inspirado no Figma)
   ========================= */

.about-hero{
  padding-top: 2.2rem;
  padding-bottom: 1.2rem;
}

.about-panel{  
  backdrop-filter: blur(10px);
  padding: clamp(22px, 3.2vw, 44px);
  align-items: center;
  justify-content: center;
  
}
.card-bg-blur{
  background-image: url("../img/Justa_blur6.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 80%;
}

.about-title{
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.03;
  font-size: clamp(2.0rem, 3.2vw, 3.0rem);
}

.about-lead{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 70ch;
}

.about-metric{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(15,15,18,.12);
  backdrop-filter: blur(8px);
}

.about-metric-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.26);
  border: 1px solid rgba(15,15,18,.10);
  color: rgba(15,15,18,.85);
}

.about-metric-title{
  font-weight: 800;
  line-height: 1.1;
}

.about-metric-sub{
  color: var(--muted);
  font-size: .95rem;
  margin-top: 2px;
}

/* Cards “clean” (sem glass claustrofóbico) */
.about-card{ 
  position: relative;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(15,15,18,.10);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.about-card::before{
  content:"";
  position:absolute;
  inset: 0;

  background-size: 130px;
  background-repeat:no-repeat;
  background-position:center;

  opacity:0.1;

  pointer-events:none;
}
.about-card-missao::before{
  background-image:url("../img/missao.png");
}
.about-card-metodo::before{
  background-image:url("../img/metodo.png");
}
.about-card-valores::before{
  background-image:url("../img/Valores.png");
}

.about-card-head{
  padding: 28px 26px 16px;
}

.about-card-foot{
  padding: 0 22px 22px;
  margin-top: auto;
}

.about-card-title{
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0 0 10px;
}

.about-divider-fade{
  width: min(340px, 82%);
  height: 4px;
  margin: 10px auto 18px auto;
  background: rgba(15,15,18,.65);

  clip-path: polygon(
    0% 50%,
    12% 35%,
    88% 35%,
    100% 50%,
    88% 65%,
    12% 65%
  );
}

.about-divider-fade::before{
  content:"";
  width: min(320px, 82%);
  height: 2px;
  background: rgba(15,15,18,.55);
  border-radius: 2px;
}

.about-divider-fade::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  width: min(140px, 40%);
  height:1px;
  background: rgba(15,15,18,.75);
  border-radius:2px;
}

.about-card-text{
  text-align: justify;
  line-height: 1.7;
  color: var(--muted);
  font-size: .98rem;
  margin-top: 18px;
  margin-bottom: 18px;
}

.about-badge{
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
 text-align: center;
  font-weight: 900;
  font-size: .95rem;         
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,15,18,.88);
}

.about-card h3{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.22rem;
}

.about-card p{
  color: var(--muted);
  line-height: 1.6;
}

.about-h2{
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-list{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(15,15,18,.78);
  line-height: 1.7;
}

.about-figure{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(15,15,18,.12);
  background: rgba(255,255,255,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.about-figure-img{
  height: 340px;
  /* “fake” visual fácil de substituir */
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(200,163,127,.22) 60%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.55), rgba(58,43,34,.18) 65%),
    linear-gradient(135deg, rgba(0,0,0,.08), rgba(255,255,255,.0));
}

.about-figure-caption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: .92rem;
  display:flex;
  gap: 10px;
  align-items:center;
  border-top: 1px solid rgba(15,15,18,.10);
  background: rgba(255,255,255,.28);
}

.about-cta{
  border-radius: var(--radius-xl);
  padding: 22px 22px;
  background: rgba(255,255,255,.24);
  border: 1px solid rgba(15,15,18,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

@media (max-width: 576px){
  .about-figure-img{ height: 260px; }
}

/* =========================
   MURAL — cards de colaboradores
   ========================= */

.team-wall{
  padding: 2.6rem 0 3.4rem;
}

.team-wall-head{
  max-width: 980px;
  margin: 0 auto 1.6rem;
  text-align: left;
}

.team-wall-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 .35rem;
  font-size: clamp(1.35rem, 1.5vw, 1.65rem);
}

.team-wall-sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 70ch;
}

/* Card clean, com respiro e bordas suaves */
.profile-card{
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(15,15,18,.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 34px rgba(0,0,0,.07);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(15, 15, 18, .12);

  background-image: url('../img/cristiano-pizzatto.png');
  background-size: cover;       /* preenche toda a área */
  background-position: center;  /* centraliza a imagem */
  background-repeat: no-repeat; /* evita repetição */
}

.profile-meta{
  min-width: 0;
}

.profile-name{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  line-height: 1.2;
}

.profile-role{
  margin: 4px 0 0;
  color: rgba(15,15,18,.58);
  font-weight: 600;
  font-size: .92rem;
}

.profile-bio{
  margin: 8px 0 18px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* Social minimal: só ícone com “pill” */
.profile-links{
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(15,15,18,.78);
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(15,15,18,.08);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.social-link:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.06);
  color: rgba(15,15,18,.95);
}

@media (max-width: 992px){
  .team-wall{ padding: 2.2rem 0 2.8rem; }
}
