/* ============================================
   SECTION: VALUES
   ============================================ */

#valores.section--values {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(20, 20, 20, 0.95) 50%,
            rgba(0, 0, 0, 0.85) 100%),
        url('../../assets/concrete-wall-texture.jpg');
    background-attachment: fixed;
    background-size: cover;
}

#valores .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns as per design */
    gap: 4rem 3rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

#valores .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Container for the text block */
#valores .value-text {
    font-family: var(--font-body);
    /* Museum */
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
    /* Centered as per request/image */
}

/* Number: 1. */
#valores .value-number {
    font-family: 'Excellent Display', sans-serif !important;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent-tertiary-sat);
    /* Accent color as requested */
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Drop Cap: First letter of title */
#valores .drop-cap {
    font-family: 'Excellent Display', sans-serif !important;
    font-size: 4rem;
    /* Bigger */
    line-height: 0.8;
    color: var(--accent-tertiary-sat);
    /* Different color (Red/Burgundy) */
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}

/* Rest of the title */
#valores .brand-font {
    font-family: var(--font-body);
    /* Museum as requested */
    font-weight: bold;
    font-size: 1.1rem;
    /* Slightly adjusted to match body font scaling */
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    vertical-align: middle;
}

/* Bold text inside the paragraph */
#valores .value-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Brand name specific styling if needed */
#valores .brand-name {
    font-weight: bold;
    color: var(--text-primary);
}


/* Responsive */
@media screen and (max-width: 768px) {
    #valores .values-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 3rem;
    }

    #valores .value-text {
        padding: 0 1rem;
    }
}