/* =========================================================
   NUESTRA EMPRESA
========================================================= */
.eco-company {
    width: 100%;
    background: #ffffff;
    color: #222222;
    font-family: 'Oswald', Arial, sans-serif;
}

.eco-company *,
.eco-company *::before,
.eco-company *::after {
    box-sizing: border-box;
}

/* HERO */
.eco-company__hero {
    width: 100%;
    padding: 65px 30px 10px 30px;
    background: #ffffff;
}

.eco-company__hero-inner {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.eco-company__title {
    position: relative;
    margin: 0 0 28px;
    color: #0C6600;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.eco-company__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 48px;
    height: 4px;
    border-radius: 99px;
    background: #0C6600;
    transform: translateX(-50%);
}

.eco-company__subtitle {
    margin: 36px 0 18px;
    color: #222222;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.eco-company__intro {
    max-width: 820px;
    margin: 0 auto;
    color: #656565;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
}

.eco-company__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.eco-company__nav a {
    min-width: 145px;
    padding: 11px 22px;
    border: 1px solid #0C6600;
    border-radius: 999px;
    color: #0C6600 !important;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    transition: background-color .2s ease, color .2s ease;
}

.eco-company__nav a:hover {
    background: #0C6600;
    color: #ffffff !important;
}

/* SECCIONES */
.eco-company-section {
    width: 100%;
    padding: 60px 40px;
    background: #ffffff;
    scroll-margin-top: 120px;
}

.eco-company-section:nth-of-type(odd) {
    background: #f7f8f6;
}

.eco-company-section__inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: 70px;
}

.eco-company-section--reverse .eco-company-section__image {
    order: 2;
}

.eco-company-section--reverse .eco-company-section__content {
    order: 1;
}

.eco-company-section__image {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #eeeeee;
}

.eco-company-section__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.eco-company-section__content {
    max-width: 530px;
}

.eco-company-section__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #ACDA28;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.eco-company-section__content h2 {
    position: relative;
    margin: 0 0 30px;
    color: #0C6600;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.eco-company-section__content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: #0C6600;
}

.eco-company-section__content p {
    margin: 0 0 16px;
    color: #5e5e5e;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
}

.eco-company-section__content p:last-child {
    margin-bottom: 0;
}

/* TABLET */
@media (max-width: 1000px) {
    .eco-company-section__inner {
        gap: 45px;
    }

    .eco-company-section__content h2 {
        font-size: 34px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .eco-company__hero {
        padding: 38px 22px 0px;
    }

    .eco-company__title {
        font-size: 32px;
        letter-spacing: -.5px;
    }

    .eco-company__subtitle {
        margin-top: 32px;
        font-size: 20px;
    }

    .eco-company__intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .eco-company__nav {
        gap: 8px;
        margin-top: 28px;
    }

    .eco-company__nav a {
        min-width: 0;
        flex: 1 1 0;
        padding: 10px 8px;
        font-size: 12px;
    }

    .eco-company-section {
        padding: 35px 22px;
    }

    .eco-company-section__inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .eco-company-section--reverse .eco-company-section__image,
    .eco-company-section--reverse .eco-company-section__content {
        order: initial;
    }

    .eco-company-section__image {
        border-radius: 14px;
    }

    .eco-company-section__content {
        width: 100%;
        max-width: none;
    }

    .eco-company-section__eyebrow {
        font-size: 17px;
    }

    .eco-company-section__content h2 {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .eco-company-section__content p {
        font-size: 16px;
        line-height: 1.6;
    }
}