.about-page {
    background: #ffffff;
    color: #000000;
    overflow: hidden;
}

/* GLOBAL */
.about-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ✅ CAMBIO 3: Menos espacio muerto */
.about-section {
    position: relative;
    padding: 80px 24px;
}

.about-section__header {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-section__header span,
.about-section__label span,
.about-objectives__intro span {
    display: inline-block;
    margin-bottom: 14px;
    color: #a58200;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.about-section__header h2,
.about-story__content h2,
.about-objectives__intro h2 {
    margin: 0;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 950;
    color: #000000;
}

.about-section__header p,
.about-story__content p,
.about-objectives__intro p {
    margin: 18px 0 0;
    color: #606060;
    font-size: 16px;
    line-height: 1.75;
}

/* HERO */
.about-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 80px;
    background:
        radial-gradient(circle at 18% 22%, rgba(254, 207, 12, 0.22), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(0, 0, 0, 0.06), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 940px;
    text-align: center;
}

.about-logo-wrap {
    width: 98px;
    height: 98px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.about-logo {
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(254, 207, 12, 0.2);
    color: #000000;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 880px;
    margin: 0 auto;
    font-size: clamp(42px, 6.4vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.07em;
    font-weight: 950;
    color: #000000;
}

.about-hero p {
    max-width: 680px;
    margin: 26px auto 0;
    color: #606060;
    font-size: 18px;
    line-height: 1.7;
}

.about-stats {
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
    gap: 14px;
}

.about-stat {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.about-stat strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 950;
    color: #000000;
}

.about-stat span {
    display: block;
    margin-top: 8px;
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.72;
    animation: aboutFloat 7s ease-in-out infinite alternate;
}

.about-orb--one {
    width: 210px;
    height: 210px;
    left: 10%;
    top: 18%;
    background: rgba(254, 207, 12, 0.26);
}

.about-orb--two {
    width: 250px;
    height: 250px;
    right: 10%;
    bottom: 12%;
    background: rgba(0, 0, 0, 0.08);
    animation-delay: 1.2s;
}

/* STORY */
.about-story {
    background: #ffffff;
}

/* ✅ CAMBIO 1: Elimina columna fantasma y centra contenido */
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.about-story__content p {
    max-width: 850px;
    font-size: 17px;
}

/* MISSION VISION */
.about-mv {
    background: #fafafa;
}

.about-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    position: relative;
    min-height: 330px;
    padding: 36px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(254, 207, 12, 0.22), transparent 35%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 207, 12, 0.6);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.08);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card--dark {
    background: #000000;
    color: #ffffff;
}

/* ✅ CAMBIO 2: Forzar colores en Misión (fondo negro) */
.about-card--dark h3 {
    color: #ffffff !important;
}

.about-card--dark p {
    color: rgba(255,255,255,0.85) !important;
}

/* ✅ CAMBIO 2: Forzar colores en Visión (fondo blanco) */
.about-card:not(.about-card--dark) h3 {
    color: #000000;
}

.about-card:not(.about-card--dark) p {
    color: #555555;
}

.about-card__number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 40px;
    color: #a58200;
    font-size: 14px;
    font-weight: 950;
}

.about-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 34px;
    letter-spacing: -0.04em;
    font-weight: 950;
    color: #000000;
}

.about-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #606060;
    font-size: 16px;
    line-height: 1.75;
}

.about-card--dark p {
    color: rgba(255, 255, 255, 0.75);
}

/* OBJECTIVES */
.about-objectives {
    background:
        radial-gradient(circle at 15% 20%, rgba(254, 207, 12, 0.15), transparent 28%),
        #ffffff;
}

.about-objectives__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.about-objectives__list {
    display: grid;
    gap: 14px;
}

.about-objective {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-objective:hover {
    transform: translateX(6px);
    border-color: rgba(254, 207, 12, 0.6);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
}

.about-objective span {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fecf0c;
    color: #000000;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(254, 207, 12, 0.18);
}

.about-objective p {
    margin: 0;
    color: #222222;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

/* VALUES */
.about-values {
    background: #000000;
    color: #ffffff;
}

.about-values .about-section__header h2 {
    color: #ffffff;
}

.about-values .about-section__header span {
    color: #fecf0c;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-value {
    min-height: 260px;
    padding: 30px;
    border-radius: 30px;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.about-value:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 207, 12, 0.5);
    background: #151515;
}

.about-value__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fecf0c;
    color: #000000;
    font-size: 14px;
    font-weight: 950;
}

.about-value h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.about-value p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

/* CLIENTS */
.about-clients {
    background: #ffffff;
}

.about-clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 18px;
}

.about-client {
    position: relative;
    aspect-ratio: 1 / 1;
    padding: 16px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-client::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(254, 207, 12, 0.16), transparent 42%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.about-client:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(254, 207, 12, 0.55);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.075);
}

.about-client:hover::before {
    opacity: 1;
}

.about-client img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: saturate(0.92);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.about-client:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.about-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 28px;
    text-align: center;
    border-radius: 24px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-empty p {
    margin: 0;
    color: #606060;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}

.delay-4 {
    transition-delay: 0.48s;
}

@keyframes aboutFloat {
    from {
        transform: translateY(0) translateX(0) scale(1);
    }

    to {
        transform: translateY(-18px) translateX(12px) scale(1.04);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-story__grid,
    .about-objectives__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-mv__grid {
        grid-template-columns: 1fr;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .about-section {
        padding: 74px 18px;
    }

    .about-hero {
        min-height: auto;
        padding: 70px 18px 62px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-logo-wrap {
        width: 84px;
        height: 84px;
        border-radius: 24px;
    }

    .about-logo {
        max-width: 62px;
        max-height: 62px;
    }

    .about-card {
        min-height: auto;
        padding: 28px;
        border-radius: 28px;
    }

    .about-objective {
        grid-template-columns: 48px 1fr;
        padding: 17px;
    }

    .about-objective span {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .about-clients__grid {
        grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
        gap: 14px;
    }

    .about-client {
        padding: 12px;
        border-radius: 22px;
    }
}

@media (max-width: 460px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .about-section__header h2,
    .about-story__content h2,
    .about-objectives__intro h2 {
        font-size: 34px;
    }

    .about-clients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}