/* Classes de tipografias */

/* Define uma classe base para estilos de tipografia */
.typography-base {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

@font-face {
    font-family: "Gunterz";
    src: url(../fonts/Gunterz-Black.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.5px;
    margin: 10px 0;
    padding: 10px 0;
    color: rgb(0, 0, 0);
}

p {
    line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
}

a {
    font-weight: 100;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

p {
    font-weight: 200;
    font-size: 14px;
}

/* Estilos de títulos */
h1 {
    font-size: min(50px, 8vw);
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 8px;
}

h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 6px;
}

h4 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 4px;
}

h5 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 2px;
}

h6 {
    font-size: 14px;
    line-height: 1.7;
    font-weight: bold;
    margin-bottom: 0;
}

.display-1 {
    font-size: 70px;
    padding: 5px;
    line-height: 90px;
}

.display-2 {
    font-size: 65px;
    padding: 5px;
    line-height: 90px;
}

.display-3 {
    font-size: 60px;
    padding: 5px;
    line-height: 85px;
}

.display-4 {
    font-size: 55px;
    padding: 5px;
    line-height: 80px;
}

.font-display {
    font-family: "Gunterz";
    color: #a3c95b;
    mix-blend-mode: multiply;
}

.font-display-2 {
    font-family: "Gunterz";
    color: white;
}

.fc-white {
    color: white;
}

.fc-grey {
    color: #8080806b;
}

.text-center {
    text-align: center;
}