* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url("assets/background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    color: white;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3vh 0 0 10vw;
}

#a_proen {
    position: fixed;
    display: flex;
    top: 40px;
    right: 100px;
    transition: 70ms linear;
    border-radius: 14px;
}

.a_proen img {
    width: 21vw;
    min-width: 340px;
    border-radius: 14px;
    mix-blend-mode: darken;
}

#a_proen:hover {
    background-color: rgb(154, 207, 167);
}

.bpeq {
    display: flex;
    flex-direction: row;
    padding: 100px;
}

.logo_bpeq img {
    width: 20vw;
    min-width: 200px;
    height: auto;
    border-radius: 20px;
}

.navigation-links {
    width: 18vw;
    min-width: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #245c5ca1;
    background-image: linear-gradient(135deg, #abbdbda1, #124646a1);
    background-image: url("assets/background-button-links.jpeg");
    background-size: 100% 100%;
    border-radius: 12px;
    padding: 14px;
    margin-left: 40px;
}

.navigation-links h3 {
    background-color: #124646a1;
    padding: 8px 18px;
    border-radius: 16px;
}

.links a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: rgb(232, 231, 231);
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 50px;
    width: 12vw;
    max-width: 250px;
    max-height: 30px;
    min-width: 80px;
    text-align: center;
    transition: 0.3s ease;
    border: 2px solid transparent;
    margin: 1vh 10px 0 10px
}

.links img {
    width: 6vw;
    min-width: 50px;
    max-width: 88px;
    height: auto;
}

#larger-img {
    width: 7vw;
    max-width: 150px;
    min-width: 100px;
}

.links a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: green;
    border: 2px solid rgb(71, 82, 71);
}

.navigation-links-2 {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #245c5ca1;
    border-radius: 12px;
    padding: 20px 14px 14px 14px;
    margin: 50px 0 0 10px;
}

#footer-links {
    display: flex;
    flex-direction: row;
}

p {
    font-size: 16px;
    font-size: 14px;
    font-weight: bold;
}

.navigation-links,
.navigation-links-2,
.logo_bpeq img {
    box-shadow: 2px 2px 50px 1px rgb(51, 51, 51);
}

a {
    box-shadow: 1px 1px 50px 1px rgb(75, 75, 75);
}

#footer {
    position: fixed;
    bottom: 10px;
    right: 20px;
    font-size: 14pt;
    color: white;
    box-shadow: none;
}

@media (max-width: 1000px) {
    body {
        background-size: auto;
        /* Não força a imagem a cobrir a tela */
        background-position: center;
        background-color: #3c4414;
    }

    .container {
        justify-content: center;
    }

    .content {
        margin: 30px 0 0 0;
    }

    .bpeq {
        flex-direction: column;
        padding: 40px;
    }

    .logo_bpeq {
        max-width: 300px;
    }

    .logo_bpeq img {
        width: 67vw;
        max-width: 300px;
    }

    #a_proen {
        position: relative;
        background-color: white;
        top: 0;
        right: 0;
    }

    .navigation-links {
        margin: 2vh 0;
        width: 60vw;
        height: 40vh;
        max-width: 272px;
    }

    .navigation-links-2 {
        margin: 0;
        flex-direction: column;
        width: 60vw;
        max-width: 290px;
    }

    #footer-links {
        flex-direction: column;
    }

    .links a {
        width: 40vw;
        max-width: 200px;
        height: 60px;
    }

    .links img {
        width: 17vw;
        max-width: 100px;
    }

    #footer {
        position: relative;
        display: flex;
        width: 100%;
        align-items: center;
        right: 0;
        margin-top: 40px;
    }
}

@media (max-width: 700px) {

    .a_proen img {
        width: 21vw;
        min-width: 300px;
        border-radius: 14px;
        mix-blend-mode: darken;
    }

    .navigation-links {
        height: 60vh;
        max-height: 300px;
    }
}