/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Definitions */
:root {
    --primary-color: #21649a;
    --secondary-color: #ffffff;
    --light-color: #ffffff;
    --light-gray-color: #f6f6f6;
    --gray-color: #909090;
    --dark-gray-color: #666666;
    --dark-color: #333333;
    --transition: 250ms ease-in-out;
    --font-family: 'Montserrat';
    --font-size: 14.4px;
    --light-shadows: #00000038;
}

html {
    font-size: 14.4px;
    font-family: var(--font-family);
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.6em;
}

h5 {
    font-size: 1.4em;
}

h6 {
    font-size: 1.2em;
}

p {
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.5rem;
}

a {
    font-weight: 600;
}

b {
    font-weight: 800;
}

article {
    a {
        color: var(--primary-color);
    }
}

/* Modules */
.buttons-center,
.buttons-left,
.buttons-right {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
    a {
        text-decoration: none;
        color: var(--light-color);
        background-color: var(--primary-color);
        padding: 1rem 2rem;
        border-radius: 99px;
        transition: var(--transition);
        &:hover {
            background-color: var(--gray-color);
            color: var(--light-color);
            box-shadow: 0 0 10px var(--light-color);
        }
    }
}

.buttons-center {
    justify-content: center;
}

.buttons-left {
    justify-content: flex-start;
}

.buttons-right {
    justify-content: flex-end;
}

.high-title-1 {
    font-size: 4em;
}

.overlay {
    width: 100%;
    height: 100%;
}

.separator-100 {
    width: 100%;
    margin: 1rem auto;
    height: 1px;
}

.separator-70 {
    width: 100%;
    max-width: 70%;
    margin: 1rem auto;
    height: 1px;
}

/* Effects */
.d-none {
    display: none;
}

.home-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.d-block {
    display: block;
}

.line-height-1 {
    line-height: 1rem;
}

.line-height-2 {
    line-height: 2rem;
}

.line-height-3 {
    line-height: 3rem;
}

.line-height-4 {
    line-height: 4rem;
}

.line-height-5 {
    line-height: 5rem;
}

.line-height-6 {
    line-height: 6rem;
}

.d-inline {
    display: inline;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.overlay-dark {
    background-color: var(--light-shadows);
}

.text-center {
    text-align: center;
}

.color-primary {
    color: var(--primary-color);
}

.color-light {
    color: var(--light-color);
}

.bg-color-primary {
    background-color: var(--primary-color);
}

.bg-color-secondary {
    background-color: var(--secondary-color);
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}

.ml-5 {
    margin-left: 5rem;
}

.weight-400 {
    font-weight: 400;
}

.weight-700 {
    font-weight: 700;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-width-998 {
    max-width: 998px;
}

.max-width-1200 {
    max-width: 1200px;
}

.max-width-1400 {
    max-width: 1400px;
}

.max-width-1600 {
    max-width: 1600px;
}

.text-decoration-none {
    text-decoration: none;
}

/* Section: Hero */
.hero {
    margin-top: 100px;
    width: 100%;
    .hero__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .hero__img--desktop {
        display: block;
    }
    .hero__img--mobile {
        display: none;
    }
}

/* Sección: Contador del evento */
#countdown {
    width: 100%;
    margin: 4rem 0;
    padding: 0 2rem;
    .countdown__content {
        width: 100%;
        max-width: 992px;
        margin: 0 auto;
        border: 4px solid var(--primary-color);
        border-radius: 30px;
        padding: 1rem;
        a {
            color: var(--primary-color);
            text-decoration: none;
        }
            .hurrytimer-campaign.hurrytimer-campaign-15218 {
            transform: translateY(-4rem);
            height: 3rem;
            .hurrytimer-timer {
                .hurrytimer-timer-block {
                    background-color: var(--light-color);
                    margin: 0;
                    .hurrytimer-timer-digit {
                        font-weight: 900;
                        color: var(--dark-gray-color);
                    }
                    .hurrytimer-timer-label {
                        color: var(--dark-gray-color);
                    }
                }
                .hurrytimer-timer-block:first-child {
                    padding-left: 2rem;
                }
                .hurrytimer-timer-block:last-child {
                    padding-right: 2rem;
                }
                .hurrytimer-timer-sep {
                    padding: 0 1.5rem;
                    color: var(--dark-gray-color);
                    background-color: var(--light-color);
                }
            }
        }
    }
}

/* Section: Our sustainable production */
.our-production-sustainable {
    margin: 2rem auto;
    .our-production-sustainable__content {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        .our-production-sustainable__box {
            width: 50%;
            padding: 2rem;
            background-color: var(--light-gray-color);
        }
    }
}

/* Section: Advances & Achievements */
.advances-and-achievements {
    margin: 5rem auto;
    .advances-and-achievements__content {
        .achievements-group {
            padding: 0 2rem;
            display: flex;
            align-items: stretch;
            justify-content: space-evenly;
            flex-wrap: wrap;
        }
    }
}

.achieve-item {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 10px var(--light-shadows);
    margin: 0.5rem;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    border: 1px solid rgb(from var(--gray-color) r g b / 20%);
    position: relative;
    .achieve-item__bg {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .achieve-item__info {
        width: 60%;
        background-color: var(--light-color);
        padding: 3rem 1.5rem;
        border-radius: 25px;
        .achieve-item__icon {
            width: 100%;
            margin-bottom: 1rem;
            img {
                width: 60px;
            }
        }
    }
}

.achieve-item--reverse {
    flex-direction: row-reverse;
    .achieve-item__bg {
        left: auto;
        right: 0;
    }
}

/* Section: Recognitions */
.recognitions {
    background-color: var(--light-gray-color);
    margin: 5rem auto;
    .recognitions__content {
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        .recognitions__box {
            width: 50%;
            padding: 1.5rem 2rem;
            .recognitions__img {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    width: 40%;
                    border-radius: 15px;
                }
            }
        }
    }
}

#beneficios {
    width: 100%;
    background-color: var(--light-color);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    .beneficios__content {
        width: 100%;
        padding: 3rem 2rem 6rem;
        backdrop-filter: blur(5px);
        h2 {
            color: var(--light-color);
            text-align: center;
            margin-top: 0;
        }
        .beneficios__group {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            padding-top: 2.5rem;
        }
    }
}

.beneficios-item {
    width: 350px;
    border-radius: 15px;
    background-color: var(--light-color);
    box-shadow: 0 3px 10px var(--light-shadows);
    overflow: hidden;
        .beneficios-item__thumbnail {
            width: 100%;
            aspect-ratio: 1.5 / 1;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    .beneficios-item__info {
        padding: 0.5rem 1.5rem;
        h4 {
            color: var(--primary-color);
            text-align: center;
        }
    }
}

.beneficios-item:first-child {
    .beneficios-item__info {
        padding-right: 3.4rem;
    }
}

.beneficios-item:nth-child(2) {
    transform: scale(1.15);
}

.beneficios-item:last-child {
    .beneficios-item__info {
        padding-left: 3.4rem;
    }
}

/* Section: A.S.G. */
.asg {
    margin: 5rem auto;
    .asg__content {
        .asg__group {
            display: flex;
            align-items: stretch;
            justify-content: space-evenly;
            flex-wrap: wrap;
        }
    }
}

.asg-item {
    width: 300px;
    padding: 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 5px var(--light-shadows);
    .asg-item__icon {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        img {
            width: 35%;
        }
    }
    .asg-item__info {
        ul {
            li {
                margin: 0.5rem 0;
            }
        }
    }
}

#asg-modelo-excelencia {
    background-color: var(--secondary-color);
}

#asg-economia-circular {
    background-color: var(--primary-color);
}

#asg-inversion-social {
    background-color: var(--light-gray-color);
}

/* Section: Contact Us */
.contactUs {
    margin-bottom: 2rem;
    .contactUs__content {
        .contactUs__box {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            .contactUs__inner {
                width: 50%;
                padding: 2rem;
                .contactUs__img {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 1rem 0;
                    img {
                        width: 100%;
                        max-width: 70px;
                    }
                }
                span {
                    padding: 1.2rem;
                    display: block;
                    border-radius: 20px;
                    background-color: var(--primary-color);
                    color: var(--light-color);
                    text-align: center;
                    font-weight: 600;
                    a {
                        color: var(--light-color);
                    }
                }
            }
        }
    }
}

/* Media Queries */
@media (width <= 1100px){
    #beneficios {
        .beneficios__content {
            .beneficios__group {
                justify-content: space-evenly;
            }
        }
    }
    .beneficios-item {
        margin: 0.5rem;
    }
    .beneficios-item:first-child {
        .beneficios-item__info {
            padding-right: 1.5rem;
        }
    }
    .beneficios-item:nth-child(2){
        transform: scale(1);
    }
    .beneficios-item:last-child {
        .beneficios-item__info {
            padding-left: 1.5rem;
        }
    }
}

@media (width <= 768px) {
    .hero {
        .hero__img--desktop {
            display: none;
        }
        .hero__img--mobile {
            display: block;
        }
    }
    .our-production-sustainable {
        .our-production-sustainable__content {
            .our-production-sustainable__box {
                width: 100%;
            }
        }
    }
    .achieve-item {
        justify-content: center;
        .achieve-item__bg {
            position: relative;
            width: 100%;
            height: 48vw;
        }
        .achieve-item__info {
            width: 100%;
        }
    }
    .achieve-item--reverse {
        flex-direction: column-reverse;
        .achieve-item__bg {
            width: 100%;
            height: 48vw;
        }
        .achieve-item__info {
            width: 100%;
        }
    }
    .recognitions {
        .recognitions__content {
            .recognitions__box {
                width: 100%;
                padding: 1rem;
                .recognitions__img {
                    img {
                        width: 40%;
                        border-radius: 15px;
                    }
                }
            }
        }
    }
    .contactUs {
        .contactUs__content {
            .contactUs__box {
                .contactUs__inner {
                    width: 100%;
                    padding: 0 2rem;
                    h2 {
                        text-align: center;
                    }
                }
            }
        }
    }
}

@media (width < 576px) {
    #countdown {
        .countdown__content {
            .hurrytimer-campaign.hurrytimer-campaign-15218 {
                height: 10rem;
            }
        }
    }
}

@media (width <= 480px) {
    .advances-and-achievements {
        .advances-and-achievements__content {
            .achievements-group {
                padding: 0 0.5rem;
            }
        }
    }
}