@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    max-width: 250px; 
    display: flex; 
    border-radius: 30px;
}

body {
    background-color: #f6f6f6;
    font-family: "Montserrat", serif;
    height: 100vh;

}

nav {
    max-width: 1300px;
    margin: auto;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    max-width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 100px;
    font-size: 17px;
}

.link a{
    position: relative;
    padding-bottom: 0.75rem;
    color: #1e2d64;
}

.link a::after {
    content:"";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #761EA6;
    transition: all 0.3s ease;
}

.link a:hover::after {
    width: 70%;
}

.btn {
    padding: 10px 10px;
    font-size: 17px;
    color: #f6f6f6;
    background-color: #1e2d64;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #761EA6;
}

header {
    position: relative;
    padding-top: 20px;
    display: grid;
    align-items: center;
}

header .content h2{
    margin-bottom: 1rem;
    padding: 2%;
    color: #1e2d64;
    font-size: 35px;
    font-weight: 650;
}

header .content p{
text-align: justify;
line-height: 1.6;
}

header .content h3{
    color: #761EA6;
    margin-bottom: 1rem;
    padding: 2%;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6rem;
}

.content-about {
    padding: 20px;
    background: #f6f6f6;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #761EA6;
}

.container { 
    width: 100%;
    margin: 1px 2px;
    padding: 150px;
    text-align: center;
}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #1d4ed8;
    z-index: -100;
}

.features {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: space-between;
}

.card {
    background-color: #761EA6;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    background-color: #1e2d64;
    border-color: #761EA6;
    transition: all 0.3s ease;

}

.card span {
    display: inline-block;
    background-color: #1e2d64;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #f6f6f6;
    border-radius: 5px;
    display: flex;
}

.features .card h4{
    margin-bottom: 100px;
    color: #f6f6f6;
    font-size: 20px;
    font-weight: 600;
}

.features .card p{
    color: #f6f6f6;
    margin-bottom: 1rem;
}

.botao__links {
    display: flex;
    justify-content: space-between;
}

.botao__links__site {
    background-color: #22D4FD;
    width: 175px;
    padding: 21.5px 0;
    border-radius: 16px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: black;
    font-family: "Montserrat", serif;
}

.botao__links__logo {
    width: 175px;
    padding: 21.5px 0;
    border-radius: 16px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: black;
    font-family: "Montserrat", serif;
}

form {
    color: #1e2d64;
    height: auto;
    text-align: center;
}

footer {
    text-align: center;
    color: #f6f6f6;
    background-color: #1e2d64;
    line-height: 1.6;
    height: 70px;
}

ul li a{
    text-decoration: none;
    color: #f6f6f6;
}