/* Tipografia */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-6xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}

/* Parágrafos */
p {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

/* Links */
a {
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

/* Listas */
ul, ol {
    margin-bottom: var(--spacing-md);
}

/* Citações */
blockquote {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-text-secondary);
    padding-left: var(--spacing-lg);
    border-left: 4px solid var(--color-primary);
    margin: var(--spacing-lg) 0;
}

/* Texto destacado */
.highlight {
    color: var(--color-primary);
}

/* Classes utilitárias de texto */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-text-secondary);
}

.text-light {
    color: var(--color-text-light);
}

.text-white {
    color: var(--color-white);
}
