/* NOSOTROS — LHZ ECOPLAST */
:root {
    --about-graphite: #272727;
    --about-text: #505050;
    --about-muted: #727272;
    --about-border: #e5e5e5;
    --about-radius-sm: 14px;
    --about-radius-md: 22px;
    --about-radius-lg: 32px;
}

/* ELEMENTOS GENERALES */
.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .section-badge {
    justify-content: center;
}

.section-heading p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--about-text);
    font-size: 1.03rem;
    line-height: 1.8;
}

/* BOTONES */
.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--color-white);
    background: var(--color-orange);
    box-shadow: 0 12px 28px rgba(245, 124, 0, 0.23);
}

.btn--primary:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 15px 32px rgba(245, 124, 0, 0.3);
}

.btn--secondary {
    color: var(--color-white);
    background: var(--about-graphite);
}

.btn--secondary:hover {
    background: var(--color-orange);
}

.btn--light {
    color: var(--about-graphite);
    background: var(--color-white);
}

.btn--light:hover {
    color: var(--color-white);
    background: var(--color-orange);
}

.btn--outline-light {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.btn--outline-light:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

/* HERO */
.about-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--color-dark);
}

.about-hero__background,
.about-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-hero__background {
    z-index: -3;
}

.about-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero__overlay {
    z-index: -2;
    background:
        linear-gradient(90deg,
            rgba(20, 20, 20, 0.92) 0%,
            rgba(20, 20, 20, 0.78) 42%,
            rgba(20, 20, 20, 0.24) 76%,
            rgba(20, 20, 20, 0.08) 100%);
}

.about-hero::after {
    position: absolute;
    right: -170px;
    bottom: -230px;
    z-index: -1;
    width: 530px;
    height: 530px;
    border: 80px solid rgba(245, 124, 0, 0.18);
    border-radius: 50%;
    content: "";
}

.about-hero__content {
    max-width: 820px;
}

.about-hero h1 {
    color: var(--color-white);
}

.about-hero p {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 0.96rem + 0.25vw, 1.15rem);
    line-height: 1.75;
}

/* QUIÉNES SOMOS */
.about-intro {
    background: var(--color-white);
}

.about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.about-intro__image {
    position: relative;
}

.about-intro__image>img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
    border-radius: var(--about-radius-lg);
    box-shadow: var(--shadow-2);
}

.about-intro__image::before {
    position: absolute;
    top: -24px;
    left: -24px;
    z-index: -1;
    width: 45%;
    height: 48%;
    border-radius: 24px 0 0;
    background:
        repeating-linear-gradient(-45deg,
            rgba(245, 124, 0, 0.18) 0,
            rgba(245, 124, 0, 0.18) 2px,
            transparent 2px,
            transparent 10px);
    content: "";
}

.about-intro__experience {
    position: absolute;
    right: -25px;
    bottom: 32px;
    max-width: 220px;
    padding: 22px 26px;
    border-radius: 16px;
    color: var(--color-white);
    background: var(--color-orange);
    box-shadow: 0 18px 40px rgba(245, 124, 0, 0.28);
}

.about-intro__experience strong,
.about-intro__experience span {
    display: block;
}

.about-intro__experience strong {
    margin-bottom: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 1.18rem;
    line-height: 1.2;
}

.about-intro__experience span {
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-intro__content>p {
    margin: 20px 0 0;
    color: var(--about-text);
    font-size: 1rem;
    line-height: 1.8;
}

.about-intro__content .about-intro__lead {
    color: #383838;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-intro__highlights {
    display: grid;
    gap: 22px;
    margin-block: 32px 38px;
}

.about-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    align-items: flex-start;
}

.about-highlight__icon {
    width: 48px;
    height: 48px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    color: var(--color-orange);
    background: rgba(245, 124, 0, 0.1);
}

.about-highlight h3 {
    margin: 0 0 6px;
    color: var(--about-graphite);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 650;
}

.about-highlight p {
    margin: 0;
    color: var(--about-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* INDICADORES */
.about-stats {
    padding-block: 35px;
    background: var(--about-graphite);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-stat {
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 35px;
    text-align: center;
}

.about-stat:not(:last-child)::after {
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: rgba(255, 255, 255, 0.15);
    content: "";
}

.about-stat strong {
    margin-bottom: 7px;
    color: #ff9a33;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.75rem, 1.54rem + 0.8vw, 2.5rem);
    line-height: 1;
}

.about-stat span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* MISIÓN, VISIÓN Y PROPÓSITO */
.about-purpose {
    background: var(--color-background);
}

.about-purpose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.purpose-card {
    position: relative;
    overflow: hidden;
    min-height: 355px;
    padding: 38px 34px;
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-md);
    background: var(--color-white);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: var(--shadow-2);
}

.purpose-card--featured {
    color: var(--color-white);
    border-color: var(--about-graphite);
    background: var(--about-graphite);
}

.purpose-card__number {
    position: absolute;
    top: 18px;
    right: 26px;
    color: rgba(39, 39, 39, 0.055);
    font-family: "Poppins", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.purpose-card--featured .purpose-card__number {
    color: rgba(255, 255, 255, 0.06);
}

.purpose-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 16px;
    color: var(--color-orange);
    background: rgba(245, 124, 0, 0.1);
}

.purpose-card--featured .purpose-card__icon {
    color: var(--color-white);
    background: var(--color-orange);
}

.purpose-card h3 {
    margin: 0 0 16px;
    color: var(--about-graphite);
    font-family: "Poppins", sans-serif;
    font-size: 1.38rem;
    font-weight: 700;
}

.purpose-card--featured h3 {
    color: var(--color-white);
}

.purpose-card p {
    margin: 0;
    color: var(--about-text);
    font-size: 0.97rem;
    line-height: 1.78;
}

.purpose-card--featured p {
    color: rgba(255, 255, 255, 0.76);
}

/* CÓMO TRABAJAMOS */
.about-process {
    background: var(--color-white);
}

.about-process__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.about-process__content>p {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--about-text);
    font-size: 1rem;
    line-height: 1.8;
}

.process-list {
    display: grid;
    gap: 0;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding-bottom: 30px;
}

.process-item:not(:last-child)::before {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 26px;
    width: 1px;
    background: #dedede;
    content: "";
}

.process-item__number {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245, 124, 0, 0.3);
    border-radius: 50%;
    color: var(--color-orange);
    background: var(--color-white);
    font-size: 0.8rem;
    font-weight: 800;
}

.process-item h3 {
    margin: 2px 0 7px;
    color: var(--about-graphite);
    font-family: "Poppins", sans-serif;
    font-size: 1.03rem;
    font-weight: 650;
}

.process-item p {
    margin: 0;
    color: var(--about-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.about-process__image {
    position: relative;
}

.about-process__image>img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    border-radius: var(--about-radius-lg);
    box-shadow: var(--shadow-2);
}

.about-process__image::after {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(245, 124, 0, 0.12);
    content: "";
}

.about-process__floating-card {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 15px 36px rgba(25, 25, 25, 0.14);
    backdrop-filter: blur(8px);
}

.about-process__floating-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--color-white);
    background: var(--color-orange);
}

.about-process__floating-card strong {
    display: block;
}

.about-process__floating-card strong {
    margin-bottom: 3px;
    color: var(--about-graphite);
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
}

.about-process__floating-card span {
    color: var(--about-muted);
    font-size: 0.78rem;
}

/* VALORES */
.about-values {
    background: var(--color-background);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    min-height: 260px;
    padding: 31px 27px;
    border: 1px solid var(--about-border);
    border-radius: 18px;
    background: var(--color-white);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 124, 0, 0.4);
    box-shadow: 0 17px 42px rgba(30, 30, 30, 0.08);
}

.value-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 14px;
    color: var(--color-orange);
    background: rgba(245, 124, 0, 0.1);
}

.value-card h3 {
    margin: 0 0 12px;
    color: var(--about-graphite);
    font-family: "Poppins", sans-serif;
    font-size: 1.08rem;
    font-weight: 650;
}

.value-card p {
    margin: 0;
    color: var(--about-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* COBERTURA */
.about-coverage {
    background: var(--color-white);
}

.about-coverage__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.about-coverage__image img {
    width: 100%;
    aspect-ratio: 850 / 760;
    display: block;
    object-fit: cover;
    border-radius: var(--about-radius-lg);
    box-shadow: var(--shadow-2);
}

.about-coverage__content>p {
    margin: 22px 0 0;
    color: var(--about-text);
    font-size: 1rem;
    line-height: 1.8;
}

.coverage-list {
    display: grid;
    gap: 15px;
    margin: 30px 0 38px;
    padding: 0;
    list-style: none;
}

.coverage-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px;
    align-items: center;
    color: var(--about-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.coverage-list li>span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-orange);
}

/* CTA FINAL */
.about-cta {
    position: relative;
    overflow: hidden;
    padding-block: 78px;
    color: var(--color-white);
    background:
        linear-gradient(112deg,
            #242424 0%,
            #303030 58%,
            #3a2a1d 100%);
}

.about-cta::before {
    position: absolute;
    top: -170px;
    right: 5%;
    width: 210px;
    height: 210px;
    border: 74px solid rgba(245, 124, 0, 0.14);
    border-radius: 50%;
    content: "";
}

.about-cta::after {
    position: absolute;
    bottom: -70px;
    left: 7%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(245, 124, 0, 0.1);
    content: "";
}

.about-cta__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
}

.about-cta__content {
    max-width: 760px;
}

.about-cta__content h2 {
    color: var(--color-white);
}

.about-cta__content p {
    max-width: 670px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .about-intro__grid,
    .about-process__grid,
    .about-coverage__grid {
        gap: 55px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta__container {
        grid-template-columns: 1fr;
    }

    .about-cta__actions {
        justify-content: flex-start;
    }

}

@media (max-width: 900px) {

    .about-hero {
        min-height: 540px;
    }

    .about-hero__overlay {
        background:
            linear-gradient(90deg,
                rgba(20, 20, 20, 0.92) 0%,
                rgba(20, 20, 20, 0.75) 70%,
                rgba(20, 20, 20, 0.5) 100%);
    }

    .about-hero::after {
        display: none;
    }

    .about-hero__background img {
        object-position: right;
    }

    .about-intro__grid,
    .about-process__grid,
    .about-coverage__grid {
        grid-template-columns: 1fr;
    }

    .about-intro__image,
    .about-process__image,
    .about-coverage__image {
        max-width: 700px;
        margin-inline: auto;
    }

    .about-intro__image>img {
        aspect-ratio: 850 / 760;
        height: auto;
    }

    .about-process__image>img {
        aspect-ratio: 850 / 900;
        height: auto;
    }

    .about-process__image {
        order: -1;
    }

    .about-purpose__grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        min-height: auto;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat:nth-child(2)::after {
        display: none;
    }

    .about-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

}

@media (max-width: 680px) {

    .section-heading {
        margin-bottom: 38px;
    }

    .about-hero {
        min-height: 570px;
    }

    .about-hero__overlay {
        background: rgba(20, 20, 20, 0.70);
    }

    .about-hero h1 {
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .about-intro__experience {
        right: 14px;
        bottom: 14px;
        max-width: 200px;
        padding: 17px 19px;
    }

    .about-intro__image::before,
    .about-process__image::after {
        display: none;
    }

    .about-stats {
        padding-block: 20px;
    }

    .about-stat {
        min-height: 115px;
        padding: 20px 15px;
    }

    .about-stat:not(:last-child)::after {
        display: none;
    }

    .purpose-card {
        padding: 31px 26px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .about-process__floating-card {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .about-cta {
        padding-block: 65px;
    }

    .about-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-cta__actions .btn {
        width: 100%;
    }

    .about-cta::before {
        top: -120px;
        width: 120px;
        height: 120px;
        border: 54px solid rgba(245, 124, 0, 0.14);
    }

}

@media (max-width: 460px) {

    .about-stats__grid {
        grid-template-columns: 1fr;
    }

    .about-stat:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-stat {
        min-height: 100px;
    }

    .about-intro__experience {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 28px);
        max-width: none;
        margin: -30px auto 0;
    }

    .process-item {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .process-item__number {
        width: 46px;
        height: 46px;
    }

    .process-item:not(:last-child)::before {
        top: 44px;
        left: 22px;
    }

    .about-process__floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin: -28px 14px 0;
    }

}