* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(240deg, rgb(36, 36, 36), black);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
    z-index: 1;
}

@keyframes subir {
    0% {
        transform: translateY(100vh);
    }

    100% {
        transform: translateY(0vh);
    }
}

.All {
    animation: subir 2s ease;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 0.1vh solid rgb(90, 90, 90);
    height: 10vh;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    background-color: rgba(0, 87, 62, 0.302);
    z-index: 100;
}

.menu .Opcs {
    width: 40vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.Opcs a {
    text-decoration: none;
    color: rgb(161, 161, 161);
    font-weight: 700;

}

.Opcs a:hover {
    border-bottom: 0.3vh solid rgb(195, 255, 0);
    scale: 103%;
}

.menu .logo {
    margin: 3vw;
    height: 4vh;

}

.menu h1 {
    width: 50vw;
    font-weight: 600;
    font-size: 3.5vmin;
}

.Inicio h1 {
    font-weight: 400;
    font-size: 8vh;
    width: 80vw;
    text-align: center;
    font-style: italic;

}

.Inicio p {
    opacity: 0.7;
    text-align: center;
    width: 80vw;
    font-size: 2.5vh;
}

.Inicio {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.green {
    color: rgb(0, 233, 140);
}

/* ==============================
IMPACTO GLOBAL
================================= */

.Impacto-global>h1 {
    text-align: center;
    font-size: 6vh !important;
    font-weight: 500;
    width: 100vw;
    margin: 2vh;
}

.Impacto-global {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.Impacto-global .cards {
    width: 50vh;
    background: rgb(21, 21, 21);
    padding: 2vh;
    border-radius: 1vh;
    margin: 2vh;
    height: auto;
    display: flex;
    flex-direction: row;
    border: 0.1vh solid rgb(0, 76, 0);
    justify-content: space-around;
}

.Impacto-global .cards:hover {
    scale: 105%;
    border: none;
    box-shadow: 0vh 0vh 2vh 0.2vh black;
    transition: all 0.2s ease-in;
}

.Impacto-global img {
    height: 5vh;
    background-color: rgba(0, 77, 32, 0.534);
    margin: 2vh;
    border-radius: 1vh;

}

.Impacto-global h1 {
    font-size: 3.3vh;
    font-weight: 500;
    margin: 1vh;
}

.Impacto-global p {
    opacity: 0.7;
    font-weight: 400;
    width: 30vh;
    font-size: 2.5vh;
    margin: 1vh;
}

.Impacto-global span {
    color: rgb(0, 255, 81);
    font-weight: 600;

}

.Impacto-global .Texto {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* =====================================
RECONHECIMENTOS
======================================== */

.Reconhecimentos img {
    height: 6vh;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.Reconhecimentos {
    display: flex;
    margin-top: 8vh;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.Reconhecimentos>h1 {
    text-align: center;
    font-weight: 500;
    font-size: 6vh;
    margin-bottom: 5vh;
    width: 100vw;
}

.Reconhecimentos .Cards {
    background-color: rgb(21, 21, 21);
    margin: 2vh;
    border-radius: 1vh;
    padding: 2vh;
    border: 0.1vh solid rgb(0, 66, 0);
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 50vh;
}

.Reconhecimentos .Cards:hover {
    scale: 105%;
    border: none;
    box-shadow: 0vh 0vh 2vh 0.2vh black;
    transition: all 0.2s ease-in;
}

.Cards span {
    background-color: rgb(0, 143, 88);
    margin: 2vh;
    height: 5vh;
    width: 10vh;
    font-size: 2.5vh;
    padding: 2vh;
    border-radius: 1vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.Cards p {
    opacity: 0.7;
    font-size: 2.2vh;

}

.Cards h2 {
    font-size:3vh;
    font-weight: 500;
}

/* ===================================
INFLUENCIA
====================================== */


.Influencia {
    display: flex;
    flex-direction: column;
    margin-top: 8vh;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5vh;
}

.Influencia img {
    align-items: center;
    height: 5vh;
}

.Influencia>h1 {
    text-align: center;
    font-size: 5vh;
    font-weight: 600;
}

.Influencia>p {
    opacity: 0.7;
    text-align: center;
    font-weight: 400;
    margin-bottom: 3vh;
}

.Influencia .Cards {
    width: 70vw;
    margin: 2vh;
    background-color: rgb(21, 21, 21);
    border-radius: 1vh;
    border: 0.1vh solid rgb(0, 78, 0);
    padding: 2vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 10vh;
}

.Influencia .Cards:hover {
    margin-left: 5vh;
    transition: all 0.1s ease-in;
    border: 0.3vh solid rgb(0, 78, 0);
}

.Influencia .Cards h1 {
    font-size: 3.2vh;
    font-weight: 600;
    color: rgb(0, 223, 89);
    margin: 2vh;
    text-align: start;
}

.Influencia .Cards p{
    font-size: 2.7vh;
}

@media (max-width:700px) {
    .Influencia .Cards {
        flex-direction: column;
        height: 15vh;
        justify-content: space-around;
    }

    .Influencia .Cards h1 {
        font-size: 2.5vh;
        font-weight: 600;
        color: rgb(0, 223, 89);
        margin: none;
    }
}