
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400&display=swap');
 
/* ── Tipografía global de la sección ── */
.testimonios,
.testimonios * {
    font-family: 'IBM Plex Sans', sans-serif;
}
 
/* ── Sección ── */
.testimonios {
    padding-block: 5rem;
    background: #FFFFFF;
}
.testimonios .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.testimonios .section-header__tag {
    display: inline-block;
    background: rgba(102,187,106,0.15);
    color: #2E7D32;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35em 1em;
    border-radius: 999px;
    margin-bottom: .8rem;
}
.testimonios .section-header__title {
    font-size: clamp(1.6rem,3.5vw,2.2rem);
    font-weight: 800;
    color: #1F2933;
    letter-spacing: -.02em;
    margin-bottom: .4rem;
}
.testimonios .section-header__desc {
    font-size: .9rem;
    color: #6B7280;
}
 
/* ── Layout wrapper: nav + card ── */
.tc-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
}
 
/* ── Botones prev/next ── */
.tc-nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #E5E7EB;
    background: #FFFFFF;
    color: #1F2933;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.tc-nav:hover {
    background: #2E7D32;
    color: #FFFFFF;
    border-color: #2E7D32;
    box-shadow: 0 4px 14px rgba(46,125,50,.25);
}
.tc-nav:active { transform: scale(.96); }
 
/* ── Viewport y track ── */
.tc-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}
.tc-track {
    display: flex;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.tc-slide {
    flex: 0 0 100%;
}
 
/* ── Tarjeta ── */
.tc-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tc-card__quote {
    line-height: 0;
}
.tc-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #1F2933;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.tc-card__author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
}
.tc-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: .5px;
}
.tc-card__name {
    font-weight: 600;
    font-size: .95rem;
    color: #1F2933;
    margin: 0 0 3px;
}
.tc-card__stars {
    color: #F59E0B;
    font-size: .9rem;
    letter-spacing: 1px;
}
 
/* ── Dots ── */
.tc-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 1.25rem;
}
.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
}
.tc-dot.active {
    background: #2E7D32;
    width: 24px;
}
 
/* ── Responsive ── */
@media (max-width: 600px) {
    .tc-wrapper { gap: .5rem; }
    .tc-nav { width: 34px; height: 34px; }
    .tc-card { padding: 1.5rem; }
}
