.review-slider {
    width: 90%;
    max-width: 850px;
    margin: auto;
}

.review-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2vw;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1vw;
    margin-bottom: 1vw;
}

/* Avatar circular con imagen */
.review-avatar {
    width: 3.5vw;
    height: 3.5vw;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    color: var(--red);
    margin: 0;
}

.review-stars i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 1rem;
}

.review-time {
    color: #7b7b7b;
    font-size: 0.9rem;
    margin: 0.3rem 0 0;
}

.review-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1vw;
}

.review-link {
    background: white;
    width: fit-content;
    padding: 1% 1% 0 1%;
    border: 2px solid transparent;
    font-weight: 700;
    background-size: 200%;
    background-position: 100%;
    transform: skewX(-15deg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red);
}

.review-link:hover {
    border-bottom: 2px solid var(--red);
}

.swiper-pagination-bullet-active {
    background: var(--red) !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0 !important;
}