/* === CRM ATENDIMENTO === */
.atendimento-crm-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.crm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crm-header {
    text-align: center;
    margin-bottom: 60px;
}

.crm-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.crm-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.crm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.crm-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crm-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.crm-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.crm-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.crm-feature p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
    .atendimento-crm-section {
        padding: 60px 0;
    }
    
    .crm-title {
        font-size: 2rem;
    }
    
    .crm-subtitle {
        font-size: 1rem;
    }
    
    .crm-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .crm-container {
        padding: 0 15px;
    }
    
    .crm-title {
        font-size: 1.8rem;
    }
}
