body:has(.bio-texto) .hero-interno {
  background:
    linear-gradient(rgba(4, 34, 30, 0.43), rgba(4, 34, 30, 0.43)),
    url("../assets/images/rostos.jpeg") center / cover no-repeat;
}

@media (max-width: 768px) {
  body:has(.bio-texto) .hero-interno {
    background:
      linear-gradient(rgba(4, 34, 30, 0.53), rgba(4, 34, 30, 0.53)),
      url("../assets/images/rostos.jpeg") center / cover no-repeat;
  }
}

.bio-texto__foto {
  float: left;
  width: 340px;
  max-width: 45%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  margin: 0.4rem 2rem 1rem 0;
}

.bio-texto::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 640px) {
  .bio-texto__foto {
    float: none;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 0 1.5rem;
  }
}

.credenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.credencial-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.credencial-card svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--verde-escuro);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .credenciais-grid {
    grid-template-columns: 1fr;
  }
}
