/* ============================================
   PROFISSIONAIS PAGE — CSS
============================================ */

/* INTRO */
.prof-intro { padding: 32px 0 0; }
.prof-intro__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--clr-text-light);
}
.prof-intro__inner strong { color: var(--clr-primary); }

/* SECTION */
.prof-section { padding-top: 48px; }

/* ===== CARD BASE ===== */
.prof-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.prof-card:hover {
  box-shadow: 0 12px 40px rgba(44,44,44,0.1);
  transform: translateY(-4px);
}

/* PHOTO */
.prof-card__photo-wrap {
  position: relative;
  overflow: hidden;
}
.prof-card__photo--avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ini-bg, #6b7c5c);
}
.prof-card__photo--avatar span {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.prof-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* BODY */
.prof-card__body {
  padding: 28px 32px 32px;
}
.prof-card__role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 4px;
}
.prof-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
  line-height: 1.2;
}
.prof-card__specialty {
  display: block;
  font-size: 0.82rem;
  color: var(--clr-primary);
  font-weight: 500;
  margin-bottom: 14px;
}
.prof-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
}
.prof-card__body p {
  color: var(--clr-text-light);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.prof-card__body blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 8px 0 8px 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--clr-text);
  margin: 14px 0 16px;
  line-height: 1.5;
}
.btn--sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

/* ===== CARD FEATURED (Kátia) ===== */
.prof-card--featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-bottom: 48px;
  border-color: var(--clr-accent);
  box-shadow: 0 4px 24px rgba(196,149,106,0.12);
}
.prof-card--featured .prof-card__photo-wrap {
  height: 100%;
  min-height: 380px;
}
.prof-card--featured .prof-card__photo--avatar {
  height: 100%;
  min-height: 380px;
}
.prof-card--featured .prof-card__photo--avatar span {
  font-size: 3rem;
}
.prof-card--featured .prof-card__photo-img {
  height: 100%;
  min-height: 380px;
}
.prof-card--featured .prof-card__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prof-card--featured .prof-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.prof-card--featured .prof-card__name {
  font-size: 2rem;
  margin-bottom: 2px;
}
.prof-card--featured .prof-card__tags {
  justify-content: flex-end;
  max-width: 260px;
  margin-bottom: 0;
}
.prof-card--featured p {
  font-size: 1rem;
  margin-bottom: 14px;
}
.prof-card--featured .btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* ===== GRID DOS DEMAIS ===== */
.prof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prof-card--regular .prof-card__photo-wrap {
  height: 300px;
}
.prof-card--regular .prof-card__photo--avatar {
  height: 300px;
}
.prof-card--regular .prof-card__photo--avatar span {
  font-size: 2.2rem;
}
.prof-card--regular .prof-card__photo-img {
  height: 300px;
  object-position: top center;
}
.prof-card--regular .prof-card__name {
  font-size: 1.25rem;
}

/* NOTA */
.prof-photo-note {
  margin-top: 40px;
  background: #fffbf0;
  border: 1px dashed #c4956a;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #7a5a35;
}
.prof-photo-note code {
  background: rgba(196,149,106,0.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
  .prof-card--featured { grid-template-columns: 220px 1fr; }
  .prof-card--featured .prof-card__tags { max-width: 200px; }
}

@media (max-width: 768px) {
  .prof-card--featured {
    grid-template-columns: 1fr;
  }
  .prof-card--featured .prof-card__photo-wrap,
  .prof-card--featured .prof-card__photo--avatar,
  .prof-card--featured .prof-card__photo-img {
    min-height: 260px;
    height: 260px;
  }
  .prof-card--featured .prof-card__body { padding: 28px 24px; }
  .prof-card--featured .prof-card__name { font-size: 1.6rem; }
  .prof-card--featured .prof-card__header { flex-direction: column; }
  .prof-card--featured .prof-card__tags { justify-content: flex-start; max-width: 100%; }

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