/* Estilos para la sección de Testimonios */
:root {
    --color-primario: #333333;
    --color-secundario: #555555;
    --color-acento: #F20784;
    --color-fondo: #f8f9fa;
    --color-texto: #333333;
    --color-texto-claro: #777777;
    --blanco: #ffffff;
    --gris-claro: #f5f5f5;
    --sombra: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonios-section {
    padding: 120px 20px 80px;
    background-color: var(--color-fondo);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primario);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-acento);
    border-radius: 2px;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.testimonio-card {
    background: var(--blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    border: 1px solid #e1e8ed;
    max-width: 280px;
    margin: 0 auto;
}

.testimonio-card:nth-child(1) { animation-delay: 0.4s; }
.testimonio-card:nth-child(2) { animation-delay: 0.5s; }
.testimonio-card:nth-child(3) { animation-delay: 0.6s; }
.testimonio-card:nth-child(4) { animation-delay: 0.7s; }
.testimonio-card:nth-child(5) { animation-delay: 0.8s; }
.testimonio-card:nth-child(6) { animation-delay: 0.9s; }

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.testimonio-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.testimonio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-acento);
    transition: transform 0.3s ease;
}

.testimonio-card:hover .testimonio-avatar {
    transform: scale(1.05);
}

.testimonio-info {
    flex: 1;
}

.testimonio-nombre {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primario);
    margin: 0 0 3px 0;
}

.testimonio-empresa {
    font-size: 0.85rem;
    color: var(--color-acento);
    font-weight: 600;
    margin: 0;
}

.testimonio-contenido {
    position: relative;
    padding-left: 20px;
    margin-top: 12px;
}

.testimonio-contenido::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 0;
    font-size: 2.5rem;
    color: var(--color-acento);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonio-texto {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-texto);
    margin: 0;
    font-style: italic;
}

.testimonio-rating {
    margin-top: 12px;
    display: flex;
    gap: 3px;
}

.estrella {
    color: #ffc107;
    font-size: 1rem;
}

.estrella.vacia {
    color: #ddd;
}

.testimonio-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonio-fecha {
    font-size: 0.8rem;
    color: var(--color-texto-claro);
}

.testimonio-verificado {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #1da1f2;
    font-weight: 600;
}

.testimonio-verificado i {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonios-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 100px 15px 60px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
    }
    
    .testimonio-card {
        padding: 20px;
        max-width: 100%;
    }
    
    .testimonio-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonio-nombre {
        font-size: 1.1rem;
    }
    
    .testimonio-texto {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .testimonio-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .testimonios-section {
        padding: 80px 10px 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .testimonio-card {
        padding: 15px;
        margin: 0 auto;
        max-width: 95%;
    }
    
    .testimonio-header {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .testimonio-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonio-info {
        text-align: center;
    }
    
    .testimonio-nombre {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .testimonio-empresa {
        font-size: 0.85rem;
    }
    
    .testimonio-contenido {
        padding-left: 20px;
        margin-top: 12px;
    }
    
    .testimonio-contenido::before {
        font-size: 2.5rem;
        top: -8px;
    }
    
    .testimonio-texto {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .testimonio-rating {
        justify-content: center;
        margin-top: 12px;
    }
    
    .estrella {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .testimonios-section {
        padding: 70px 8px 40px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .testimonio-card {
        padding: 12px;
        max-width: 98%;
    }
    
    .testimonio-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonio-texto {
        font-size: 0.85rem;
    }
    
    .testimonio-verificado {
        font-size: 0.8rem;
    }
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}