.parceiros-hero {
    background: linear-gradient(135deg, #791F53 0%, #006239 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
}

.parceiros-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.parceiros-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

.parceiros-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.success-stories {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.success-stories h2 {
    font-size: 2rem;
    color: #791F53;
    margin-bottom: 2rem;
    text-align: center;
}

.success-story {
    background: #f8f9fa;
    border-left: 4px solid #791F53;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.success-story:last-child {
    margin-bottom: 0;
}

.success-story h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.success-story p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.success-story .story-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #791F53;
    font-weight: 600;
    font-size: 0.95rem;
}

.success-story .story-meta i {
    font-size: 1.1rem;
}

.benefits-section {
    background: linear-gradient(135deg, rgba(121, 31, 83, 0.05) 0%, rgba(0, 98, 57, 0.05) 100%);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
}

.benefits-section h2 {
    font-size: 2rem;
    color: #791F53;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #791F53;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .parceiros-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .parceiros-hero h1 {
        font-size: 2rem;
    }
    
    .parceiros-hero p {
        font-size: 1rem;
    }
    
    .parceiros-content {
        padding: 3rem 1.5rem;
    }
    
    .success-stories,
    .benefits-section {
        padding: 2rem 1.5rem;
    }
    
    .success-story {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
