.lmw-ts-slider {
    width: 100%;
    position: relative;
}

.lmw-ts-slider--entry {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lmw-ts-slider--entry.lmw-ts-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lmw-ts-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.lmw-ts-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 4px 60px;
    margin: -40px -4px -60px;
}

.lmw-ts-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lmw-ts-card {
    flex: 0 0 var(--lmw-ts-card-width, calc((100% - 60px) / 2.6));
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.lmw-ts-card:hover {
    transform: translateY(-8px);
}

.lmw-ts-quote {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.lmw-ts-text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    color: #333333;
    margin: 0 0 20px;
    position: relative;
    z-index: 2;
}

.lmw-ts-rating {
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.lmw-ts-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.lmw-ts-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.lmw-ts-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lmw-ts-author-details {
    display: flex;
    flex-direction: column;
}

.lmw-ts-author-name {
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
}

.lmw-ts-author-role {
    font-size: 0.85rem;
    color: #86868b;
    margin-top: 2px;
}

/* Layouts alternativos de autor */
.lmw-ts-card--author-top .lmw-ts-footer,
.lmw-ts-card--author-bottom .lmw-ts-footer {
    flex-direction: column;
    text-align: center;
}
.lmw-ts-card--author-top { flex-direction: column-reverse; }

/* Navegação */
.lmw-ts-nav-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.lmw-ts-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lmw-ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lmw-ts-dot.is-active {
    background: #1d1d1f;
    width: 24px;
    border-radius: 4px;
}

/* Mobile: scroll com snap, sem setas */
@media (max-width: 768px) {
    .lmw-ts-nav-btn { display: none; }

    .lmw-ts-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .lmw-ts-container::-webkit-scrollbar { display: none; }

    .lmw-ts-track { gap: 20px; }
    .lmw-ts-card { scroll-snap-align: center; }
}
