/* quienes_somos_style.css - Refactorizado con Variables */

.quienes-somos-page {
    padding: 20px 0;
    width: 100%;
    overflow-x: hidden;
}

.qs-section {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    display: block;
}

.section-title {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.fed-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: none;
    transition: transform 0.3s ease;
    height: 100%;
}

.fed-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-body { padding: 1.5rem !important; }
@media (min-width: 992px) { .card-body { padding: 3rem !important; } }

.fed-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

.card-title-fed {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Valores */
.values-section .container {
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 40px 20px;
    border: 1px solid var(--border-light);
}

.value-item {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-primary);
}

.value-item:hover {
    background-color: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover .icon-box {
    background-color: var(--color-primary);
    color: var(--bg-white);
    transform: scale(1.1);
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 576px) {
    .section-title { font-size: 1.5rem; }
    .fed-card { width: 100%; }
}