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

body {
    background: linear-gradient(135deg, rgb(48, 48, 48), black);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-attachment: fixed;
    background-size: cover;
    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(5px);
    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(208, 208, 208);
    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;
}

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

.pag2 h1 {
    font-size:9vh;
    font-weight: 600;
    width: 80vw;
    text-align: center;
    font-weight: 400;
    font-style: italic;
}

.pag2 h1 span {
    color: rgb(0, 209, 146);
}

.pag2 p {
    opacity: 0.7;
    width: 80vw;
    font-size: 2.5vh;
    font-style: italic;
    font-weight: 200;
    text-align: center;
}

.img-paragrafo {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 5vh;
}

.img-margaret {
    width: 30vw;
    border-radius: 2vh;
    height: auto;

}

.Paragrafo {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Paragrafo h1 {
    font-weight: 500;
    font-size: 5vh;

}

.Paragrafo p {
    opacity: 0.7;
    font-size: 3vh;
    font-weight: 200;
}

@media (max-width: 900px) {
    .img-margaret{
        width: 80vw;
    }

    .Paragrafo {
        width: 80vw;
        margin: 2vh;
    }

    .img-paragrafo{
        display: flex;
        flex-direction: column;
        margin: 2vh;
    }
}

/* ==================================
CONQUISTAS PRINCIPAIS
=====================================
 */

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

.Conquistas>h1 {
    text-align: center;
    font-size: 5vh;
    font-weight: 600;
    font-style: italic;
    width: 100vw;
}

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

.Cards {
    width: 30vh;
    margin: 2vh;
    background-color: rgb(28, 28, 28);
    padding: 2vh;
    border-radius: 1vh;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    border: 0.1vh solid rgb(0, 131, 0);
}

.Conquistas img {
    height: 4vh;
}

.Conquistas p {
    opacity: 0.7;
    font-size: 2.5vh;
    font-weight: 400;
    
}

.Cards h1 {
    font-size: 3vh;
    font-weight: 600;

}

/* ===========================
CARREIRA 
============================== */

.carreira-posterior {
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: center;
   margin-bottom: 5vh;
   margin-top: 5vh;

}

.carreira-posterior > h1{
    text-align: center;
    font-size: 5vh;
    margin: 3vh;
    font-weight: 500;
    margin: 1vh;
    font-style: italic;
}

.carreira-posterior p{
    opacity: 0.7;
    font-size: 3vh;
    width: 80vw;
}