.reviews-section {
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}


.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header h1 {
    font-size: 36px;
    color: #000;
    margin: 0 0 15px 0;
    font-family: Arial, sans-serif;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.reviews-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

.reviews-header p {
    font-size: 16px;
    color: #666;
    margin: 25px 0 0 0;
    font-family: Arial, sans-serif;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.review-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}


.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: #000;
    opacity: 0.05;
    font-family: Georgia, serif;
    line-height: 1;
}


.review-content {
    position: relative;
    z-index: 2;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 25px 0;
    font-family: Arial, sans-serif;
    font-style: italic;
}


.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000 0%, #444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin: 0 0 5px 0;
    font-family: Arial, sans-serif;
}

.author-title {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-family: Arial, sans-serif;
}


.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star {
    color: #000;
    font-size: 16px;
}


.review-card.featured {
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    color: white;
    grid-column: span 1;
}

.review-card.featured .review-text {
    color: #e0e0e0;
}

.review-card.featured .author-name {
    color: white;
}

.review-card.featured .author-title {
    color: #aaa;
}

.review-card.featured .author-avatar {
    background: white;
    color: #000;
}

.review-card.featured::before {
    color: white;
    opacity: 0.1;
}

.review-card.featured .review-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.review-card.featured .star {
    color: white;
}

.rewiew-btn {
    text-align: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.rewiew-btn a {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    /* Añadido */
}

.rewiew-btn a:hover {
    background-color: #474747;
}


@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 25px;
    }

    .reviews-header h1 {
        font-size: 36px;
    }

    .reviews-header p {
        font-size: 14px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-card {
        padding: 30px 25px;
    }

    .review-card.featured {
        grid-column: span 1;
    }

    .rewiew-btn {
        margin-top: 30px;
        /* Añadido */
    }

    .rewiew-btn a {
        width: 50%;
        max-width: 300px;
    }
}