.reseñas-wrapper {
    width: 100%;
    padding: 70px 20px;
    background: #f8f9fa;
}

.reseñas-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reseñas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.reseña-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.reseña-card:hover {
    transform: translateY(-5px);
}

.reseña-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #1e73be;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.estrellas {
    color: #f4b400;
    font-size: 14px;
}

.reseña-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}