/* =============================================
   Tipografia
   ============================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-main);
}

h1 {
    font-size: var(--font-2xl);
}

h2 {
    font-size: var(--font-xl);
}

h3 {
    font-size: var(--font-lg);
}

h4 {
    font-size: var(--font-md);
}

h5 {
    font-size: var(--font-base);
}

p {
    color: var(--text-muted);
    line-height: 1.6;
}

.text-sm {
    font-size: var(--font-sm);
}

.text-muted {
    color: var(--text-muted);
}

.text-light {
    color: var(--text-light);
}

.text-primary {
    color: var(--primary);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 600;
}