.review-card{
    background-color: var(--background5);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.209);
    max-width: 400px;
    z-index: 10;
    width: 100%;
    height: 100%;
}
.star-icon-s {
    width: 20px;
    height: 20px;
    fill: var(--star);
    transition: transform 0.3s ease;
}

.star-icon-f {
    width: 20px;
    height: 20px;
    fill: var(--background4);
    filter: brightness(0.95);
    transition: transform 0.3s ease;
}

.stars {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.review-author{
    display: flex;
    flex-direction: column;
}

.review-text, .review-name, .review-role{
    font-size: var(--fs-title2);
    color: var(--bodyText);
    font-family: var(--font-main);
}

.review-text{
    margin-bottom: 1rem;
}

.review-name{
    font-weight: 500;
    color: var(--secondary);
}

.review-role{
    font-size: var(--fs-body);
    font-weight: 400;
    font-style: italic;
}

/* Ubicación de las flechas en la sección de reseñas */
#prevBtnReviews { left: -30px; }
#nextBtnReviews { right: -30px; }

@media (max-width: 1250px) {
    #prevBtnReviews { left: -30px; }
    #nextBtnReviews { right: -30px; }
}