/* Layout Geral */
.section-spacing {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 72px;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--glow-secondary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.label-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--border-glow);
    position: relative;
}

.label-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--glow-secondary);
    box-shadow: 0 0 8px var(--glow-secondary);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .muted {
    color: var(--text-secondary);
    font-weight: 400;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}