/* ========================================
   SEÇÕES GERAIS
   ======================================== */

.section {
    padding: var(--spacing-xxl) var(--container-padding);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 164, 75, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Backgrounds Alternativos */
.bg-light {
    background: var(--bg-light);
}

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

.bg-dark .section-title {
    color: white;
}

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

.bg-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
}

.bg-gradient .section-title {
    color: white;
}

.bg-gradient .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 60px auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 20px rgba(212, 164, 75, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Documentos */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.doc-category {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.doc-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.doc-category h3 i {
    color: var(--primary-color);
}

.doc-category ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doc-category li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-medium);
    line-height: 1.6;
}

.doc-category li i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
}

.doc-note {
    background: rgba(212, 164, 75, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: var(--radius-sm);
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.doc-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.doc-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 50px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Parceiros */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: var(--text-medium);
    transition: all var(--transition-normal);
    min-height: 120px;
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
