.tzgr-front{
    --tzgr-gold:#c99835;
    --tzgr-dark:#11151c;
    --tzgr-text:#707887;
    --tzgr-border:#e6e9ee;
    font-family:inherit;
    width:100%;
}
.tzgr-front-head{
    text-align:center;
    max-width:900px;
    margin:0 auto 24px;
}
.tzgr-eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:110px;
    height:34px;
    padding:0 18px;
    border:1px solid rgba(201,152,53,.36);
    border-radius:999px;
    color:#b68738;
    font-size:12px;
    font-weight:700;
    letter-spacing:.04em;
}
.tzgr-front-head h2{
    margin:14px 0 9px;
    color:var(--tzgr-dark);
    font-size:clamp(28px,2.5vw,34px);
    line-height:1.15;
    font-weight:700;
    letter-spacing:-.02em;
}
.tzgr-front-head>p{
    margin:0 auto;
    max-width:650px;
    color:var(--tzgr-text);
    font-size:14px;
    line-height:1.55;
}
.tzgr-google-link{
    display:inline-block;
    margin-top:16px;
    color:#b68738;
    font-size:13px;
    font-weight:700;
    text-decoration:underline;
    text-underline-offset:3px;
}

/* Carrusel */
.tzgr-carousel{
    position:relative;
    width:100%;
}
.tzgr-carousel-viewport{
    overflow:hidden;
    width:100%;
}
.tzgr-carousel-track{
    display:flex;
    gap:18px;
    transition:transform .48s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}
.tzgr-carousel-slide{
    flex:0 0 calc((100% - 36px) / 3);
    min-width:0;
}

/* Tarjeta más compacta */
.tzgr-front-card{
    display:flex;
    flex-direction:column;
    min-height:205px;
    padding:20px 21px 18px;
    border:1px solid var(--tzgr-border);
    border-radius:15px;
    background:#fff;
    box-shadow:0 7px 22px rgba(17,21,28,.025);
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    box-sizing:border-box;
}
.tzgr-front-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(17,21,28,.065);
    border-color:#ddd5c3;
}
.tzgr-front-stars{
    color:#d3a04a;
    letter-spacing:1.4px;
    font-size:15px;
    line-height:1;
    margin-bottom:14px;
}
.tzgr-front-card blockquote{
    margin:0;
    padding:0;
    border:0;
    color:#6e7684;
    font-size:14px;
    line-height:1.52;
    font-style:italic;
}
.tzgr-review-text{
    margin-bottom:15px;
}
.tzgr-review-text.is-collapsible blockquote{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    overflow:hidden;
}
.tzgr-review-text.is-collapsible.is-expanded blockquote{
    display:block;
    overflow:visible;
}
.tzgr-read-more{
    appearance:none;
    -webkit-appearance:none;
    border:0;
    background:none;
    padding:5px 0 0;
    margin:0;
    color:#b68738;
    font:inherit;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    text-decoration:underline;
    text-underline-offset:3px;
}
.tzgr-read-more:hover{color:#8f6729}
.tzgr-read-more .tzgr-less-label{display:none}
.tzgr-review-text.is-expanded .tzgr-read-more .tzgr-more-label{display:none}
.tzgr-review-text.is-expanded .tzgr-read-more .tzgr-less-label{display:inline}

.tzgr-reviewer{
    display:flex;
    align-items:center;
    gap:9px;
    margin-top:auto;
}
.tzgr-reviewer img,
.tzgr-avatar-fallback{
    width:34px;
    height:34px;
    border-radius:50%;
    object-fit:cover;
    flex:0 0 34px;
}
.tzgr-avatar-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4efe4;
    color:#aa7d2b;
    font-size:13px;
    font-weight:800;
}
.tzgr-reviewer strong{
    display:block;
    color:#273142;
    font-size:13px;
    line-height:1.2;
}
.tzgr-reviewer small{
    display:block;
    color:#9aa1ad;
    margin-top:2px;
    font-size:11px;
    line-height:1.25;
}

/* Controles discretos */
.tzgr-carousel-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-top:17px;
    min-height:30px;
}
.tzgr-carousel-arrow{
    width:30px;
    height:30px;
    padding:0;
    border:1px solid #e3e5e9;
    border-radius:50%;
    background:#fff;
    color:#6f7784;
    font-size:22px;
    line-height:26px;
    cursor:pointer;
    transition:border-color .2s ease,color .2s ease,background .2s ease;
}
.tzgr-carousel-arrow:hover{
    border-color:#d5bd8d;
    color:#a97927;
    background:#fffdfa;
}
.tzgr-carousel-arrow:disabled{
    opacity:.3;
    cursor:default;
}
.tzgr-carousel-dots{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:12px;
}
.tzgr-carousel-dot{
    width:6px;
    height:6px;
    padding:0;
    border:0;
    border-radius:999px;
    background:#d9dce1;
    cursor:pointer;
    transition:width .2s ease,background .2s ease;
}
.tzgr-carousel-dot.is-active{
    width:18px;
    background:#c99835;
}
.tzgr-empty{
    text-align:center;
    padding:28px;
    border:1px dashed var(--tzgr-border);
    border-radius:16px;
    color:var(--tzgr-text);
}

/* Tablet: 2 tarjetas */
@media(max-width:900px){
    .tzgr-carousel-slide{
        flex-basis:calc((100% - 16px) / 2);
    }
    .tzgr-carousel-track{gap:16px}
}

/* Móvil: 1 tarjeta */
@media(max-width:620px){
    .tzgr-front-head{margin-bottom:22px}
    .tzgr-front-head h2{font-size:27px}
    .tzgr-front-head>p{font-size:14px}
    .tzgr-google-link{margin-top:13px}
    .tzgr-carousel-track{gap:12px}
    .tzgr-carousel-slide{flex-basis:100%}
    .tzgr-front-card{
        min-height:190px;
        padding:18px;
    }
    .tzgr-front-card blockquote{font-size:13.5px}
    .tzgr-carousel-controls{margin-top:13px}
}

@media(prefers-reduced-motion:reduce){
    .tzgr-carousel-track{transition:none}
    .tzgr-front-card{transition:none}
    .tzgr-front-card:hover{transform:none}
}
