@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');

:root{
    --color1: #92e3a9;
    --color2: #263238;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background-color: white;
}

.logo{
    margin-left: 5rem;
}

.logo h1{
    font-family: "Niconne", cursive;
    color: var(--color1);
    font-size: 3rem;
}

.menu{
    margin-right: 5rem;
}

.menu a{
    color: var(--color1);
    font-size: 1.2rem;
    padding: 1.2rem 1rem;
}

.menu a:hover{
    color: var(--color2);
    border-bottom: 1px solid var(--color1);
    transition: 0.8s;
}

.botao{
    margin-left: 2rem;
}

button{
    font-size: 1rem;
    background-color: var(--color1);
    padding: 0.8rem 1.6rem;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background-color: var(--color2);
    transition: 0.5s;
}

.home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
    margin-top: 5rem;
}

.content{
    margin-left: 5rem;
}

.content h2{
    font-weight: 900;
    font-size: 4rem;
    color: var(--color1);
}

.titulo{
    color: var(--color2);
}

.content-img{
    margin-right: 5rem;
}

.content-img img{
    width: 650px;
    text-align: center;
}

.content p{
    color: gray;
    text-align: left;
    margin-top: 1rem;
    max-width: 35rem;
}

.content button{
    margin-top: 2rem;
    padding: 1.2rem;
    border-radius: 15px;
}

.content button:hover{
    font-weight: 700;
}

.main{
    margin-top: 10rem;
    margin-left: 5rem;
    margin-right: 5rem;
}

.main h2{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color1);
    text-align: center;
}

.main-box{
    display: flex;
    justify-content: space-between;
}

.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 30rem;
    margin-top: 5rem;
    padding: 3rem;
    border: 1px solid var(--color1);
    border-radius: 20px;
    cursor: pointer;
}

section .imagem{
    margin-bottom: 2rem;
}

section h3{
    margin-bottom: 2rem;
    color: var(--color2);
}

section p{
    letter-spacing: .1rem;
}

.darktext{
    display: none;
}

.box:hover{
    background-color: var(--color2);
    color: white;
    padding: 40px;
}

.box:hover img{
    display: none;
}

.box:hover .text{
    display: none;
}

.box:hover .darktext{
    display: block;
}

footer{
    margin-top: 5rem;
    padding: 0.8rem 0;
    background-color: var(--color2);
    text-align: center;
    color: white;
    line-height: 1.3rem;
}

footer a{
    color: white;
}

footer a:hover{
    text-decoration: underline;
    color: var(--color1);
}