/* ════════════════════════════════════════════════════════════════
   AURA EXPERIENCE — TERAPEUTAS
   ════════════════════════════════════════════════════════════════ */

.therapists-intro {
    padding-block: clamp(4rem, 8vw, 7rem);
    text-align: center;
}

.therapists-intro p {
    max-width: 720px;
    margin: var(--sp-3) auto 0;
}

/* ── Filtros ──────────────────────────────────────────────────── */
.filter-bar {
    padding: var(--sp-5) 0;
    position: sticky;
    top: var(--header-h);
    z-index: 50;
    border-bottom: 1px solid var(--color-line-strong);
    background: var(--color-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.filter-bar h4 {
    font-size: var(--fs-xs);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--sp-3);
    text-align: center;
}

/* Línea única con scroll horizontal en pantallas estrechas */
.filter-list {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--sp-2);
    justify-content: center;
    overflow-x: auto;
    padding: 4px var(--sp-3);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.filter-list::-webkit-scrollbar {
    height: 4px;
}

.filter-list::-webkit-scrollbar-thumb {
    background: var(--color-line-strong);
    border-radius: 2px;
}

.filter-btn {
    padding: var(--sp-2) var(--sp-4);
    background: var(--color-bg-card);
    border: 1px solid var(--color-line-strong);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--color-text-soft);
    cursor: pointer;
    transition: all var(--tr-fast);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.filter-btn.is-active {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

/* ── Grid de terapeutas ──────────────────────────────────────── */
.therapists-section {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
}

.therapist-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
    border: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
}

.therapist-card.is-hidden {
    display: none;
}

.therapist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.therapist-photo {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.therapist-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 3, 4, 0.6) 100%);
}

.therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow);
}

.therapist-card:hover .therapist-photo img {
    transform: scale(1.05);
}

.therapist-body {
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.therapist-role {
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--sp-2);
    font-weight: 500;
}

.therapist-name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    line-height: 1.2;
    margin-bottom: var(--sp-3);
    color: var(--color-text);
    font-weight: 500;
}

.therapist-specs {
    list-style: none;
    margin: var(--sp-3) 0;
    padding-top: var(--sp-3);
    border-top: 1px solid var(--color-line);
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-content: flex-start;
}

.therapist-specs li {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: var(--color-bg-elevated);
    color: var(--color-text-soft);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    border: 1px solid var(--color-line);
}

.therapist-cta {
    margin-top: var(--sp-3);
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--color-text-soft);
    color: var(--color-text);
    padding: var(--sp-3);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--tr-fast);
    display: inline-block;
}

.therapist-cta:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

@media (max-width: 1024px) {
    .therapists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* ── Empty state ──────────────────────────────────────────────── */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--sp-8) 0;
    color: var(--color-text-muted);
    display: none;
}

.therapists-grid.is-empty .no-results {
    display: block;
}

/* ── CTA reclutamiento ────────────────────────────────────────── */
.therapist-join {
    background: var(--color-bg-alt);
    padding-block: clamp(5rem, 10vw, 9rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.therapist-join::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-aura);
    opacity: 0.05;
    filter: blur(120px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.therapist-join > * {
    position: relative;
}

.therapist-join h2 {
    margin-bottom: var(--sp-4);
}

.therapist-join p {
    max-width: 600px;
    margin: 0 auto var(--sp-5);
}
