@font-face {
    font-family: "Axiforma Title";
    src: url(../fonts/axiforma/Kastelov\ -\ Axiforma\ Bold.otf);
}

@font-face {
    font-family: "Axiforma Text";
    src: url(../fonts/axiforma/Kastelov\ -\ Axiforma\ Light.otf);
}

:root{
    --cor-roxo: #9835C2;
    --cor-amarelo: #ffAE46;
    --cor-branco: #FFFFFF;
    --cor-texto: #72767C;
}

html{
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Axiforma Title";
    color: var(--cor-texto);
}

h1{
    font-size: 3.4rem;
}
h2{
    font-size: 3rem;
}
h3{
    font-size: 2.6rem;
}
h4{
    font-size: 2.2rem;
}
h5{
    font-size: 1.8rem;
}
h6{
    font-size: 1.4rem;
}

p, li, span, input, textarea{
    color: var(--cor-texto);
    font-size: 1.6rem;
    font-family: "Axiforma Text";
}

a{
    text-decoration: none;
    display: block;
    width: fit-content;
    font-size: 1.6rem;
    font-family: "Axiforma Text";

    transition: all 0.3s ease-in-out;
}

img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    vertical-align: top;
}

.container{
    width: 85%;
    max-width: 1360px;
    margin: 0 auto;
}

.flex{
    display: flex;
}
.flex-jcc-aic{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-jcc-aifs{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.flex-jcsb-aic{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-jcsa-aic{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flex-jcsb-aifs{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex-jcsb-aife{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.flex-jcsa-aifs{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.flex-jcsa-aife{
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

