/* Section Styles - Loja Guedez Refactor */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    /* Prevent spillover */
}

/* Alternating Backgrounds */
.section-alt {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-navy);
    position: relative;
    padding-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.section-dark .section-title {
    color: var(--color-white);
}

/* Decorative Line 'Sharp' Style */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-orange);
    margin: var(--spacing-sm) auto 0;
    border-radius: 0;
    /* Sharp edges as requested */
}

/* Section Subtitle/Description */
.section-description {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto var(--spacing-xl);
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}


/* Feature/Authority Cards */
.feature-card {
    background-color: var(--color-bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background-color: var(--color-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
}

.feature-card .card-title {
    color: var(--color-navy);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}