:root {
    --violeta: #C8C1D6;
    --cinza: #737373;
    --cinza-escuro: #545454;
}

@font-face {
    font-family: "Roboto-Regular";
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: "Roboto-Bold";
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: "Roboto-Medium";
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: "Roboto-Light";
    src: url('../fonts/Roboto-Light.ttf');
}

body {
    margin: 0;
    background-color: #f1f1f1;
}

main {
    padding: 0 2rem;
}

h1, h2, h3, a, span  {
    font-family: 'Roboto-Bold', sans-serif;
    color: var(--cinza-escuro);
}

p, li {
    font-family: 'Roboto-Medium', sans-serif;
    color: var(--cinza-escuro);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.top-content {
    background: linear-gradient(180deg, #C8C1D6 0%, rgba(200, 193, 214, 0.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.top-content .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top-content .title  h1, h2 {
    text-align: center;
    margin: 1rem 0;
}

.top-content .image-content {
    padding: 1rem;
    max-width: 25rem;
}

.top-content .image-content img {
    max-width: 100%;
    height: auto;
}

.quem-sou {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quem-sou .title h3{
    margin-bottom: 0.5rem;
}

.quem-sou .content {
    text-align: center;
}

.quem-sou .content p {
    font-size: 1.2rem;
    line-height: 1.4;
}

.line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 2px;
    background-color: var(--cinza);
    margin: 2rem auto;
    
}

.atuacao {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.atuacao .content-atuacao {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    background-color: var(--violeta);
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 3rem;
}

.atuacao .content-atuacao .icone {
    display: flex;
    padding: 1rem;
}

.atuacao .content-atuacao .icone img {
    max-width: 100%;
}

.atuacao .content-atuacao .content ul {
    margin: 0;
    line-height: 1.5;
    padding-left: 1.5rem;
    font-size: 1.2rem;
}

.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--violeta);
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.contato .title h3 {
    margin-top: 0;
}

.contato .content-contato {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
}

.contato .content-contato .area-botoes {
    padding: 0 1rem;
}

.contato .content-contato .area-botoes .botao-whatsapp, 
.contato .content-contato .area-botoes .botao-email, 
.contato .content-contato .area-botoes .botao-instagram {
    padding: .25rem;
}

.contato .content-contato .area-botoes .botao-whatsapp a, 
.contato .content-contato .area-botoes .botao-email a, 
.contato .content-contato .area-botoes .botao-instagram a {
    background-color: var(--cinza-escuro);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
    transition: background-color ease-in-out .2s;
}

.contato .content-contato .area-botoes .botao-whatsapp a img, 
.contato .content-contato .area-botoes .botao-email a img, 
.contato .content-contato .area-botoes .botao-instagram a img {
    padding-right: .5rem;
    transition: background-color ease-in-out .2s;
}

.contato .content-contato .area-botoes .botao-whatsapp a:hover {
    background-color: #25D366;
}

.contato .content-contato .area-botoes .botao-email a:hover {
    background-color: #595EEA;
}

.contato .content-contato .area-botoes .botao-instagram a:hover {
    background-color: #D62976;
}

.contato .content-contato .area-info {
    padding: 0 1rem;
}

.contato .content-contato .area-info ul {
    padding-left: 1rem;
    line-height: 1.8;
    font-size: 1.2rem;
}

footer {
    background-color: var(--violeta);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
