@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



html {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}



/*-----------------
TYPOGRAPHY
-----------------*/

h1 {
    font-size: 32px;
    font-weight: 400;
}

h2 {
    font-size: 28px;
    font-weight: 400;
}

h3 {
    font-size: 24px;
    font-weight: 400;
}

h4 {
    font-size: 20px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
}

h6 {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

p {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
}

.bold {
    font-weight: 700;
}



/*-----------------
COLORS
-----------------*/

:root {
    /* GREY SCALE */
    --b6: #F3FBFB;
    --b5: #CDEDEF;
    --b4: #A7DFE2;
    --b3: #81D1D6;
    --b2: #5BC3C9;
    --b1: #35B5BD;
    --b0: #0FA7B0;
    --b-1: #0D9199;
    --b-2: #0B7B81;
    --b-3: #09646A;
    --b-4: #074E52;
    --b-5: #05383B;
    --b-6: #032123;

    --secondary: #EC634D;
}

.container {
    padding: 120px 80px;
}



/*-----------------
Header
-----------------*/
nav {
    z-index: 1;
    position: fixed;
    width: 100vw;
    background-color: rgba(256, 256, 256, .7);
    padding: 16px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.rightSide > * {
    padding: 16px 32px;
}

.rightSide a {
    font-size: 16px;
    text-decoration: none;
    color: var(--b-3);
    font-weight: 700;
}

.rightSide > :last-child {
    padding: 8px 24px;
    font-weight: 600;
    color: white;
    background: #EC634D;
    border-radius: 4px;
}




/*-----------------
Main
-----------------*/
main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main > img {
    height: 80vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: fill;
}

.contentMain {
    margin: 200px 80px 0;
    width: 30vw;
    color: var(--b-4);
}

.contentMain > h5 {
    margin: 16px 0 64px;
    opacity: .8;
}

.contentMain > a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 64px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

button:focus-visible {
    outline: none;
}

.underMain {
    margin: 0 0 40px 80px;
    display: flex;
    justify-content: space-between;
}

.underMain > div > h4 {
    padding-left: 16px;
    color: #898989;
}

.underMain > div > img {
    transition: 400ms;
    margin: 32px 64px 0 0;
    filter: saturate(0);
}

.nacional > img:hover {
    transition: 400ms;
    filter: saturate(1);
}



/*-----------------
Governamental content
-----------------*/
section.governamental {
    min-height: 100vh;
    position: relative;
}

.governamentalContent {
    width: 40vw;
    color: var(--b-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.governamentalContent > div:nth-child(1) > h1 {
    margin-bottom: 16px;
}

.governamentalContent > div:nth-child(1) > h6 {
    color: var(--b-2);
}

.governamentalContent > div:nth-child(2) > h6 {
    padding: 8px 16px;
    background-color: var(--b6);
    border-radius: 4px;
    border: 1px solid var(--b5);
    width: max-content;
    margin: 16px 0;
    color: var(--b-2);
}

.governamentalContent > div:nth-child(2) {
    margin-top: 120px;
}

.governamentalAside {
    position: absolute;
    right: 80px;
    top: 20vh;
}

.governamentalAside > img {
    height: 60vh;
}

.governamentalBg::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--b-4);
    height: 100%;
    width: 20vw;
}



/*-----------------
VIP content
-----------------*/
.vip {
    background-color: var(--b6);
    display: flex;
    width: max-content;
}

.vipContent {
    color: var(--b-4);
    width: 33vw;
}

.vipContent > h1 {
    margin-bottom: 16px;
}

.vipContent > h6 {
    color: var(--b-2);
}

.buttonsVip {
    display: flex;
    justify-content: space-between;
}

.buttonsVip > a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    margin-top: 19px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.toggleCards {
    transition: 1s;
    display: flex;
    align-content: center;
    margin-right: 32px;
    padding: 15px;
    height: min-content;
    align-self: flex-end;
    border: 1px solid var(--secondary);
    background-color: transparent;
    border-radius: 4px;
}

.toggleCards > img {
    transform: rotate(180deg);
}


.overflowH {
    overflow: hidden;
    position: relative;
}

.overflowH::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 32px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #F3FBFB 0%, rgba(243, 251, 251, 0) 100%);
}

.cardsVip {
    transition: 1s;
    position: relative;
    width: max-content;
    display: flex;
    padding: 16px 0;
    overflow: hidden;
}

.slideLeft {
    transform: translateX(-34%);
}

.rotateBtn {
    transform: rotate(180deg);
}

.cardVip {
    margin: 0 20px;
    background-color: white;
    width: 20vw;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0px 0px 12px rgba(7, 78, 82, 0.1);
}

.cardVip img {
    opacity: .5;
    margin-bottom: 32px;
}

.cardVip h6 {
    color: var(--b-3);
}


/*-----------------
About content
-----------------*/
.about {
    display: flex;
    justify-content: space-between;
}

.aboutAside {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.aboutAside > img {
    height: 70%;
    object-fit: contain;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
}

.aboutContent {
    width: 50%;
    color: var(--b-4);
}

.aboutContent > div:nth-child(2) {
    margin: 120px 0 80px;
}

.aboutContent > div > h1 {
    margin-bottom: 16px;
}

.aboutContent > div:nth-child(3) > h6 {
    padding: 8px 16px;
    background-color: var(--b6);
    border-radius: 4px;
    border: 1px solid var(--b5);
    width: max-content;
    margin: 16px 0;
    color: var(--b-2);
}



/*-----------------
Footer
-----------------*/
footer {
    display: flex;
    justify-content: space-between;
    background-color: var(--b-4);
}

footer h2 {
    color: var(--b5);
    margin-bottom: 32px;
}

form {
    width: 35vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form > input, textarea {
    background: #FFFFFF;
    width: 48%;
    padding: 16px 24px;
    border-radius: 4px;
    border: none;
    margin-bottom: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    height: min-content;
}

textarea {
    resize: none;
}

textarea:focus-visible {
    outline: none;
}

.description {
    width: 100%;
}

input:focus-visible {
    outline: none;
}

form > input[type=button] {
    background-color: var(--secondary);
    width: 100%;
    font-weight: 700;
    color: white;
    font-size: 18px;
    margin-bottom: 0;
}

.RightASectionFooter {
    width: 40vw;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    color: white;
    margin-left: 120px;
}

.address {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

label img {
    margin: 0 16px;
    border-radius: 4px;
    mix-blend-mode: luminosity;
}

label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-right: 64px;
}

.login {
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

.login > form > div {
    display: flex;
}

.login > form > input[type=text] {
    margin-bottom: 16px;
}

.login > form > input[type=password] {
    margin-bottom: 16px;
}

.login > form > button {
    width: 100%;
    margin-top: 16px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: white;
    background: #EC634D;
    border: none;
    border-radius: 4px;
}


/* ANIMATION ON SCROLL */
[data-anime] {
    opacity: 0;
}

[data-anime].animate {
    opacity: 1;
    transition: 1s;
    transform: translate3d(0, 0, 0);
}

[data-anime=left] {
    transform: translate3d(-50px, 0, 0);
}

[data-anime=right] {
    transform: translate3d(50px, 0, 0);
}



@media screen and (max-width: 1500px) {

    .container {
        padding: 80px 40px;
    }

    main > img {
        height: 75vh;
    }

    .contentMain {
        width: 60vw;
        margin-top: 20vh;
    }

    .underMain {
        margin: 0 80px 40px;
    }



    .nacional > img {
        height: 24px;
        margin: 16px 26px 0 0!important;
    }

    .aboutAside img {
        height: 60vh;
    }



    form {
        width: 35vw;
    }

    .address {
        width: 100%;
    }


}

@media screen and (max-width: 1100px) {

    .hideOn1100 {
        display: none;
    }

    .underMain {
        display: none;
    }

    .governamentalAside {
        display: none;
    }

    .vip {
        flex-direction: column;
    }

    .vipContent {
        width: 94vw;
    }

    .toggleCards {
        display: none;
    }

    .cardsVip {
        width: 90vw;
        margin-top: 32px;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .cardVip {
        margin: 0 0 32px;
        width: 40vw;
    }

    .overflowH::after {
        display: none;
    }

}

@media screen and (max-width: 500px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .container {
        padding: 10vh 3vw;
    }



    nav {
        justify-content: center;
    }

    .hideMobile {
        display: none;
    }


    main img {
        height: 101vh;
        object-fit: cover;
    }

    .contentMain {
        width: 94vw;
        margin: 70vh 3vw;
    }

    .contentMain h1 {
        text-align: center;
    }

    .contentMain h5, a {
        display: none;
    }



    section.governamental {
        min-height: auto;
    }

    .governamentalContent {
        width: 75vw;
    }

    .governamentalContent div:nth-child(2) {
        display: none;
    }

    .governamentalAside {
        display: flex;
        justify-content: flex-end;
        position: unset;
        margin-top: 32px;
    }

    .governamentalAside img {
        height: 30vh;
    }

    .governamentalBg::after {
        width: 20vw;
        z-index: -2;
    }



    .cardsVip {
        width: calc( 100vw - 6vw );
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .cardVip {
        width: 100%;
    }



    .aboutContent {
        width: 94vw;
    }

    .aboutContent > div:nth-child(3) {
        display: none;
    }



    footer {
        flex-direction: column;
    }

    form {
        width: 94vw;
        flex-direction: column;
    }

    form > * {
        width: 100%!important;
    }



    .RightASectionFooter {
        margin-left: 0px;
    }


    .address {
        width: 94vw;
        margin: 64px 0;
        flex-wrap: wrap;
    }



}
