@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font-primary: 'Poppins', sans-serif;
    --roxo-primario: #240234;
    --roxo-secundario: #331E59;
    --azul-principal: #3746CD;
    --azul-secundário: #A3F4FF;
    --verde: #12BA23;
    --vermelho: #BB1414;
    --amarelo: #FFA600;
    --branco: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    text-decoration: none;
    list-style: none;
}

body {
    width: 100%;
    height: 100vh; 
    background: linear-gradient(113deg, #240234 8%, #331E59 25%, #3746CD 56%, #A3F4FF 100%);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    padding: 0 7%;
    margin: 0 auto;
}


/* nav */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding: 12px;
}

nav a{
    display: flex;
    align-items: center;
    color: var(--branco);
}

nav img {
    width: 30px;
}

nav p {
    color: var(--branco);
    font: 600 32px/normal Poppins;
}

nav ul {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul li {
    font: 500 20px/normal Poppins;
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    width: 8rem;
    cursor: pointer;

}

nav ul li:hover {
    border-radius: 54px;
    border: 2px solid rgba(163, 244, 255, 0.50);
    background: rgba(55, 70, 205, 0.50);
}

nav ul li:nth-child(1) {
    border-radius: 54px;
    border: 2px solid rgba(163, 244, 255, 0.50);
    background: rgba(55, 70, 205, 0.50);
}

.btn-login {
    background: #a3f4ff80; 
    color: var(--branco);
    border-radius: 15px; 
    border: 2px rgba(255, 255, 255, 0.50) solid;
    padding: 3px 25px;
    cursor: pointer;
    font: 600 20px/normal Poppins;
}

.btn-login:hover {
    background: #ffffff80;
}

/* main */

main .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

main .main_text {
    width: 50%;
}

main .main_text h1 {
    font: 500 60px/149.94% Poppins;
    color: var(--branco);
}

main .main_text p {
    font: 500 17px/normal Poppins;
    color: var(--branco);
    margin-top: 25px;
    margin-bottom: 30px;
}

main .main_text button {
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid transparent;
    background: var(--verde);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.10);
    font: 700 20px/normal Poppins;
    text-align: center;
    color: var(--branco);
    padding: 15px 70px;
}

main .main_text button:hover {
    border: 2px solid white;
}

main .main_img {
    width: 50%;
}

main .main_img img{
    width: 100%;
    position: relative;
}

/* footer */

footer .container {
    background-color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer p{
    cursor: pointer;
    margin: 3rem 0;
    font: 500 17px/normal Poppins;
    color: var(--roxo-primario);
}