/* ===== SEÇÕES GERAIS ===== */
section {
    padding: 6rem 0;
    position: relative;
}

section::before {
    content: '✦ ✦ ✦';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1rem;
    letter-spacing: 1rem;
    opacity: 0.3;
    white-space: nowrap;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-size: 2.3rem;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-title::before {
    left: calc(50% - 150px);
}

.section-title::after {
    right: calc(50% - 150px);
}

.section-title h2 {
    margin-bottom: 1rem;
    font-size: 2.3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}