* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-crema: #EFEEE6;
    --color-verde: #265D39;
    --color-naranja: #F87C56;
    --color-verdeJade: #01CEB4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

header {

    background-color: var(--color-crema);

}

header .container {
    display: flex;
    justify-content: space-between;
}

.container {
    max-width: 80rem;
    margin: 0 auto;

}

header .logo {
    /*width: 20rem;
    height: auto;
    padding: 1rem 0;*/
    width: 13rem;
    height: auto;
    padding: 1.5rem 0rem 1.5rem 4rem;
}

.navigation {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navigation a {
    text-decoration: none;
    color: var(--color-verde);
    font-weight: bold;
    padding: 1rem;
}

.itemNav {
    height: 100%;
    display: flex;
    align-items: center;
    transition: .5s;
}

.textBold {
    font-weight: bold;
}

.textCenter {
    text-align: center;
}

.title {
    font-size: 2.2rem;
    padding: 1rem 5vw;
}

.titleAdmision {
    color: var(--color-verde);
}

.itemNav:hover {
    background-color: var(--color-naranja);
}

.itemNav.active {
    background-color: var(--color-naranja);
}

.itemNav.active a,
.itemNav:hover a {
    color: white;

}

.itemNav:last-child {
    border-right: none;
    padding-right: 0;
}

.videoHero {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.btn {
    padding: 1rem 1.2rem;
    font-weight: bold;
    color: white;

}

.btnNaranja {
    background-color: var(--color-naranja);
    text-decoration: none;
    border: none;
}

.btnCancelar {
    background-color: transparent;
    text-decoration: none;
    border: 2px solid var(--color-naranja);
    color: var(--color-naranja);
}

.blockAdmision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    color: white;
    justify-content: center;
    margin-top: -4px;
}

.blockAdmisionText {
    background-color: var(--color-verdeJade);
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blockAdmisionImg {
    /* background: #BDB1D5; */
    display: flex;
    align-items: end;
    justify-content: center;
    background: rgb(238,196,96);
    background: linear-gradient(20deg, rgba(238,196,96,1) 0%, rgba(237,193,94,1) 50%);
}

.blockAdmisionTextInfo {
    
}

.blockAdmisionTextInfo p {
    margin: 1rem 0px;
}

.blockAdmisionImg img {
    width: auto;
    height: calc(90vh);
    object-fit: contain;
    margin-top: 4rem;
    /* background: rgb(238, 196, 96);
    background: linear-gradient(20deg, rgba(238, 196, 96, 1) 0%, rgba(237, 193, 94, 1) 50%); */
    padding: 0 2rem 0;
    /*  */
}

.titleBlock {
    font-size: 2rem;
    font-weight: normal;
    padding: 0 0 1rem 0;
}

#btnAd {
   /* position: absolute;
    bottom: -20px;
    right: 10%;*/
    margin-top: 3rem;
    position: relative;
    display: block;
    text-align: center;
}

.heroImg {
    height: 70vh;
}

footer {
    /*border-top: 1px solid gray;*/
    padding: 4rem 2.5rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    display: grid;
    align-items: center;
    margin-top: 0rem;
}

.itemFooter {
    margin: 0 auto;
}

.navSite a {
    display: block;
    font-size: 1.1rem;
    margin-bottom: .3rem;
}

.navSite a,
.infoContact,
.infoContact a {
    color: gray;
    text-decoration: none;
}

.titleFooter {
    color: var(--color-verde);
    margin-bottom: 1rem;
}

.logoFooter {
    width: 250px;

}

.infoContact {
    text-align: right;
}

.copy {
    background-color: var(--color-verde);
    color: white;
    padding: 1rem;
    text-align: center;
}

@media screen and (max-width: 980px) {
    .blockAdmisionTextInfo p {
        font-size: 0.9rem;
    }

    .videoHero {
        height: 60vh;
    }

    .blockAdmision {
        grid-template-columns: 1fr;
    }

    .blockAdmisionImg img {
        height: calc(55vh);
    }

    .titleBlock {
        text-align: center;
    }

    #btnAd {
        position: relative;
        text-align: center;
        bottom: unset;
        right: unset;
    }

    footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .itemFooter2 {
        text-align: right;
    }
}


@media screen and (max-width: 550px) {
    footer {
        grid-template-columns: repeat(1, 1fr);
    }

    .logoFooter {
        width: 50vw;
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .itemFooter2,
    .itemFooter {
        text-align: center;
    }

    .infoContact {
        text-align: center;
    }

    .logoFooter {
        width: 250px;
    }
}


@media screen and (max-width: 500px) {
    header .logo {
        width: 9rem;
        height: auto;
        padding: 1.5rem 0rem 1.5rem 2rem;
    }

    .itemNav {
        font-size: 0.8rem;
    }
}