/*
 * --- Estilos de la Página "Quiénes Somos" (NUEVO) ---
 */

/* 1. Tarjeta de Testimonio */
.testimonial-card {
    background-color: #f8f9fa; /* bg-light de Bootstrap */
    border: none;
    border-radius: 0.5rem;
    padding: 2.5rem; /* Padding generoso */
    height: 100%;
    position: relative; /* Necesario para las comillas */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 2. Las Comillas Gigantes (como en tu maqueta) */
.testimonial-card::before {
    content: '“';
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,0,0,0.08);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
    z-index: 1;
}

/* 3. El texto de la cita */
.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    position: relative; /* Para que esté sobre las comillas */
    z-index: 2;
    margin-bottom: 1.5rem;
}

/* 4. El autor (imagen y texto) */
.testimonial-author {
    display: flex;
    align-items: center;
    position: relative; /* Para que esté sobre las comillas */
    z-index: 2;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Círculo perfecto */
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-name {
    display: block;
    font-weight: 700;
    font-style: normal;
    color: #212529;
}

.testimonial-title {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
}