@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&family=Bellota:wght@400;700&family=Roboto:ital,wght@0,400;1,700&display=swap');

:root {
    /*Fontes*/
    --font-primary: 'Bellota', sans-serif;
    --font-secondary: 'Barlow', sans-serif;

    /*Palata de cores*/
    --cor-primary-branca: #FFFFFF;
    --cor-secundary-preto: #000000;
    --cor-amarelo-claro: #FEF9D9;
    --cor-amarelo-escuro: #FFE270;
    --cor-vinho-claro: #95305A;
    --cor-vinho-escuro: #310000;
    --cor-border: #DEE2E6;


    --gradiente: linear-gradient(96.97deg, #95305A 13.17%, #E04887 39.8%, #641630 69.35%);
}

body {
    background-color: var(--cor-amarelo-claro);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 56px;
}

h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 32px;
}

h3 {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 22px;
}

h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
}

h5 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
}

p{
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
}

a, button {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-size: 500;
}

a:hover {
    transform: scale(1.05);
}

button {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
}

button:hover {
    transform: scale(1.05);
}


::-webkit-scrollbar {
    width: 4px;
  }

::-webkit-scrollbar-thumb {
    background: #95305A;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 5px;
}

@media screen and (max-width: 990px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 22px;
    }

    h3, h4 {
        font-size: 14px;
    }

    p, a {
        font-size: 10px;
    }

    button {
        font-size: 10px;
    }
}