/* ============================================
   TERAPISTAS PAGE - Estilos específicos
   ============================================ */

@import url('variables.css');

.terapistas-page {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.terapistas-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

.terapistas-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
/*  background: url('../assets/terapistas.jpg') top/cover no-repeat;*/
    opacity: 0.2;
}

.terapistas-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 900px;
}

.terapistas-hero__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.terapistas-hero__title {
    font-size: clamp(36px, 6vw, 56px);
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.terapistas-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================
   FOTO GRUPAL
   ============================================ */

.terapistas-photo {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.terapistas-photo__container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.terapistas-photo__image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* ============================================
   CONTENIDO
   ============================================ */

.terapistas-content {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.terapistas-content__container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.terapistas-content__text {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--color-primary);
}

.terapistas-content__paragraph {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

.terapistas-content__list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.terapistas-content__item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.terapistas-content__item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.terapistas-content__item-icon {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.terapistas-content__item span:last-child {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 968px) {
    .terapistas-hero {
        height: 45vh;
        min-height: 300px;
    }

    .terapistas-hero__content {
        padding: var(--spacing-lg);
    }

    .terapistas-photo__container,
    .terapistas-content__container {
        width: 90%;
    }

    .terapistas-content__list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .terapistas-hero {
        height: 40vh;
        min-height: 250px;
    }

    .terapistas-hero__title {
        font-size: 32px;
    }

    .terapistas-hero__subtitle {
        font-size: 15px;
    }

    .terapistas-content__text {
        padding: var(--spacing-lg);
    }

    .terapistas-content__paragraph {
        text-align: left;
    }
}

