/**
 * ARANOX Home — Indicadores Corporativos
 * Release: AW3_011 REV02
 */

.arx11-indicators {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(100px, 11vw, 168px) 0;
    color: #eef7f8;
    background:
        radial-gradient(circle at 12% 15%, rgba(43, 160, 172, .19), transparent 31%),
        radial-gradient(circle at 88% 82%, rgba(94, 88, 190, .17), transparent 32%),
        linear-gradient(135deg, #071820 0%, #0b242d 48%, #091b24 100%);
}

.arx11-indicators__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
    background-size: 52px 52px;
}

.arx11-indicators__shell {
    position: relative;
    z-index: 2;
}

.arx11-indicators__header {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: clamp(36px, 7vw, 104px);
    align-items: end;
}

.arx11-indicators__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #6ed1d5;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.arx11-indicators__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.arx11-indicators__title {
    max-width: 900px;
    margin: 0;
    color: #f5fbfc;
    font-size: clamp(2.65rem, 5vw, 5.35rem);
    font-weight: 880;
    line-height: .98;
    letter-spacing: -.057em;
}

.arx11-indicators__intro {
    margin: 0 0 8px;
    color: #a9bcc3;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
}

.arx11-indicators__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    margin-top: clamp(72px, 9vw, 118px);
}

.arx11-metric {
    --arx11-accent: #6ed1d5;
    position: relative;
    grid-column: span 6;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(28px, 3.2vw, 44px);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .19);
    backdrop-filter: blur(18px);
    transition: transform .36s ease, border-color .36s ease, box-shadow .36s ease;
}

.arx11-metric::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--arx11-accent), transparent 80%);
    transform: scaleY(.28);
    transform-origin: top;
    transition: transform .36s ease;
}

.arx11-metric:hover,
.arx11-metric.is-active {
    transform: translateY(-8px);
    border-color: var(--arx11-accent);
    box-shadow: 0 38px 88px rgba(0, 0, 0, .28);
}

.arx11-metric:hover::after,
.arx11-metric.is-active::after {
    transform: scaleY(1);
}

.arx11-metric--projects {
    --arx11-accent: #6ed1d5;
    grid-column: span 7;
}

.arx11-metric--states {
    --arx11-accent: #8aa8ff;
    grid-column: span 5;
}

.arx11-metric--assets {
    --arx11-accent: #79d6ac;
    grid-column: span 5;
}

.arx11-metric--plants {
    --arx11-accent: #d3a568;
    grid-column: span 7;
}

.arx11-metric__index {
    position: absolute;
    top: 30px;
    right: 34px;
    color: var(--arx11-accent);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.arx11-metric__value {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--arx11-accent);
}

.arx11-metric__value strong {
    color: #f7fbfc;
    font-size: clamp(4.4rem, 8.5vw, 8.4rem);
    font-weight: 900;
    line-height: .78;
    letter-spacing: -.075em;
    font-variant-numeric: tabular-nums;
}

.arx11-metric__value span {
    margin-top: .16em;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.arx11-metric h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #f0f7f8;
    font-size: clamp(1.4rem, 2vw, 2.15rem);
    font-weight: 840;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.arx11-metric p {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 15px 0 0;
    color: #9eb2b9;
    font-size: .98rem;
    line-height: 1.66;
}

.arx11-indicators__footer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    margin-top: clamp(52px, 7vw, 84px);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.arx11-indicators__footer-label {
    color: #6ed1d5;
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.arx11-indicators__footer p {
    max-width: 900px;
    margin: 0;
    color: #c1d0d5;
    font-size: clamp(1.02rem, 1.3vw, 1.23rem);
    font-weight: 680;
    line-height: 1.58;
}

@media (max-width: 980px) {
    .arx11-indicators__header {
        grid-template-columns: 1fr;
    }

    .arx11-metric--projects,
    .arx11-metric--states,
    .arx11-metric--assets,
    .arx11-metric--plants {
        grid-column: span 6;
    }
}

@media (max-width: 680px) {
    .arx11-indicators__grid {
        grid-template-columns: 1fr;
    }

    .arx11-metric,
    .arx11-metric--projects,
    .arx11-metric--states,
    .arx11-metric--assets,
    .arx11-metric--plants {
        grid-column: auto;
        min-height: 310px;
    }

    .arx11-indicators__footer {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .arx11-metric,
    .arx11-metric::after {
        transition: none;
    }
}
