/* ====== Páginas de Especialidades (común para todas) ====== */

.especialidad-info {
    padding: 3.5rem 0;
}

.especialidad-info h2 {
    margin-bottom: 1rem;
}

.especialidad-info h3 {
    margin-top: 1.8rem;
    margin-bottom: .8rem;
}

.especialidad-info p {
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 70ch;
}

/* ===== Galería con slider ===== */

.especialidad-galeria {
    padding: 1.5rem 0;
}

.galeria-slider {
    position: relative;
    max-width: 900px;
    margin: 1.8rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.galeria-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

.galeria-btn.prev {
    left: 14px;
}

.galeria-btn.next {
    right: 14px;
}

.galeria-btn:hover {
    background: rgba(255, 255, 255, .95);
}

.galeria-hint {
    text-align: center;
    margin-top: 1rem;
    opacity: .75;
}

/* ===== Volver ===== */

.volver-servicios {
    padding: 0.5rem 0 1rem;
    text-align: center;
}

.btn-volver {
    display: inline-block;
    padding: .5rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;

    background: #5e8f78;
    /* 👈 verde más suave */
    color: #fff;

    transition: background .25s ease, transform .2s ease;
    /* 👈 misma animación */
}

.btn-volver:hover {
    background: #4b7864;
    /* un poco más oscuro */
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
    .galeria-img {
        height: 320px;
    }
}

/* Animación al cambiar imagen */
.galeria-img {
    transition: opacity .5s ease;
    opacity: 1;
}

.galeria-img.is-fading {
    opacity: 0;
}

/* Ajuste de encuadre solo para Psicología */
.hero-psicologia .page-hero-bg {
    background-position: center 35%;
}

.especialidad-lista {
    margin: 1.2rem 0 1.8rem 1.2rem;
    max-width: 70ch;
}

.especialidad-lista li {
    margin-bottom: .6rem;
    line-height: 1.6;
}

/* Botón Agendar consulta */
.especialidad-cta {
    margin-top: 0.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    /* 👈 achica el espacio entre botones */
    /* 👈 ESTO lo centra */
}

.btn-agendar {
    display: inline-block;
    padding: .9rem 2.2rem;
    border-radius: 999px;
    background: #2f6b4f;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background .25s ease, transform .2s ease;
}

.btn-agendar:hover {
    background: #24563f;
    transform: translateY(-2px);
}