/* Testimonial Cards (Text Only Redesign) */
.testimonial-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primario);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-icon {
    margin-bottom: 1.5rem;
    color: var(--cuarto);
    font-size: 2.5rem;
    opacity: 0.8;
}

.testimonial-text {
    position: relative;
    margin-bottom: 2rem;
    color: var(--dark);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    z-index: 2;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--primario);
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card::after {
    position: absolute;
    content: "\F28D";
    top: 10px;
    right: 20px;
    color: rgba(0, 0, 0, 0.03);
    font-family: "bootstrap-icons";
    font-size: 8rem;
    pointer-events: none;
    z-index: 1;
}