* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition:
        color .5s ease,
        background-color .5s ease,
        border-color .5s ease,
        outline-color .5s ease,
        fill .5s ease,
        stroke .5s ease;
    margin: 0;
    padding: 0;
    /* para interpolar o auto */
    interpolate-size: allow-keywords;
}

@font-face {
    font-family: 'MyBrand';
    src: url('../font/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: var(--color-light2);
    margin: 0;
    padding: 0;
    color: var(--color-dark3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--color-light2);
    background-image:
        linear-gradient(90deg, var(--color-light3) 1%, transparent 2%),
        linear-gradient(var(--color-light3) 1%, transparent 2%);
    background-size: 36px 36px;
}

main {
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

article {
    width: 100%;
    max-width: 1280px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spacer-col-10 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spacer-col-20 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spacer-col-30 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spacer-row-10 {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.spacer-row-20 {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.spacer-row-30 {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}




:root {
    /*--marca1: #0645FA;
    --marca2: #3267FF;
    --marca3: #142D76;
    --marca-content: #fafbfd;
    --marca-gradient-light: linear-gradient(180deg, #F9FBFC 0%, #DCEFF9 100%);
    --marca-gradient-dark: linear-gradient(180deg, #151616 0%, #142f3d 100%);
    */
    --marca1: #bd7744;
    --marca2: #f5bf99;
    --marca3: #795034;
    --marca-content: #f3e9e9;
    --marca-gradient-light: linear-gradient(180deg, #fdf9f7 0%, #f1ded8 100%);
    --marca-gradient-dark: linear-gradient(180deg, #25221f 0%, #13100e 100%);
    --color-light1: #ffffff;
    --color-light2: #e4e4e4;
    --color-light3: #D4D4D4;
    --color-light4: #a8a8a8;
    --color-dark1: #575757;
    --color-dark2: #333333;
    --color-dark3: #222222;
    --color-dark4: #0B0B0B;
    --colorsystem1: #1c7aec;
    --colorsystem2: #df2727;
    --colorsystem3: #2cb359;
    --headerbg: #e4e4e496;
    --border-radius-round: 10000px;
    --border-radius-xbig: 30px;
    --border-radius-big: 14px;
    --border-radius-medium: 8px;
    --border-radius-small: 4px;
    --border-radius-xsmall: 2px;
    --letter-spacing: 0.08em;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
ul {
    all: unset;
    padding: 0;
    margin: 0;
    border: 0;
    color: unset;
    text-decoration: unset;
}

p {
    font-size: 0.8em;
}

h1 {
    font-size: 2.4em;
    font-weight: bold;
    line-height: 110%;
    font-family: MyBrand, Arial, Helvetica, sans-serif;
    letter-spacing: var(--letter-spacing);
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
    line-height: 110%;
    font-family: MyBrand, Arial, Helvetica, sans-serif;
    letter-spacing: var(--letter-spacing);
}

h3 {
    font-size: 1.4em;
    font-weight: bold;
    line-height: 110%;
    font-family: MyBrand, Arial, Helvetica, sans-serif;
    letter-spacing: var(--letter-spacing);
}

h4 {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 110%;
    font-family: MyBrand, Arial, Helvetica, sans-serif;
    letter-spacing: var(--letter-spacing);
}

p {
    font-size: 1em;
    line-height: 150%;
}

@media (max-width: 520px) {
    h1 {
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.2em;
    }

    h4 {
        font-size: 1.1em;
    }
}


.align-bottom {
    margin-top: auto;
}


a {
    text-decoration: underline;
    color: var(--colorsystem1);
}

a:hover {
    text-decoration: none;
    color: var(--colorsystem1);
}


.text-bold {
    font-weight: bold;
}

.text-mark {
    line-height: 90%;
    background-color: #ffb006c0;
    color: #0B0B0B;
}


.button {
    width: auto;
    min-width: 140px;
    max-width: 200px;
    text-align: center;
    background-color: var(--marca1);
    color: #ffffff;
    text-decoration: none;
    transition: 0.5s ease-in;
    padding: 16px 20px;
    border-radius: var(--border-radius-round);
    font-weight: normal;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.button-whats::before {
    content: url(../img/cta/whatsapp.svg);
    width: 20px;
    aspect-ratio: 1 / 1;
}

.button-linkedin::before {
    content: url(../img/cta/linkedin.svg);
    width: 20px;
    aspect-ratio: 1 / 1;
}

.button-mail::before {
    content: url(../img/cta/e-mail.svg);
    width: 20px;
    aspect-ratio: 1 / 1;
}

.button:hover {
    background-color: var(--marca2);
    color: #ffffff;
}

.button-hollow {
    border: solid var(--marca1) 2px;
    background-color: var(--color-light1);
    color: var(--marca1);
}

.button-hollow:hover {
    border: solid var(--marca2) 2px;
    background-color: var(--color-light1) !important;
    color: var(--marca2) !important;
    text-decoration: underline;
}

.button-big {
    min-width: 220px;
}

.button-medium {
    min-width: 190px;
}

.button-small {
    min-width: 160px;
}

/* Este bloco define o default de uma div, é usado em vários componentes */
.main-box-style {
    background: var(--marca-gradient-light);
    /*box-shadow: 0px 0px 80px rgba(72, 96, 170, 0.4);*/
    box-shadow: 0px 0px 60px rgba(170, 128, 72, 0.212);
    border-radius: var(--border-radius-medium);
}




.pic-icon {
    width: 100%;
    max-width: 32px;
}

.pic-x-small {
    width: 100%;
    max-width: 80px;
}


.pic-small {
    width: 100%;
    max-width: 120px;
}

.pic-medium {
    width: 100%;
    max-width: 250px;
}

.pic-big {
    width: 100%;
    max-width: 400px;
}

.pic-x-big {
    width: 100%;
    max-width: 600px;
}

.pic-full {
    width: 100%;
}

.pic-border-radius-x-big {
    border-radius: var(--border-radius-xbig);
}

.pic-border-radius-big {
    border-radius: var(--border-radius-big);
}

.pic-border-radius-medium {
    border-radius: var(--border-radius-medium);
}

.pic-border-radius-small {
    border-radius: var(--border-radius-small);
}

.pic-border-radius-x-small {
    border-radius: var(--border-radius-xsmall);
}