.profissionais-hero {
  background: linear-gradient(135deg, #f4fbfb 0%, #ffffff 55%, #e8f5f6 100%);
  padding: 85px 0 65px;
  text-align: center;
}

.profissionais-tag {
  display: inline-block;
  color: #006d75;
  background: rgba(0, 109, 117, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.profissionais-hero h1 {
  color: #006d75;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.profissionais-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
  font-size: 1.05rem;
}

.profissionais-lista {
  padding: 75px 0;
}

.profissionais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.profissional-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profissional-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 109, 117, 0.16);
}

.profissional-card-foto {
  background: #f4fbfb;
}

.profissional-card-foto img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.profissional-card-info {
  padding: 24px 22px 26px;
  text-align: center;
}

.profissional-card-info h2 {
  color: #006d75;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.profissional-card-info p {
  color: #555;
  font-size: 0.98rem;
  margin: 0;
}

@media (max-width: 900px) {
  .profissionais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
  }

  .header a[aria-label="Página inicial da Clínica Integra"] {
    display: block;
  }
}

@media (max-width: 600px) {
  .profissionais-hero {
    padding: 55px 0 45px;
  }

  .profissionais-hero h1 {
    font-size: 2rem;
  }

  .profissionais-grid {
    grid-template-columns: 1fr;
  }

  .profissional-card-foto img {
    height: 360px;
  }
}
