/* Estilos mejorados para los testimonios de marcas */
.testimonial-author .author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.testimonial-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .author-avatar {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

/* Ajustes para el texto de la marca */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author .author-info h4 {
    font-weight: 700;
    background: linear-gradient(135deg, #8A2BE2, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
    font-size: 1.1em;
}

.testimonial-author .author-info p {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Animación para el contenido del testimonio */
.testimonial-content {
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(138, 43, 226, 0.2);
    line-height: 1;
}

.testimonial-card:hover .testimonial-content {
    transform: translateY(-3px);
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .testimonial-author .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author .author-info h4 {
        font-size: 0.95em;
    }
    
    .testimonial-author .author-info p {
        font-size: 0.8em;
    }
}
