/* ══════════════════════════════════════════════════════════
    BANDA DE VALORES
══════════════════════════════════════════════════════════ */
.valores {
    background: linear-gradient(135deg, #1a3a5c 0%, #1B2C4E 50%, #0f2a42 100%);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.valores::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,169,64,.06) 0%, transparent 70%);
    pointer-events: none;
}

.valores__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.valor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 24px;
    position: relative;
}

/* Separador vertical entre items */
.valor-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(212,169,64,.25);
}

.valor-item__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.valor-item__icon svg {
    width: 26px;
    height: 26px;
}

.valor-item__icon--rose   { background: rgba(200,56,90,.20);  color: #e8708a; }
.valor-item__icon--gold   { background: rgba(212,169,64,.20); color: #e8c45a; }
.valor-item__icon--teal   { background: rgba(42,157,143,.20); color: #4ec9bc; }
.valor-item__icon--green  { background: rgba(76,175,80,.20);  color: #81c784; }

.valor-item__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.valor-item__desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    max-width: 160px;
}

/* Responsive valores */
@media (max-width: 768px) {
    .valores__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    }
    .valor-item:nth-child(2)::after { display: none; }
    .valor-item:nth-child(4)::after { display: none; }
}

@media (max-width: 420px) {
    .valores__inner { grid-template-columns: 1fr; gap: 28px; }
    .valor-item::after { display: none !important; }
}