
/* ============================================
   TYPOGRAPHY
   Estilos tipográficos do Design System
   ============================================ */

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
}

/* ========== HEADINGS ========== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-lg);
    color: inherit;
}

h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-7xl);
    line-height: var(--line-height-tight);
    letter-spacing: 0.5px;
}

h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-6xl);
    line-height: 1.4;
}

h3 {
    font-family: var(--font-body);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
}

h4 {
    font-family: var(--font-body);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-normal);
}

h5 {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-normal);
}

h6 {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== PARAGRAPHS ========== */

p {
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
}

/* ========== TEXT UTILITIES ========== */

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

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

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

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

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

.font-bold {
    font-weight: var(--font-weight-bold);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

/* ========== RESPONSIVE TYPOGRAPHY ========== */

@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 34px;
    }
    
    h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    .lead {
        font-size: 16px;
    }
}
