<style>
/* Container Principal da Seção */
.velvo-reviews-section {
    padding: 80px 20px 20px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Estilo do Título Principal */
.slider-title {
    color: #075166 !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

/* Estilo do Subtítulo */
.velvo-section-subtitle {
    color: #66c8b8 !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

/* Grid de Depoimentos */
.velvo-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* Card Individual */
.review-card-grid {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(7, 81, 102, 0.06);
    border: 1px solid rgba(102, 200, 184, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card-grid:hover {
    transform: translateY(-8px);
    border-color: #66c8b8;
    box-shadow: 0 20px 50px rgba(7, 81, 102, 0.1);
}

/* Estrelas e Texto */
.stars-grid {
    color: #fbbc04;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.text-grid {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

/* Autor */
.author-grid {
    display: flex;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.author-grid img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info-grid {
    display: flex;
    flex-direction: column;
}

.author-name-grid {
    font-weight: 700;
    color: #075166;
    font-size: 1rem;
}

.author-location-grid {
    font-size: 0.75rem;
    color: #66c8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botão View More */
.velvo-view-more-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 80px;
}

.btn-google-view {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #075166;
    border: 2px solid #075166;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-google-view:hover {
    background-color: #075166;
    color: #ffffff;
}

.google-icon-btn {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}
</style>