/* SECCIÓN TESTIMONIOS */

.testimonios {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonios::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 193, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonios::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 193, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonios h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 30px;
    letter-spacing: 1px;
    z-index: 1;
}

.testimonios h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 3px;
}

.testimonios-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonio-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(39, 193, 191, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.testimonio-card:nth-child(1) { animation-delay: 0.1s; }
.testimonio-card:nth-child(2) { animation-delay: 0.2s; }
.testimonio-card:nth-child(3) { animation-delay: 0.3s; }
.testimonio-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(39, 193, 191, 0.15);
    border-color: rgba(39, 193, 191, 0.3);
    background: rgba(255, 255, 255, 1);
}

.testimonio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonio-card:hover::before {
    transform: scaleX(1);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonio-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    transition: var(--transition-bounce);
}

.testimonio-card:hover .testimonio-foto {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(39, 193, 191, 0.3);
}

.testimonio-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.testimonio-info p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.testimonio-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.testimonio-stars i {
    color: #ffc107;
    font-size: 18px;
    transition: var(--transition-bounce);
}

.testimonio-card:hover .testimonio-stars i {
    transform: scale(1.2) rotate(360deg);
}

.testimonio-stars i:nth-child(1) { animation-delay: 0s; }
.testimonio-stars i:nth-child(2) { animation-delay: 0.1s; }
.testimonio-stars i:nth-child(3) { animation-delay: 0.2s; }
.testimonio-stars i:nth-child(4) { animation-delay: 0.3s; }
.testimonio-stars i:nth-child(5) { animation-delay: 0.4s; }

.testimonio-texto {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonio-texto::before {
    content: '"';
    position: absolute;
    left: 0;
    font-size: 40px;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonios {
        padding: 80px 20px;
    }

    .testimonios h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .testimonios-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonio-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .testimonios h2 {
        font-size: 28px;
    }

    .testimonio-card {
        padding: 20px;
    }

    .testimonio-foto {
        width: 50px;
        height: 50px;
    }

    .testimonio-info h4 {
        font-size: 14px;
    }

    .testimonio-info p {
        font-size: 12px;
    }

    .testimonio-texto {
        font-size: 14px;
    }
}

/* Efecto de Brillo */
.testimonio-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .testimonio-card,
    .testimonio-foto,
    .testimonio-stars i {
        animation: none !important;
        transition: none !important;
    }
}
