/* Configurações Globais */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

:root{
    --corPrincipal: #9966CC;
    --corSecundaria: #F8FAFC;
}

.logo{
    width: 70px;
}

p{
    color: #65758B;
    font-size: 14px;
}

h1, h2, h3, h4{
    color: #0F1729;
}

h1{
    font-size: 48px;
}

h2{
    font-size: 30px;
}

h3{
    font-size: 16px;
}

h4{
    font-size: 14px;
}

.button{
    display: inline-block;
    padding:15px 20px;
    background-color: var(--corPrincipal);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.4s;
    font-size: 14px;
    font-weight: bold;
}

.button:hover{
    background-color: #7A4DA0;
}

.button i{
    margin-right: 10px;
}