.tr-testimonios {
    --tr-test-black:  #262522;
    --tr-test-gray:   #655F5D;
    --tr-test-gold:   #c8a280;
    --tr-test-bg:     #f9f5f1;
    --tr-test-border: #e8e0d8;
    --tr-test-radius: 12px;

    font-family: inherit;
    color: var(--tr-test-black);
}

/* ── Título ───────────────────────────────────────────────── */

.tr-testimonios__titulo {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--tr-test-black);
    margin: 0 0 2rem;
    text-align: center;
}

/* ── Grid (≤ 3 tarjetas) ──────────────────────────────────── */

.tr-testimonios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Tarjeta ──────────────────────────────────────────────── */

.tr-testimonio-tarjeta {
    background: var(--tr-test-bg);
    border: 1px solid var(--tr-test-border);
    border-radius: var(--tr-test-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Estrellas ────────────────────────────────────────────── */

.tr-testimonio-stars {
    display: block;
    width: 120px;
    height: 24px;
}

/* ── Texto ────────────────────────────────────────────────── */

.tr-testimonio-texto {
    font-size: 15px;
    line-height: 1.65;
    color: var(--tr-test-gray);
    margin: 0;
    flex-grow: 1;
}

/* ── Autor ────────────────────────────────────────────────── */

.tr-testimonio-autor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.tr-testimonio-google-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.tr-testimonio-autor-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tr-testimonio-nombre {
    font-size: 14px;
    font-weight: 600;
    color: var(--tr-test-black);
    margin: 0;
}

.tr-testimonio-edad {
    font-size: 12px;
    color: var(--tr-test-gray);
}

/* ── Swiper (> 3 tarjetas) ────────────────────────────────── */

.tr-testimonios-swiper {
    padding-bottom: 2.5rem !important;
}

.tr-testimonios-swiper .swiper-slide {
    height: auto;
}

.tr-testimonio-pagination .swiper-pagination-bullet {
    background: var(--tr-test-gold);
    opacity: 0.4;
}

.tr-testimonio-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ── Responsive ───────────────────────────────────────────── */

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

@media (max-width: 640px) {
    .tr-testimonios__grid {
        grid-template-columns: 1fr;
    }

    .tr-testimonio-tarjeta {
        padding: 1.5rem;
    }
}
