.hero-quienes-somos {
    background: linear-gradient(90deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.72) 55%, rgba(15,15,15,0.40) 100%),
                url('../img/hero-quienes-somos.jpg?v=1777040521') center center / cover no-repeat;
}

.about-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    overflow: hidden;
    padding: 0;
}

.about-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card__body {
    padding: 24px;
}

.about-card__body h3 {
    margin-bottom: 12px;
}

.about-card__body p {
    color: rgba(255,255,255,0.74);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    align-items: stretch;
}

.about-values__grid > .value-block {
    width: 100%;
    min-width: 0;
}

.value-block {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 22px;
    width: 100%;
    height: 100%;
    padding: 34px 32px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-sizing: border-box;
}

.value-block__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-block__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.value-block__content {
    min-width: 0;
}

.value-block__content h2 {
    margin: 0 0 12px;
}

.value-block__content h3 {
    margin-bottom: 10px;
}

.value-block__content p {
    margin: 0;
    color: rgba(255,255,255,0.76);
}

@media (max-width: 900px) {
    .about-values__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .value-block {
        grid-template-columns: 82px 1fr;
        gap: 18px;
        padding: 28px 24px;
    }

    .value-block__icon {
        width: 82px;
        height: 82px;
    }

    .value-block__icon img {
        width: 38px;
        height: 38px;
    }
}