@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
body {
    font-family: 'Montserrat' !important;
    padding: 0;
    margin: 0;
}
.pad-primary {
    padding: 10vh 5vh;
    margin: 0;
}
#logo {
    width: 30%;
    height: auto;
}

ul {
    text-decoration: none;
    list-style: none;
    display: flex;
    gap: 30px;
}
ul a {
    color: white;
    font-weight: 500;
    text-decoration: none;
}
h1, h2, p{
    margin: 0;
    padding: 0;
    margin-bottom: 1vh;
}

h1 {
    font-size: 26px;
    text-align: center;
}
h2 {
    font-size: 22px;
    text-align: center;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header {
    height: 40vh;
    background-color: #666666;
    color: white;
    background-image: url('banner-azul.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: end;
}
header section h1{
    color: #ffffff;
    text-align: center;
}
.container_btns {
    display: flex;
    justify-content: center;
    align-items: center;
}
#btn-primary {
    background-color: #1d4d73;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-size: 18px;
}
section h1 {
    color: #1d4d73;
} 
section h2 {
    color: #535353;
}
section p {
    font-size: 18px;
    text-align: center;
}
.container_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_flex div {
    max-width: 80%;
}
.container_elements {
    text-align: center;
    margin-top: 5vh;

}


.container_elements article h4 {
    font-weight: 600;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1d4d73;
}
.youtube {
    background-color: #1d4d73;
}
.youtube h1 {
    color: white;
}
.youtube main article iframe {
    border-radius: 20px;
}

#contacto h1, #contacto h2, #contacto p {
    text-align: start;
}

#contacto img {
    max-width: 100%;
    height: auto;
    margin-top: 10vh;
}

@media (min-width: 768px) {
    .container_elements {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 7vh;
        margin-top: 10vh;
    }

    .container_flex div {
        max-width: 60%;
        text-align: center;
    }

    .pad-primary {
        padding: 15vh 20vh;
    }

    #contacto div {
        text-align: start;
    }

    .container_contacto {
        display: flex; 
        justify-content: center;
        align-items: center;
        gap: 5vh;
    }

    #logo {
        width: 7%;
        height: auto;
    }
    

    #contacto img {
        max-width: 50%;
        height: auto;
        margin-top: 1vh;
    }
}

footer {
    background-color: #1d4d73;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5vh;
}
footer a, footer p{
    color: white;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}