/* INTRO */
#intro {
    height: 47vw;
    max-height: 800px;
    margin-top: 89px;
    position: relative;
}

#intro img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}

@media screen and (max-width: 800px) {
    #intro {
        margin-top: 0;
    }
}

@media screen and (max-width: 600px) {
    #intro {
        height: 70vw;
        max-height: 600px;
    }
}

/* ========================================================================= */
/* POTENCIAR */
#enhance {
    background-color: var(--gris-2);
    padding: var(--paddingMedium) 0;
}

#enhance h1 {
    font-weight: 700;
    font-size: clamp(1.9rem, 7.0vw, 3.8rem);
    line-height: 1.2em;
    margin: 0 auto auto;
    color: var(--negro);
    text-align: center;
    max-width: 950px;
}

/* ========================================================================= */
/* MISION */
#mission {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#mission .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
    font-size: clamp(1.0rem, 2.5vw, 1.38rem);
    font-weight: 500;
    line-height: 1.6em;
}

#mission .wrapper .box {
    background-color: #fff;
    border-radius: var(--radiusV);
    overflow: hidden;
    padding: 1.2em 2em;
}

#mission .wrapper .box p.highlight {
    font-size: clamp(1.1rem, 3.0vw, 1.9rem);
    line-height: 1.6em;
    font-weight: 600;
}

#mission .wrapper p {
    line-height: 1.6em;
}

@media screen and (max-width: 450px) {
#mission .wrapper {
    grid-template-columns: repeat(1, 1fr);
}
}

/* ========================================================================= */
/* VIDEO 30 ANIVERSARIO */
#anniversary {
    background-color: var(--gris-2);
    padding: 0 0 var(--paddingMedium) 0;
    position: relative;
}

#anniversary .pageWidth h3 {
    font-size: 30px;
    font-size: clamp(1.4rem, 2.8vw, 2.0rem);
    line-height: 1.4em;
    color: var(--negro);
    font-weight: 600;
    margin: 0 0 .4em 0;
    text-align: center;
}

#anniversary .pageWidth .wrapper {
    flex: 1;
    height: 0;
    position: relative;
    padding-bottom: 56%;
    height: 0;
    width: 100%;
    border-radius: var(--radiusV);
    overflow: hidden;
}

#anniversary .pageWidth .wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important;
}

/* ========================================================================= */
/* VALUES */
#values {
    background-color: var(--gris-2);
    padding: 0 0 var(--paddingMedium) 0;
    position: relative;
}

#values .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    font-size: clamp(0.5rem, 5.4vw, 1.1rem);
    line-height: 1.4em;
}

#values .wrapper > div {
    background-color: #000;
    padding: 1.5em 1.5em;
    border-radius: var(--radiusV);
    overflow: hidden;
    min-height: 510px;
}

#values .wrapper > div:nth-child(1) {
    background-color: var(--marino);
}

#values .wrapper > div:nth-child(2) {
    background-color: var(--dorado-3);
}

#values .wrapper > div:nth-child(3) {
    background-color: var(--azul-3);
    ; }

#values .wrapper > div:nth-child(4) {
    background-color: var(--verde-2);
}

#values .wrapper > div:nth-child(5) {
    background-color: var(--coral-2);
}

#values .wrapper > div:nth-child(6) {
    background-color: var(--purpura-3);
}

#values .wrapper h2 {
    color: #FFF;
    font-size: clamp(1.5rem, 5.4vw, 3.0rem);
    line-height: 1.2em;
    margin-bottom: .4em;
}

#values .wrapper h3 {
    color: #FFF;
    font-size: clamp(1.5rem, 5.4vw, 2.0rem);
    line-height: 1.2em;
    margin-bottom: .3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#values .wrapper h3 i {
    font-size: 1.5em;
}

#values .wrapper p {
    font-weight: 500;
    color: var(--negro);
}

#values .wrapper > div:nth-child(1) p {
    font-size: clamp(0.5rem, 4.4vw, 1.7rem);
    line-height: 1.3em;
    font-weight: 700;
    color: #FFF;
    max-width: 200px;
}

@media screen and (max-width: 1110px) {
    #values .wrapper > div {
        min-height: 370px;
    }
}

@media screen and (max-width: 740px) {
    #values .wrapper > div {
        min-height: auto;
    }

    #values .wrapper > div:nth-child(1) p {
        max-width: 100%;
    }
}

@media screen and (max-width: 450px) {
#values .wrapper {
    grid-template-columns: repeat(1, 1fr);
}
}