body {
    min-height: 100vh;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.02),
        transparent 40%
    ); */
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(58, 100, 251, 0.2), /* Cor verde clara */
        transparent 40%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.4),
        transparent 40%
    ); */
     background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(58, 100, 251, 0.2), /* Cor verde clara */
        transparent 40%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quote-mark {
    position: absolute;
    right: 15px;
    top: 0px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.company-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}
