/* Classes de tipografias */

/* Define uma classe base para estilos de tipografia */
.typography-base {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

@font-face {
    font-family: "Default";
    src: url(../fonts/HelveticaNeueLTStd-BdEx.otf) format('OpenType');
    font-weight: normal;
    font-style: normal;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
span {
    font-family: 'Roboto Regular', Arial, Helvetica, sans-serif;
    letter-spacing: 1.5px;
    padding: 5px 0;
    color: rgb(0, 0, 0);
}

a,
p {
    line-height: 1.5;
}

li {
    font-weight: bold;
    line-height: 23px;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    line-height: normal;
}

a {
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

p {
    font-weight: bold;
    font-size: 14px;
}

/* Estilos de títulos */
h1 {
    font-size: 28px;
    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;
}

.display-5 {
    font-size: 20px;
}

.font-display {
    font-family: "Default";
    font-size: min(20px, 5vw);
    color: #20ff06;
    text-transform: uppercase;
}

.font-display-02 {
    font-family: "Default";
    font-size: min(50px, 8vw);
    color: #fff;
    text-transform: uppercase;
}

.font-display-03 {
    font-family: "Default";
    font-size: min(60px, 10vw);
    color: #00d2ff;
    text-transform: uppercase;
}

.font-display-04 {
    font-family: "Default";
    font-size: min(30px, 5vw);
    color: #fff;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.disclaimer {
    font-family: 'Roboto Regular', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 20px;
    font-stretch: semi-expanded;
}