/* ===================================
   Sección de Testimonios
   =================================== */

/* Estilos para la sección completa */
.review_list_section {
    padding: 40px 0;
    /*background: #f9fafb;*/
}

.review_list_section .section_title h2 {
    color: var(--dark-purple);
    font-size: 2.5rem;
    font-weight: bold;
}

/* Grid de testimonios - forzar 2 por fila */
.testimonios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonios-grid .col-lg-6 {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
}

/* Tarjeta de testimonio */
.testimonio-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonio-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Header del testimonio - imagen y info */
.testimonio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.testimonio-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dark-purple);
    flex-shrink: 0;
}

.testimonio-info {
    flex: 1;
}

.testimonio-info h4 {
    color: var(--dark-purple);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.testimonio-info p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Cuerpo del testimonio */
.testimonio-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonio-texto {
    color: var(--body-text-purple);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
    flex: 1;
}

/* Textos corto y completo */
.texto-corto {
    display: inline !important;
}

.texto-completo {
    display: none !important;
}

.testimonio-card.expanded .texto-corto {
    display: none !important;
}

.testimonio-card.expanded .texto-completo {
    display: inline !important;
}

/* Botón de expandir */
.btn-expandir {
    align-self: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--dark-purple);
    background: #fff;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-expandir:hover {
    background: var(--dark-purple);
    color: #fff;
    transform: scale(1.1);
}

.btn-expandir i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.testimonio-card.expanded .btn-expandir i {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 991px) {
    .review_list_section .section_title h2 {
        font-size: 1.8rem;
    }

    .testimonios-grid {
        gap: 1.5rem;
    }

    .testimonios-grid .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonio-img {
        width: 70px;
        height: 70px;
    }

    .testimonio-info h4 {
        font-size: 1rem;
    }

    .testimonio-info p {
        font-size: 0.8rem;
    }

    .testimonio-texto {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .review_list_section .section_title h2 {
        font-size: 1.5rem;
    }

    .testimonio-card {
        padding: 1.2rem;
    }

    .testimonio-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonio-img {
        width: 90px;
        height: 90px;
    }

    .testimonio-info {
        text-align: center;
    }

    .testimonio-texto {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .review_list_section .section_title h2 {
        font-size: 1.3rem;
    }

    .testimonios-grid {
        gap: 1rem;
    }

    .testimonio-card {
        padding: 1rem;
    }

    .testimonio-img {
        width: 80px;
        height: 80px;
    }

    .testimonio-info h4 {
        font-size: 0.95rem;
    }

    .testimonio-info p {
        font-size: 0.75rem;
    }

    .testimonio-texto {
        font-size: 0.85rem;
    }

    .btn-expandir {
        width: 35px;
        height: 35px;
    }

    .btn-expandir i {
        font-size: 1.1rem;
    }
}
