/* ═══════════════════════════════════════════════════════════════
   AC Quiénes Somos — Landing minimalista
   Paleta y estructura alineadas con /distribuye/.
═══════════════════════════════════════════════════════════════ */

.ac-quienes-page *,
.ac-quienes-page *::before,
.ac-quienes-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.ac-quienes-page {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.ac-quienes-page img { max-width: 100%; height: auto; display: block; }
.ac-quienes-page a { text-decoration: none; }

/* ── Tokens locales ─────────────────────────────────────────── */
.ac-quienes-page {
    --acq-navy:     #0d1b2a;
    --acq-blue:     #1a3c6e;
    --acq-action:   #3b7abf;
    --acq-action-dk:#2d6aad;
    --acq-light:    #f4f6f9;
    --acq-border:   #dde3ed;
    --acq-text:     #1a1a2e;
    --acq-muted:    #5a6a7e;
    --acq-radius:   12px;
    --acq-shadow:   0 4px 24px rgba(13,27,42,.08);
    --acq-shadow-lg:0 12px 48px rgba(13,27,42,.14);
    --acq-t:        .25s ease;
}

/* ── Container ──────────────────────────────────────────────── */
.acq-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Tag pill ───────────────────────────────────────────────── */
.acq-tag {
    display: inline-block;
    background: rgba(59, 122, 191, .10);
    color: var(--acq-action);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.acq-tag--light {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

/* ── Buttons ────────────────────────────────────────────────── */
.acq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--acq-t);
    white-space: nowrap;
    line-height: 1;
}
.acq-btn--primary {
    background: var(--acq-action);
    color: #fff !important;
    border-color: var(--acq-action);
}
.acq-btn--primary:hover {
    background: var(--acq-action-dk);
    border-color: var(--acq-action-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 122, 191, .28);
}
.acq-btn--ghost {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .35);
}
.acq-btn--ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .6);
}
.acq-cta .acq-btn--ghost {
    color: var(--acq-navy) !important;
    border-color: rgba(13, 27, 42, .25);
}
.acq-cta .acq-btn--ghost:hover {
    background: rgba(13, 27, 42, .04);
    border-color: var(--acq-navy);
}

/* ── Hero ───────────────────────────────────────────────────── */
.acq-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(13, 27, 42, .85) 0%, rgba(26, 60, 110, .78) 100%),
        url('/wp-content/uploads/2026/04/Header.jpg') center 40% / cover no-repeat;
    color: #fff;
    padding: 100px 0;
}
.acq-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 27, 42, .4) 100%);
    pointer-events: none;
}
.acq-hero__content {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.acq-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 8px 0 18px;
    color: #fff;
}
.acq-hero__title em {
    font-style: normal;
    color: var(--acq-action);
}
.acq-hero__sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 0 auto 32px;
    max-width: 640px;
}
.acq-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Stats ──────────────────────────────────────────────────── */
.acq-stats {
    background: var(--acq-light);
    padding: 48px 0;
    border-bottom: 1px solid var(--acq-border);
}
.acq-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.acq-stat__num {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--acq-navy);
    letter-spacing: -.02em;
    line-height: 1;
}
.acq-stat__lbl {
    display: block;
    margin-top: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--acq-muted);
    letter-spacing: .02em;
}
.acq-stat__stars {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.acq-stat__stars svg {
    width: 22px;
    height: 22px;
    fill: #f0b500;
}

/* ── Section base ───────────────────────────────────────────── */
.acq-section {
    padding: 80px 0;
}
.acq-section--alt {
    background: var(--acq-light);
}
.acq-section--dark {
    background: var(--acq-navy);
    color: #fff;
}
.acq-section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.acq-section__header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--acq-navy);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 14px;
}
.acq-section--dark .acq-section__header h2 { color: #fff; }
.acq-section__header p {
    font-size: 1rem;
    color: var(--acq-muted);
    line-height: 1.7;
    margin: 0;
}
.acq-section--dark .acq-section__header p { color: rgba(255, 255, 255, .75); }

/* ── Grid utility ───────────────────────────────────────────── */
.acq-grid {
    display: grid;
    gap: 24px;
}
.acq-grid--2 { grid-template-columns: repeat(2, 1fr); align-items: start; }
.acq-grid--3 { grid-template-columns: repeat(3, 1fr); }
.acq-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Historia ───────────────────────────────────────────────── */
.acq-historia p {
    color: var(--acq-text);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.acq-historia p:last-child { margin-bottom: 0; }
.acq-historia strong { color: var(--acq-navy); font-weight: 700; }

.acq-historia__pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.acq-pillar {
    background: #fff;
    border: 1px solid var(--acq-border);
    border-radius: var(--acq-radius);
    padding: 24px 26px;
    transition: border-color var(--acq-t), box-shadow var(--acq-t);
}
.acq-pillar:hover {
    border-color: var(--acq-action);
    box-shadow: var(--acq-shadow);
}
.acq-pillar__lbl {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--acq-action);
    margin-bottom: 8px;
}
.acq-pillar h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--acq-navy);
    margin: 0 0 8px;
    line-height: 1.3;
}
.acq-pillar p {
    color: var(--acq-muted);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Card (valores) ─────────────────────────────────────────── */
.acq-card {
    background: #fff;
    border: 1px solid var(--acq-border);
    border-radius: var(--acq-radius);
    padding: 28px 24px;
    transition: border-color var(--acq-t), box-shadow var(--acq-t), transform var(--acq-t);
}
.acq-card:hover {
    border-color: var(--acq-action);
    box-shadow: var(--acq-shadow);
    transform: translateY(-2px);
}
.acq-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 122, 191, .10);
    color: var(--acq-action);
    margin-bottom: 16px;
}
.acq-card__icon svg { width: 22px; height: 22px; }
.acq-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--acq-navy);
    margin: 0 0 8px;
    line-height: 1.3;
}
.acq-card p {
    color: var(--acq-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Mini cards (categorías) ────────────────────────────────── */
.acq-mini {
    background: #fff;
    border: 1px solid var(--acq-border);
    border-radius: 10px;
    padding: 22px;
    text-align: left;
    transition: border-color var(--acq-t);
}
.acq-mini:hover { border-color: var(--acq-action); }
.acq-mini h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--acq-navy);
    margin: 0 0 6px;
}
.acq-mini p {
    color: var(--acq-muted);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA final ──────────────────────────────────────────────── */
.acq-cta {
    padding: 72px 0;
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--acq-border);
}
.acq-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--acq-navy);
    margin: 0 0 12px;
    letter-spacing: -.01em;
}
.acq-cta p {
    color: var(--acq-muted);
    margin: 0 auto 28px;
    max-width: 600px;
    font-size: 1rem;
}
.acq-cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .acq-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .acq-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .acq-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
    .acq-hero { min-height: 380px; padding: 60px 0; }
    .acq-hero__sub { font-size: .98rem; }
    .acq-section { padding: 56px 0; }
    .acq-grid--2 { grid-template-columns: 1fr; gap: 18px; }
    .acq-grid--3 { grid-template-columns: 1fr; gap: 18px; }
    .acq-grid--4 { grid-template-columns: 1fr; gap: 18px; }
    .acq-section__header { margin-bottom: 32px; }
    .acq-stats { padding: 36px 0; }
    .acq-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .acq-historia__pillars { gap: 12px; }
    .acq-pillar { padding: 20px 22px; }
    .acq-card { padding: 24px 22px; }
    .acq-cta { padding: 56px 0; }
    .acq-hero__actions { flex-direction: column; gap: 10px; align-items: stretch; }
    .acq-hero__actions .acq-btn { width: 100%; }
}

@media (max-width: 480px) {
    .acq-container { padding: 0 18px; }
    .acq-hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
    .acq-stats__grid { gap: 18px 14px; }
    .acq-stat__num { font-size: 1.7rem; }
    .acq-stat__lbl { font-size: .76rem; }
}
